~ This file is a commented hexadecimal representation of a compiled ~ program, the output of Evocation's hex transform. The comments are ~ intended to allow a human reader to audit it. You can convert it to a ~ runnable executable by piping it through the program named 'hex' and ~ chmodding the output 755. The difference between a source and a binary ~ is comments! Enjoy. :) ~ This particular program is 'evoke', the compiler. If you already have ~ a binary copy of 'hex', run this file through it and you'll have a ~ working compiler. Pretty sweet, right? ~ ~ If you're auditing this by hand, first off, thank you for doing that. ~ You may wish to pull up the source code side-by-side with the hex dump; ~ there's a lot of structural stuff in the actual source that aids in ~ readability but isn't easily reproduced in this form, though every ~ effort has been made. ~ ELF file header ~ * denotes mandatory fields according to breadbox 7f 45 4c 46 ~ *magic number 02 ~ 64-bit 01 ~ little-endian 01 ~ ELF header format v1 00 ~ System-V ABI 00 00 00 00 00 00 00 00 ~ (padding) 02 00 ~ *executable 3e 00 ~ *Intel x86-64 01 00 00 00 ~ ELF format version 78 00 00 08 00 00 00 00 ~ *entry point 40 00 00 00 00 00 00 00 ~ *program header offset 00 00 00 00 00 00 00 00 ~ section header offset 00 00 00 00 ~ processor flags 40 00 ~ ELF header size 38 00 ~ *program header entry size 01 00 ~ *number of program header entries 00 00 ~ section header entry size 00 00 ~ number of section header entries 00 00 ~ section name string table index ~ ELF program header ~ label elf-program-header at offset 0x0000000000000040 is here. 01 00 00 00 ~ *"loadable" segment type 05 00 00 00 ~ *read+execute permission 00 00 00 00 00 00 00 00 ~ *offset in file 00 00 00 08 00 00 00 00 ~ *virtual address 00 00 00 00 00 00 00 00 ~ physical address (ignored) 90 07 05 00 00 00 00 00 ~ *size in file 90 07 05 00 00 00 00 00 ~ *size in memory 00 00 00 00 00 00 00 00 ~ segment alignment ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~ This is the start of the cold-start routine, which is the first code ~ of any kind the executable runs. It has the responsibility of creating ~ the Forth execution environment, then invoking the warm-start routine, ~ which is defined below. ~ label cold-start at offset 0x0000000000000078 is here. fc ~ cld 48 b8 09 00 00 00 00 00 00 00 ~ 0x9 :rax mov-reg64-imm64 ~ mmap() 48 bf 00 00 00 00 10 00 00 00 ~ 0x1000000000 :rdi mov-reg64-imm64 ~ address (very arbitrary) 48 be 00 00 00 01 00 00 00 00 ~ 0x1000000 :rsi mov-reg64-imm64 ~ size (one meg) 48 ba 07 00 00 00 00 00 00 00 ~ 0x7 :rdx mov-reg64-imm64 ~ protection (read+write+exec) 49 ba 22 00 00 00 00 00 00 00 ~ 0x22 :r10 mov-extrareg64-imm64 ~ flags (private+anonymous) 49 b8 00 00 00 00 00 00 00 00 ~ 0x0 :r8 mov-extrareg64-imm64 ~ file descriptor (ignored) 49 b9 00 00 00 00 00 00 00 00 ~ 0x0 :r9 mov-extrareg64-imm64 ~ offset (ignored) 0f 05 ~ syscall 48 89 c7 ~ :rax :rdi mov-reg64-reg64 48 8d af 00 00 01 00 ~ :rdi 0x00010000 :rbp lea-reg64-disp32-reg64 48 89 bf 00 00 01 00 ~ :rdi 0x00010000 :rdi mov-reg64-disp32-reg64 48 89 a7 08 00 01 00 ~ :rsp 0x00010008 :rdi mov-reg64-disp32-reg64 48 89 af 10 00 01 00 ~ :rbp 0x00010010 :rdi mov-reg64-disp32-reg64 48 b8 00 00 00 00 00 00 00 00 ~ 0x0 :rax mov-reg64-imm64 48 89 87 18 00 01 00 ~ :rax 0x00010018 :rdi mov-reg64-disp32-reg64 48 8d 87 28 00 01 00 ~ :rdi 0x00010028 :rax lea-reg64-disp32-reg64 48 89 87 20 00 01 00 ~ :rax 0x00010020 :rdi mov-reg64-disp32-reg64 57 ~ :rdi push-reg64 48 be 10 01 00 08 00 00 00 00 ~ 0x8000110 :rsi mov-reg64-imm64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~ This is the start of the warm-start routine, which is the first Forth ~ code the executable runs, after the cold-start routine has created the ~ Forth execution environment. ~ ~ It does some initial setup here at the top; then the vast bulk of it ~ is actually the log-load routine, directly included; then finally there ~ is a small amount of finishing work done at the tail end of the ~ warm-start routine. ~ ~ The routine's body is interpreted Forth code, meaning that it is an ~ an array of pointers to the codewords of Forth words, occasionally ~ interspersed with literal values. ~ ~ The codeword pointers were located by using the label system, which ~ means the labels they reference must have been defined somewhere else, ~ normally by the label transform. The label-transformed code normally ~ occurs after the warm-start routine in the executable, which means these ~ are forward references to words defined far below. 00 00 ~ (alignment padding) ~ label warm-start at offset 0x0000000000000110 is here. 18 f1 04 08 00 00 00 00 ~ log-load-log (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log" (string literal with null) 6c 6f 67 00 00 00 00 00 ~ (alignment padding) 60 f8 04 08 00 00 00 00 ~ log-load-variable (codeword pointer) 58 f1 04 08 00 00 00 00 ~ log-load-s0 (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "s0" (string literal with null) 73 30 00 00 00 00 00 00 ~ (alignment padding) 60 f8 04 08 00 00 00 00 ~ log-load-variable (codeword pointer) b0 f1 04 08 00 00 00 00 ~ log-load-r0 (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "r0" (string literal with null) 72 30 00 00 00 00 00 00 ~ (alignment padding) 60 f8 04 08 00 00 00 00 ~ log-load-variable (codeword pointer) 28 f2 04 08 00 00 00 00 ~ log-load-latest (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "latest" (string literal with null) 6c 61 74 65 73 74 00 00 ~ (alignment padding) 60 f8 04 08 00 00 00 00 ~ log-load-variable (codeword pointer) 98 f2 04 08 00 00 00 00 ~ log-load-here (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 60 f8 04 08 00 00 00 00 ~ log-load-variable (codeword pointer) ~ This is the start of the log-load routine, which is a long block of ~ code that has been processed by the log-load transform. It is part of ~ the warm-start routine, which does other things before and after it. ~ For clarity's sake, to avoid weird nesting, the section header above ~ calls this the warm-start section of the executable, but in a sense it ~ might be more accurate to call it the log-load section. ~ ~ The routine is interpreted Forth code, just as the warm-start routine ~ as a whole is; see above. ~ ~ The job of the log-load routine is to create runnable code in the ~ dynamic log, at runtime. The normal way to create a Forth executable ~ is to use label-transformed code to implement a minimal set of ~ functionality needed for the log-load routine to run, then invoke the ~ log-load routine to copy a more complete set of functionality into ~ memory. ~ ~ The log-load routine is super important, but also extremely verbose, ~ which necessarily makes it hard to read. If you're skimming this file ~ for the first time to get a sense of what it contains, you might want ~ to search for the words "label transform" to get to the stuff that makes ~ better introductory reading. ~ (alignment padding) ~ This is the actual docol routine, the interpreter which is pointed to by ~ the codeword of every interpreted word. It does not itself have an entry ~ in the dictionary; the word "docol" will return a pointer to this routine. ~ The word's entry follows immediately after the routine. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) e0 ef 04 08 00 00 00 00 ~ pack-pushcontrol (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 38 e0 04 08 00 00 00 00 ~ add-reg64-imm8 (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 58 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) 80 c2 04 08 00 00 00 00 ~ mov-reg64-reg64 (codeword pointer) 48 ef 04 08 00 00 00 00 ~ pack-next (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 30 74 04 08 00 00 00 00 ~ packalign (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) ~ This is the dictionary entry for docol. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) ~ create 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 78 f6 04 08 00 00 00 00 ~ log-load-self-codeword ~ (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 90 c1 04 08 00 00 00 00 ~ mov-reg64-imm64 (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 48 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 48 ef 04 08 00 00 00 00 ~ pack-next (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 30 74 04 08 00 00 00 00 ~ packalign (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) ~ exit is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 58 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) 68 f0 04 08 00 00 00 00 ~ pack-popcontrol (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 90 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ swap is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 48 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) 48 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 90 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ drop is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 90 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ 2drop is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2drop" (string literal with null) 32 64 72 6f 70 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 90 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ roll is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 90 8b 04 08 00 00 00 00 ~ :rcx (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 90 8b 04 08 00 00 00 00 ~ :rcx (codeword pointer) c0 e4 04 08 00 00 00 00 ~ dec-reg64 (codeword pointer) 08 8c 04 08 00 00 00 00 ~ :rsp (codeword pointer) 90 8b 04 08 00 00 00 00 ~ :rcx (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) f8 c5 04 08 00 00 00 00 ~ mov-reg64-indexed-reg64 ~ (codeword pointer) 58 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) 48 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 08 8c 04 08 00 00 00 00 ~ :rsp (codeword pointer) 90 8b 04 08 00 00 00 00 ~ :rcx (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 58 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) 50 bf 04 08 00 00 00 00 ~ lea-reg64-indexed-reg64 ~ (codeword pointer) 08 8c 04 08 00 00 00 00 ~ :rsp (codeword pointer) 90 8b 04 08 00 00 00 00 ~ :rcx (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 80 8c 04 08 00 00 00 00 ~ :rdi (codeword pointer) 10 c0 04 08 00 00 00 00 ~ lea-reg64-disp8-indexed-reg64 ~ (codeword pointer) 78 bb 04 08 00 00 00 00 ~ std (codeword pointer) e8 d0 04 08 00 00 00 00 ~ rep-movs64 (codeword pointer) 40 bb 04 08 00 00 00 00 ~ cld (codeword pointer) 58 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) 08 8c 04 08 00 00 00 00 ~ :rsp (codeword pointer) 08 c3 04 08 00 00 00 00 ~ mov-indirect-reg64-reg64 ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 90 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ unroll is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 90 8b 04 08 00 00 00 00 ~ :rcx (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 90 8b 04 08 00 00 00 00 ~ :rcx (codeword pointer) c0 e4 04 08 00 00 00 00 ~ dec-reg64 (codeword pointer) 90 8b 04 08 00 00 00 00 ~ :rcx (codeword pointer) b8 8b 04 08 00 00 00 00 ~ :rdx (codeword pointer) 80 c2 04 08 00 00 00 00 ~ mov-reg64-reg64 (codeword pointer) 08 8c 04 08 00 00 00 00 ~ :rsp (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) 30 c4 04 08 00 00 00 00 ~ mov-reg64-indirect-reg64 ~ (codeword pointer) 58 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) 48 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 08 8c 04 08 00 00 00 00 ~ :rsp (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 10 00 00 00 00 00 00 00 ~ 0x10 (integer literal) 58 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) 10 be 04 08 00 00 00 00 ~ lea-reg64-disp8-reg64 ~ (codeword pointer) 08 8c 04 08 00 00 00 00 ~ :rsp (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 80 8c 04 08 00 00 00 00 ~ :rdi (codeword pointer) 10 be 04 08 00 00 00 00 ~ lea-reg64-disp8-reg64 ~ (codeword pointer) e8 d0 04 08 00 00 00 00 ~ rep-movs64 (codeword pointer) 58 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) 08 8c 04 08 00 00 00 00 ~ :rsp (codeword pointer) b8 8b 04 08 00 00 00 00 ~ :rdx (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) b8 c6 04 08 00 00 00 00 ~ mov-indexed-reg64-reg64 ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 90 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ 3roll is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 90 8b 04 08 00 00 00 00 ~ :rcx (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) 48 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 48 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 90 8b 04 08 00 00 00 00 ~ :rcx (codeword pointer) 48 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 90 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ 3unroll is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 90 8b 04 08 00 00 00 00 ~ :rcx (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 48 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 90 8b 04 08 00 00 00 00 ~ :rcx (codeword pointer) 48 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) 48 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 90 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ dup is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 48 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 48 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 90 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ 2dup is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) 48 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 48 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) 48 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 48 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 90 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ + is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) b0 de 04 08 00 00 00 00 ~ add-reg64-reg64 (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 48 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 90 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ - is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) c8 e0 04 08 00 00 00 00 ~ sub-reg64-reg64 (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 48 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 90 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ * is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) e0 e2 04 08 00 00 00 00 ~ mul-reg64 (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 48 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 90 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ /% is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "/%" (string literal with null) 2f 25 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) b8 8b 04 08 00 00 00 00 ~ :rdx (codeword pointer) b8 8b 04 08 00 00 00 00 ~ :rdx (codeword pointer) 48 e7 04 08 00 00 00 00 ~ xor-reg64-reg64 (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) 58 e3 04 08 00 00 00 00 ~ divmod-reg64 (codeword pointer) b8 8b 04 08 00 00 00 00 ~ :rdx (codeword pointer) 48 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 48 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 90 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ 1+ is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "1+" (string literal with null) 31 2b 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 48 e4 04 08 00 00 00 00 ~ inc-reg64 (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 48 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 90 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ 1- is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "1-" (string literal with null) 31 2d 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) c0 e4 04 08 00 00 00 00 ~ dec-reg64 (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 48 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 90 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ = is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 58 ea 04 08 00 00 00 00 ~ cmp-reg64-reg64 (codeword pointer) 80 92 04 08 00 00 00 00 ~ :cc-equal (codeword pointer) 68 90 04 08 00 00 00 00 ~ :al (codeword pointer) d8 eb 04 08 00 00 00 00 ~ set-reg8-cc (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) b8 e5 04 08 00 00 00 00 ~ and-reg64-imm8 (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 48 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 90 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ != is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 58 ea 04 08 00 00 00 00 ~ cmp-reg64-reg64 (codeword pointer) b0 92 04 08 00 00 00 00 ~ :cc-not-equal (codeword pointer) 68 90 04 08 00 00 00 00 ~ :al (codeword pointer) d8 eb 04 08 00 00 00 00 ~ set-reg8-cc (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) b8 e5 04 08 00 00 00 00 ~ and-reg64-imm8 (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 48 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 90 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ > is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">" (string literal with null) 3e 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 58 ea 04 08 00 00 00 00 ~ cmp-reg64-reg64 (codeword pointer) a8 94 04 08 00 00 00 00 ~ :cc-greater (codeword pointer) 68 90 04 08 00 00 00 00 ~ :al (codeword pointer) d8 eb 04 08 00 00 00 00 ~ set-reg8-cc (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) b8 e5 04 08 00 00 00 00 ~ and-reg64-imm8 (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 48 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 90 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ < is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "<" (string literal with null) 3c 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 58 ea 04 08 00 00 00 00 ~ cmp-reg64-reg64 (codeword pointer) 08 94 04 08 00 00 00 00 ~ :cc-less (codeword pointer) 68 90 04 08 00 00 00 00 ~ :al (codeword pointer) d8 eb 04 08 00 00 00 00 ~ set-reg8-cc (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) b8 e5 04 08 00 00 00 00 ~ and-reg64-imm8 (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 48 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 90 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ >= is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">=" (string literal with null) 3e 3d 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 58 ea 04 08 00 00 00 00 ~ cmp-reg64-reg64 (codeword pointer) 40 94 04 08 00 00 00 00 ~ :cc-greater-equal (codeword pointer) 68 90 04 08 00 00 00 00 ~ :al (codeword pointer) d8 eb 04 08 00 00 00 00 ~ set-reg8-cc (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) b8 e5 04 08 00 00 00 00 ~ and-reg64-imm8 (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 48 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 90 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ <= is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "<=" (string literal with null) 3c 3d 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 58 ea 04 08 00 00 00 00 ~ cmp-reg64-reg64 (codeword pointer) 78 94 04 08 00 00 00 00 ~ :cc-less-equal (codeword pointer) 68 90 04 08 00 00 00 00 ~ :al (codeword pointer) d8 eb 04 08 00 00 00 00 ~ set-reg8-cc (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) b8 e5 04 08 00 00 00 00 ~ and-reg64-imm8 (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 48 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 90 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ >unsigned is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">unsigned" (string literal with null) 3e 75 6e 73 69 67 6e 65 64 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 58 ea 04 08 00 00 00 00 ~ cmp-reg64-reg64 (codeword pointer) 18 93 04 08 00 00 00 00 ~ :cc-above (codeword pointer) 68 90 04 08 00 00 00 00 ~ :al (codeword pointer) d8 eb 04 08 00 00 00 00 ~ set-reg8-cc (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) b8 e5 04 08 00 00 00 00 ~ and-reg64-imm8 (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 48 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 90 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ =unsigned is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">=unsigned" (string literal with null) 3e 3d 75 6e 73 69 67 6e 65 64 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 58 ea 04 08 00 00 00 00 ~ cmp-reg64-reg64 (codeword pointer) 50 92 04 08 00 00 00 00 ~ :cc-above-equal (codeword pointer) 68 90 04 08 00 00 00 00 ~ :al (codeword pointer) d8 eb 04 08 00 00 00 00 ~ set-reg8-cc (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) b8 e5 04 08 00 00 00 00 ~ and-reg64-imm8 (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 48 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 90 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ <=unsigned is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "<=unsigned" (string literal with null) 3c 3d 75 6e 73 69 67 6e 65 64 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 58 ea 04 08 00 00 00 00 ~ cmp-reg64-reg64 (codeword pointer) e8 92 04 08 00 00 00 00 ~ :cc-below-equal (codeword pointer) 68 90 04 08 00 00 00 00 ~ :al (codeword pointer) d8 eb 04 08 00 00 00 00 ~ set-reg8-cc (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) b8 e5 04 08 00 00 00 00 ~ and-reg64-imm8 (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 48 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 90 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ & is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 40 e5 04 08 00 00 00 00 ~ and-reg64-reg64 (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 48 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 90 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ | is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "|" (string literal with null) 7c 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 48 e6 04 08 00 00 00 00 ~ or-reg64-reg64 (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 48 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 90 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ xor is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "xor" (string literal with null) 78 6f 72 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 48 e7 04 08 00 00 00 00 ~ xor-reg64-reg64 (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 48 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 90 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ invert is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "invert" (string literal with null) 69 6e 76 65 72 74 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) b8 e7 04 08 00 00 00 00 ~ not-reg64 (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 48 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 90 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ lit is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 18 d2 04 08 00 00 00 00 ~ lods64 (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 48 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 90 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ litstring is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 58 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) 48 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 58 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) 80 8c 04 08 00 00 00 00 ~ :rdi (codeword pointer) 80 c2 04 08 00 00 00 00 ~ mov-reg64-reg64 (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 48 e7 04 08 00 00 00 00 ~ xor-reg64-reg64 (codeword pointer) 90 8b 04 08 00 00 00 00 ~ :rcx (codeword pointer) 90 8b 04 08 00 00 00 00 ~ :rcx (codeword pointer) 48 e7 04 08 00 00 00 00 ~ xor-reg64-reg64 (codeword pointer) 90 8b 04 08 00 00 00 00 ~ :rcx (codeword pointer) b8 e7 04 08 00 00 00 00 ~ not-reg64 (codeword pointer) 28 dd 04 08 00 00 00 00 ~ repnz-scas8 (codeword pointer) 80 8c 04 08 00 00 00 00 ~ :rdi (codeword pointer) 58 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) 80 c2 04 08 00 00 00 00 ~ mov-reg64-reg64 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 58 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) 38 e0 04 08 00 00 00 00 ~ add-reg64-imm8 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 00 6a 04 08 00 00 00 00 ~ invert (codeword pointer) 58 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) b8 e5 04 08 00 00 00 00 ~ and-reg64-imm8 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 90 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ ! is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) 08 c3 04 08 00 00 00 00 ~ mov-indirect-reg64-reg64 ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 90 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ @ is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 30 c4 04 08 00 00 00 00 ~ mov-reg64-indirect-reg64 ~ (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 48 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 90 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ +! is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+!" (string literal with null) 2b 21 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) 38 df 04 08 00 00 00 00 ~ add-indirect-reg64-reg64 ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 90 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ -! is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-!" (string literal with null) 2d 21 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) 48 e1 04 08 00 00 00 00 ~ sub-indirect-reg64-reg64 ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 90 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ 8! is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "8!" (string literal with null) 38 21 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 68 90 04 08 00 00 00 00 ~ :al (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) 30 cc 04 08 00 00 00 00 ~ mov-indirect-reg64-reg8 ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 90 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ 8@ is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "8@" (string literal with null) 38 40 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 48 e7 04 08 00 00 00 00 ~ xor-reg64-reg64 (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) 68 90 04 08 00 00 00 00 ~ :al (codeword pointer) 48 cd 04 08 00 00 00 00 ~ mov-reg8-indirect-reg64 ~ (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 48 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 90 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ 16! is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "16!" (string literal with null) 31 36 21 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 28 8f 04 08 00 00 00 00 ~ :ax (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) b0 c9 04 08 00 00 00 00 ~ mov-indirect-reg64-reg16 ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 90 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ 16@ is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "16@" (string literal with null) 31 36 40 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 48 e7 04 08 00 00 00 00 ~ xor-reg64-reg64 (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) 28 8f 04 08 00 00 00 00 ~ :ax (codeword pointer) f8 ca 04 08 00 00 00 00 ~ mov-reg16-indirect-reg64 ~ (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 48 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 90 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ 32! is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "32!" (string literal with null) 33 32 21 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) e8 8d 04 08 00 00 00 00 ~ :eax (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) 90 c7 04 08 00 00 00 00 ~ mov-indirect-reg64-reg32 ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 90 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ 32@ is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "32@" (string literal with null) 33 32 40 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 48 e7 04 08 00 00 00 00 ~ xor-reg64-reg64 (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) e8 8d 04 08 00 00 00 00 ~ :eax (codeword pointer) a8 c8 04 08 00 00 00 00 ~ mov-reg32-indirect-reg64 ~ (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 48 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 90 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ control! is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "control!" (string literal with null) 63 6f 6e 74 72 6f 6c 21 00 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 30 8c 04 08 00 00 00 00 ~ :rbp (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 90 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ control@ is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "control@" (string literal with null) 63 6f 6e 74 72 6f 6c 40 00 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 30 8c 04 08 00 00 00 00 ~ :rbp (codeword pointer) 48 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 90 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ value! is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "value!" (string literal with null) 76 61 6c 75 65 21 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 08 8c 04 08 00 00 00 00 ~ :rsp (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 90 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ value@ is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "value@" (string literal with null) 76 61 6c 75 65 40 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 08 8c 04 08 00 00 00 00 ~ :rsp (codeword pointer) 48 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 90 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ memcopy is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "memcopy" (string literal with null) 6d 65 6d 63 6f 70 79 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 58 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) b8 8b 04 08 00 00 00 00 ~ :rdx (codeword pointer) 80 c2 04 08 00 00 00 00 ~ mov-reg64-reg64 (codeword pointer) 90 8b 04 08 00 00 00 00 ~ :rcx (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 80 8c 04 08 00 00 00 00 ~ :rdi (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 58 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) c8 cf 04 08 00 00 00 00 ~ rep-movs8 (codeword pointer) b8 8b 04 08 00 00 00 00 ~ :rdx (codeword pointer) 58 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) 80 c2 04 08 00 00 00 00 ~ mov-reg64-reg64 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 90 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ memmove is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "memmove" (string literal with null) 6d 65 6d 6d 6f 76 65 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 58 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) b8 8b 04 08 00 00 00 00 ~ :rdx (codeword pointer) 80 c2 04 08 00 00 00 00 ~ mov-reg64-reg64 (codeword pointer) 90 8b 04 08 00 00 00 00 ~ :rcx (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 80 8c 04 08 00 00 00 00 ~ :rdi (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 58 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 58 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 80 c2 04 08 00 00 00 00 ~ mov-reg64-reg64 (codeword pointer) 80 8c 04 08 00 00 00 00 ~ :rdi (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 58 ea 04 08 00 00 00 00 ~ cmp-reg64-reg64 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 18 92 04 08 00 00 00 00 ~ :cc-below (codeword pointer) 90 ec 04 08 00 00 00 00 ~ jmp-cc-rel-imm8 (codeword pointer) c8 cf 04 08 00 00 00 00 ~ rep-movs8 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 10 00 00 00 00 00 00 00 ~ 0x10 (integer literal) 00 ee 04 08 00 00 00 00 ~ jmp-rel-imm8 (codeword pointer) 90 8b 04 08 00 00 00 00 ~ :rcx (codeword pointer) 58 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) b0 de 04 08 00 00 00 00 ~ add-reg64-reg64 (codeword pointer) 58 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) c0 e4 04 08 00 00 00 00 ~ dec-reg64 (codeword pointer) 90 8b 04 08 00 00 00 00 ~ :rcx (codeword pointer) 80 8c 04 08 00 00 00 00 ~ :rdi (codeword pointer) b0 de 04 08 00 00 00 00 ~ add-reg64-reg64 (codeword pointer) 80 8c 04 08 00 00 00 00 ~ :rdi (codeword pointer) c0 e4 04 08 00 00 00 00 ~ dec-reg64 (codeword pointer) 78 bb 04 08 00 00 00 00 ~ std (codeword pointer) c8 cf 04 08 00 00 00 00 ~ rep-movs8 (codeword pointer) 40 bb 04 08 00 00 00 00 ~ cld (codeword pointer) b8 8b 04 08 00 00 00 00 ~ :rdx (codeword pointer) 58 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) 80 c2 04 08 00 00 00 00 ~ mov-reg64-reg64 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 90 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ stringlen is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "stringlen" (string literal with null) 73 74 72 69 6e 67 6c 65 6e 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 80 8c 04 08 00 00 00 00 ~ :rdi (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 80 8c 04 08 00 00 00 00 ~ :rdi (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) 80 c2 04 08 00 00 00 00 ~ mov-reg64-reg64 (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 48 e7 04 08 00 00 00 00 ~ xor-reg64-reg64 (codeword pointer) 90 8b 04 08 00 00 00 00 ~ :rcx (codeword pointer) 90 8b 04 08 00 00 00 00 ~ :rcx (codeword pointer) 48 e7 04 08 00 00 00 00 ~ xor-reg64-reg64 (codeword pointer) 90 8b 04 08 00 00 00 00 ~ :rcx (codeword pointer) b8 e7 04 08 00 00 00 00 ~ not-reg64 (codeword pointer) 28 dd 04 08 00 00 00 00 ~ repnz-scas8 (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) 80 8c 04 08 00 00 00 00 ~ :rdi (codeword pointer) c8 e0 04 08 00 00 00 00 ~ sub-reg64-reg64 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 80 8c 04 08 00 00 00 00 ~ :rdi (codeword pointer) c8 e1 04 08 00 00 00 00 ~ sub-reg64-imm8 (codeword pointer) 80 8c 04 08 00 00 00 00 ~ :rdi (codeword pointer) 48 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 90 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ reverse-stringlen is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reverse-stringlen" (string literal with null) 72 65 76 65 72 73 65 2d 73 74 72 69 6e 67 6c 65 6e 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 80 8c 04 08 00 00 00 00 ~ :rdi (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 80 8c 04 08 00 00 00 00 ~ :rdi (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) 80 c2 04 08 00 00 00 00 ~ mov-reg64-reg64 (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 48 e7 04 08 00 00 00 00 ~ xor-reg64-reg64 (codeword pointer) 90 8b 04 08 00 00 00 00 ~ :rcx (codeword pointer) 90 8b 04 08 00 00 00 00 ~ :rcx (codeword pointer) 48 e7 04 08 00 00 00 00 ~ xor-reg64-reg64 (codeword pointer) 90 8b 04 08 00 00 00 00 ~ :rcx (codeword pointer) b8 e7 04 08 00 00 00 00 ~ not-reg64 (codeword pointer) 78 bb 04 08 00 00 00 00 ~ std (codeword pointer) 28 dd 04 08 00 00 00 00 ~ repnz-scas8 (codeword pointer) 40 bb 04 08 00 00 00 00 ~ cld (codeword pointer) 80 8c 04 08 00 00 00 00 ~ :rdi (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) c8 e0 04 08 00 00 00 00 ~ sub-reg64-reg64 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) c8 e1 04 08 00 00 00 00 ~ sub-reg64-imm8 (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) 48 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 90 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ reverse-padding-len is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reverse-padding-len" (string literal with null) 72 65 76 65 72 73 65 2d 70 61 64 64 69 6e 67 2d 6c 65 6e 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 80 8c 04 08 00 00 00 00 ~ :rdi (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 80 8c 04 08 00 00 00 00 ~ :rdi (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) 80 c2 04 08 00 00 00 00 ~ mov-reg64-reg64 (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 48 e7 04 08 00 00 00 00 ~ xor-reg64-reg64 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 09 00 00 00 00 00 00 00 ~ 0x9 (integer literal) 90 8b 04 08 00 00 00 00 ~ :rcx (codeword pointer) 00 c1 04 08 00 00 00 00 ~ mov-reg64-imm32 (codeword pointer) 78 bb 04 08 00 00 00 00 ~ std (codeword pointer) a8 db 04 08 00 00 00 00 ~ repz-scas8 (codeword pointer) 40 bb 04 08 00 00 00 00 ~ cld (codeword pointer) 80 8c 04 08 00 00 00 00 ~ :rdi (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) c8 e0 04 08 00 00 00 00 ~ sub-reg64-reg64 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) c8 e1 04 08 00 00 00 00 ~ sub-reg64-imm8 (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) 48 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 90 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ stringcmp is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "stringcmp" (string literal with null) 73 74 72 69 6e 67 63 6d 70 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 58 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) b8 8b 04 08 00 00 00 00 ~ :rdx (codeword pointer) 80 c2 04 08 00 00 00 00 ~ mov-reg64-reg64 (codeword pointer) 58 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 80 8c 04 08 00 00 00 00 ~ :rdi (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) 48 e7 04 08 00 00 00 00 ~ xor-reg64-reg64 (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 48 e7 04 08 00 00 00 00 ~ xor-reg64-reg64 (codeword pointer) 58 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) 90 8b 04 08 00 00 00 00 ~ :rcx (codeword pointer) 30 c4 04 08 00 00 00 00 ~ mov-reg64-indirect-reg64 ~ (codeword pointer) 90 90 04 08 00 00 00 00 ~ :cl (codeword pointer) 68 90 04 08 00 00 00 00 ~ :al (codeword pointer) 40 ce 04 08 00 00 00 00 ~ mov-reg8-reg8 (codeword pointer) 70 d6 04 08 00 00 00 00 ~ cmps8 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0f 00 00 00 00 00 00 00 ~ 0xf (integer literal) 80 92 04 08 00 00 00 00 ~ :cc-equal (codeword pointer) 90 ec 04 08 00 00 00 00 ~ jmp-cc-rel-imm8 (codeword pointer) 18 93 04 08 00 00 00 00 ~ :cc-above (codeword pointer) e0 90 04 08 00 00 00 00 ~ :bl (codeword pointer) d8 eb 04 08 00 00 00 00 ~ set-reg8-cc (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) 58 e2 04 08 00 00 00 00 ~ sbb-reg64-imm8 (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) 48 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) b8 8b 04 08 00 00 00 00 ~ :rdx (codeword pointer) 58 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) 80 c2 04 08 00 00 00 00 ~ mov-reg64-reg64 (codeword pointer) 48 ef 04 08 00 00 00 00 ~ pack-next (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 60 eb 04 08 00 00 00 00 ~ test-reg64-reg64 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) e4 ff ff ff ff ff ff ff ~ 0xffffffffffffffe4 (integer literal) b0 92 04 08 00 00 00 00 ~ :cc-not-equal (codeword pointer) 90 ec 04 08 00 00 00 00 ~ jmp-cc-rel-imm8 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 bd 04 08 00 00 00 00 ~ push-imm32-extended64 ~ (codeword pointer) b8 8b 04 08 00 00 00 00 ~ :rdx (codeword pointer) 58 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) 80 c2 04 08 00 00 00 00 ~ mov-reg64-reg64 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 90 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ branch is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "branch" (string literal with null) 62 72 61 6e 63 68 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) 58 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) c0 df 04 08 00 00 00 00 ~ add-reg64-indirect-reg64 ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 90 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ 0branch is defined here via the log-load transform. 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "0branch" (string literal with null) 30 62 72 61 6e 63 68 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 60 eb 04 08 00 00 00 00 ~ test-reg64-reg64 (codeword pointer) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 90 66 04 08 00 00 00 00 ~ + (codeword pointer) f0 65 04 08 00 00 00 00 ~ 3roll (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b8 66 04 08 00 00 00 00 ~ - (codeword pointer) 80 92 04 08 00 00 00 00 ~ :cc-equal (codeword pointer) 90 ec 04 08 00 00 00 00 ~ jmp-cc-rel-imm8 (codeword pointer) 18 d2 04 08 00 00 00 00 ~ lods64 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 90 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ execute is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "execute" (string literal with null) 65 78 65 63 75 74 65 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 90 ed 04 08 00 00 00 00 ~ jmp-abs-indirect-reg64 ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 90 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ entry-to-execution-token is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "stringlen" (string literal with null) 73 74 72 69 6e 67 6c 65 6e 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "invert" (string literal with null) 69 6e 76 65 72 74 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ execution-token-to-entry is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "execution-token-to-entry" (string literal with null) 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 2d 74 6f 2d 65 6e 74 72 79 00 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reverse-padding-len" (string literal with null) 72 65 76 65 72 73 65 2d 70 61 64 64 69 6e 67 2d 6c 65 6e 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reverse-stringlen" (string literal with null) 72 65 76 65 72 73 65 2d 73 74 72 69 6e 67 6c 65 6e 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 09 00 00 00 00 00 00 00 ~ 0x9 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ entry-flags@ is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-flags@" (string literal with null) 65 6e 74 72 79 2d 66 6c 61 67 73 40 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ff 00 00 00 00 00 00 00 ~ 0xff (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ entry-flags! is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-flags!" (string literal with null) 65 6e 74 72 79 2d 66 6c 61 67 73 21 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ff 00 00 00 00 00 00 00 ~ 0xff (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 ff ff ff ff ff ff ff ~ 0xffffffffffffff00 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "|" (string literal with null) 7c 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ entry-to-name is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-name" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 6e 61 6d 65 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ pack64 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack64" (string literal with null) 70 61 63 6b 36 34 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ pack32 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack32" (string literal with null) 70 61 63 6b 33 32 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "32!" (string literal with null) 33 32 21 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ pack16 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack16" (string literal with null) 70 61 63 6b 31 36 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "16!" (string literal with null) 31 36 21 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ pack8 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "8!" (string literal with null) 38 21 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ packstring is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "packstring" (string literal with null) 70 61 63 6b 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "stringlen" (string literal with null) 73 74 72 69 6e 67 6c 65 6e 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "memcopy" (string literal with null) 6d 65 6d 63 6f 70 79 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ pack-raw-string is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack-raw-string" (string literal with null) 70 61 63 6b 2d 72 61 77 2d 73 74 72 69 6e 67 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "stringlen" (string literal with null) 73 74 72 69 6e 67 6c 65 6e 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "memcopy" (string literal with null) 6d 65 6d 63 6f 70 79 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ packalign is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "packalign" (string literal with null) 70 61 63 6b 61 6c 69 67 6e 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "/%" (string literal with null) 2f 25 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ unless 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) c0 fd 04 08 00 00 00 00 ~ log-load-unless (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ forever 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) e0 03 05 08 00 00 00 00 ~ log-load-forever (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ unpack64 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unpack64" (string literal with null) 75 6e 70 61 63 6b 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ unpack32 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unpack32" (string literal with null) 75 6e 70 61 63 6b 33 32 00 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "32@" (string literal with null) 33 32 40 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ unpack16 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unpack16" (string literal with null) 75 6e 70 61 63 6b 31 36 00 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "16@" (string literal with null) 31 36 40 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ unpack8 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unpack8" (string literal with null) 75 6e 70 61 63 6b 38 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "8@" (string literal with null) 38 40 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ align-size is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "align-size" (string literal with null) 61 6c 69 67 6e 2d 73 69 7a 65 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "/%" (string literal with null) 2f 25 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ unpackalign is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unpackalign" (string literal with null) 75 6e 70 61 63 6b 61 6c 69 67 6e 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "align-size" (string literal with null) 61 6c 69 67 6e 2d 73 69 7a 65 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ crash is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "crash" (string literal with null) 63 72 61 73 68 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 08 bc 04 08 00 00 00 00 ~ hlt (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 90 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ max is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "max" (string literal with null) 6d 61 78 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">=" (string literal with null) 3e 3d 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ min is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "min" (string literal with null) 6d 69 6e 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "<=" (string literal with null) 3c 3d 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ over is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "over" (string literal with null) 6f 76 65 72 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ pick is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pick" (string literal with null) 70 69 63 6b 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ ndrop is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "ndrop" (string literal with null) 6e 64 72 6f 70 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "1-" (string literal with null) 31 2d 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ while 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 88 04 05 08 00 00 00 00 ~ log-load-while (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ ndup is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "ndup" (string literal with null) 6e 64 75 70 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "1+" (string literal with null) 31 2b 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pick" (string literal with null) 70 69 63 6b 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "1-" (string literal with null) 31 2d 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ while 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 88 04 05 08 00 00 00 00 ~ log-load-while (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2drop" (string literal with null) 32 64 72 6f 70 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ 3drop is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3drop" (string literal with null) 33 64 72 6f 70 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ 3dup is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3dup" (string literal with null) 33 64 75 70 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pick" (string literal with null) 70 69 63 6b 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pick" (string literal with null) 70 69 63 6b 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pick" (string literal with null) 70 69 63 6b 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ && is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&&" (string literal with null) 26 26 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ || is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "||" (string literal with null) 7c 7c 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "|" (string literal with null) 7c 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ not is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "not" (string literal with null) 6e 6f 74 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ negate is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "negate" (string literal with null) 6e 65 67 61 74 65 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ff ff ff ff ff ff ff ff ~ 0xffffffffffffffff (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ align-floor is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "align-floor" (string literal with null) 61 6c 69 67 6e 2d 66 6c 6f 6f 72 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "/%" (string literal with null) 2f 25 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ find-in is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find-in" (string literal with null) 66 69 6e 64 2d 69 6e 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-flags@" (string literal with null) 65 6e 74 72 79 2d 66 6c 61 67 73 40 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 80 00 00 00 00 00 00 00 ~ 0x80 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 80 00 00 00 00 00 00 00 ~ 0x80 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "stringcmp" (string literal with null) 73 74 72 69 6e 67 63 6d 70 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ forever 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) e0 03 05 08 00 00 00 00 ~ log-load-forever (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ syscall-0 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "syscall-0" (string literal with null) 73 79 73 63 61 6c 6c 2d 30 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) b8 bb 04 08 00 00 00 00 ~ syscall (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 48 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 90 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ syscall-1 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "syscall-1" (string literal with null) 73 79 73 63 61 6c 6c 2d 31 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 80 8c 04 08 00 00 00 00 ~ :rdi (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) b8 bb 04 08 00 00 00 00 ~ syscall (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 48 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 90 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ syscall-2 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "syscall-2" (string literal with null) 73 79 73 63 61 6c 6c 2d 32 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 58 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) 80 c2 04 08 00 00 00 00 ~ mov-reg64-reg64 (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 58 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 80 8c 04 08 00 00 00 00 ~ :rdi (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) b8 bb 04 08 00 00 00 00 ~ syscall (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) 58 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) 80 c2 04 08 00 00 00 00 ~ mov-reg64-reg64 (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 48 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 90 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ syscall-3 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "syscall-3" (string literal with null) 73 79 73 63 61 6c 6c 2d 33 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 58 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) 80 c2 04 08 00 00 00 00 ~ mov-reg64-reg64 (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) b8 8b 04 08 00 00 00 00 ~ :rdx (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 58 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 80 8c 04 08 00 00 00 00 ~ :rdi (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) b8 bb 04 08 00 00 00 00 ~ syscall (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) 58 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) 80 c2 04 08 00 00 00 00 ~ mov-reg64-reg64 (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 48 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 90 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ syscall-4 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "syscall-4" (string literal with null) 73 79 73 63 61 6c 6c 2d 34 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 58 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) 80 c2 04 08 00 00 00 00 ~ mov-reg64-reg64 (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) f8 8c 04 08 00 00 00 00 ~ :r10 (codeword pointer) 48 bd 04 08 00 00 00 00 ~ pop-extrareg64 (codeword pointer) b8 8b 04 08 00 00 00 00 ~ :rdx (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 58 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 80 8c 04 08 00 00 00 00 ~ :rdi (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) b8 bb 04 08 00 00 00 00 ~ syscall (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) 58 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) 80 c2 04 08 00 00 00 00 ~ mov-reg64-reg64 (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 48 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 90 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ syscall-5 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "syscall-5" (string literal with null) 73 79 73 63 61 6c 6c 2d 35 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 58 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) 80 c2 04 08 00 00 00 00 ~ mov-reg64-reg64 (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) a8 8c 04 08 00 00 00 00 ~ :r8 (codeword pointer) 48 bd 04 08 00 00 00 00 ~ pop-extrareg64 (codeword pointer) f8 8c 04 08 00 00 00 00 ~ :r10 (codeword pointer) 48 bd 04 08 00 00 00 00 ~ pop-extrareg64 (codeword pointer) b8 8b 04 08 00 00 00 00 ~ :rdx (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 58 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 80 8c 04 08 00 00 00 00 ~ :rdi (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) b8 bb 04 08 00 00 00 00 ~ syscall (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) 58 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) 80 c2 04 08 00 00 00 00 ~ mov-reg64-reg64 (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 48 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 90 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ syscall-6 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "syscall-6" (string literal with null) 73 79 73 63 61 6c 6c 2d 36 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 58 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) 80 c2 04 08 00 00 00 00 ~ mov-reg64-reg64 (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) d0 8c 04 08 00 00 00 00 ~ :r9 (codeword pointer) 48 bd 04 08 00 00 00 00 ~ pop-extrareg64 (codeword pointer) a8 8c 04 08 00 00 00 00 ~ :r8 (codeword pointer) 48 bd 04 08 00 00 00 00 ~ pop-extrareg64 (codeword pointer) f8 8c 04 08 00 00 00 00 ~ :r10 (codeword pointer) 48 bd 04 08 00 00 00 00 ~ pop-extrareg64 (codeword pointer) b8 8b 04 08 00 00 00 00 ~ :rdx (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 58 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 80 8c 04 08 00 00 00 00 ~ :rdi (codeword pointer) f8 bc 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) b8 bb 04 08 00 00 00 00 ~ syscall (codeword pointer) e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) 58 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) 80 c2 04 08 00 00 00 00 ~ mov-reg64-reg64 (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 48 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 90 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ sys-exit is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sys-exit" (string literal with null) 73 79 73 2d 65 78 69 74 00 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 3c 00 00 00 00 00 00 00 ~ 0x3c (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "syscall-1" (string literal with null) 73 79 73 63 61 6c 6c 2d 31 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "crash" (string literal with null) 63 72 61 73 68 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ sys-write is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sys-write" (string literal with null) 73 79 73 2d 77 72 69 74 65 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "syscall-3" (string literal with null) 73 79 73 63 61 6c 6c 2d 33 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ sys-read is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sys-read" (string literal with null) 73 79 73 2d 72 65 61 64 00 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "syscall-3" (string literal with null) 73 79 73 63 61 6c 6c 2d 33 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ sys-open is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sys-open" (string literal with null) 73 79 73 2d 6f 70 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "syscall-3" (string literal with null) 73 79 73 63 61 6c 6c 2d 33 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ sys-close is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sys-close" (string literal with null) 73 79 73 2d 63 6c 6f 73 65 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "syscall-1" (string literal with null) 73 79 73 63 61 6c 6c 2d 31 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ emitstring is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "stringlen" (string literal with null) 73 74 72 69 6e 67 6c 65 6e 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sys-write" (string literal with null) 73 79 73 2d 77 72 69 74 65 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ space is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "space" (string literal with null) 73 70 61 63 65 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 20 00 00 00 00 00 00 00 ~ 0x20 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "value@" (string literal with null) 76 61 6c 75 65 40 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ newline is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "newline" (string literal with null) 6e 65 77 6c 69 6e 65 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "value@" (string literal with null) 76 61 6c 75 65 40 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ pow is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pow" (string literal with null) 70 6f 77 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ unless 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) c0 fd 04 08 00 00 00 00 ~ log-load-unless (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ forever 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) e0 03 05 08 00 00 00 00 ~ log-load-forever (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ logfloor is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "logfloor" (string literal with null) 6c 6f 67 66 6c 6f 6f 72 00 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">unsigned" (string literal with null) 3e 75 6e 73 69 67 6e 65 64 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "<" (string literal with null) 3c 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ forever 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) e0 03 05 08 00 00 00 00 ~ log-load-forever (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ logceil is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "logceil" (string literal with null) 6c 6f 67 63 65 69 6c 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">=unsigned" (string literal with null) 3e 3d 75 6e 73 69 67 6e 65 64 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "<" (string literal with null) 3c 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ forever 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) e0 03 05 08 00 00 00 00 ~ log-load-forever (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ .base-unsigned is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ".base-unsigned" (string literal with null) 2e 62 61 73 65 2d 75 6e 73 69 67 6e 65 64 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "logfloor" (string literal with null) 6c 6f 67 66 6c 6f 6f 72 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">" (string literal with null) 3e 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if-else 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) e0 ff 04 08 00 00 00 00 ~ log-load-if-else (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pow" (string literal with null) 70 6f 77 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "/%" (string literal with null) 2f 25 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "/%" (string literal with null) 2f 25 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">" (string literal with null) 3e 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 30 00 00 00 00 00 00 00 ~ 0x30 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 61 00 00 00 00 00 00 00 ~ 0x61 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if-else 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) e0 ff 04 08 00 00 00 00 ~ log-load-if-else (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "value@" (string literal with null) 76 61 6c 75 65 40 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ unless 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) c0 fd 04 08 00 00 00 00 ~ log-load-unless (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ forever 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) e0 03 05 08 00 00 00 00 ~ log-load-forever (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ .base is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ".base" (string literal with null) 2e 62 61 73 65 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">" (string literal with null) 3e 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ff ff ff ff ff ff ff ff ~ 0xffffffffffffffff (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ".base-unsigned" (string literal with null) 2e 62 61 73 65 2d 75 6e 73 69 67 6e 65 64 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ . is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "." (string literal with null) 2e 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ".base" (string literal with null) 2e 62 61 73 65 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ .hex is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ".hex" (string literal with null) 2e 68 65 78 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 10 00 00 00 00 00 00 00 ~ 0x10 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ".base-unsigned" (string literal with null) 2e 62 61 73 65 2d 75 6e 73 69 67 6e 65 64 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ .hex8 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ".hex8" (string literal with null) 2e 68 65 78 38 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 10 00 00 00 00 00 00 00 ~ 0x10 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ".base-unsigned" (string literal with null) 2e 62 61 73 65 2d 75 6e 73 69 67 6e 65 64 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ .hex16 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ".hex16" (string literal with null) 2e 68 65 78 31 36 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 10 00 00 00 00 00 00 00 ~ 0x10 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ".base-unsigned" (string literal with null) 2e 62 61 73 65 2d 75 6e 73 69 67 6e 65 64 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ .hex32 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ".hex32" (string literal with null) 2e 68 65 78 33 32 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 10 00 00 00 00 00 00 00 ~ 0x10 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ".base-unsigned" (string literal with null) 2e 62 61 73 65 2d 75 6e 73 69 67 6e 65 64 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ .hex64 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ".hex64" (string literal with null) 2e 68 65 78 36 34 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 10 00 00 00 00 00 00 00 ~ 0x10 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 10 00 00 00 00 00 00 00 ~ 0x10 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ".base-unsigned" (string literal with null) 2e 62 61 73 65 2d 75 6e 73 69 67 6e 65 64 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ .hexn is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ".hexn" (string literal with null) 2e 68 65 78 6e 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 10 00 00 00 00 00 00 00 ~ 0x10 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ".base-unsigned" (string literal with null) 2e 62 61 73 65 2d 75 6e 73 69 67 6e 65 64 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rax" (string literal with null) 3a 72 61 78 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rcx" (string literal with null) 3a 72 63 78 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rdx" (string literal with null) 3a 72 64 78 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rbx" (string literal with null) 3a 72 62 78 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rsp" (string literal with null) 3a 72 73 70 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rbp" (string literal with null) 3a 72 62 70 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rsi" (string literal with null) 3a 72 73 69 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rdi" (string literal with null) 3a 72 64 69 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":r8" (string literal with null) 3a 72 38 00 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":r9" (string literal with null) 3a 72 39 00 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":r10" (string literal with null) 3a 72 31 30 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":r11" (string literal with null) 3a 72 31 31 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":r12" (string literal with null) 3a 72 31 32 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":r13" (string literal with null) 3a 72 31 33 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":r14" (string literal with null) 3a 72 31 34 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":r15" (string literal with null) 3a 72 31 35 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":eax" (string literal with null) 3a 65 61 78 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":ecx" (string literal with null) 3a 65 63 78 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":edx" (string literal with null) 3a 65 64 78 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":ebx" (string literal with null) 3a 65 62 78 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":esp" (string literal with null) 3a 65 73 70 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":ebp" (string literal with null) 3a 65 62 70 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":esi" (string literal with null) 3a 65 73 69 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":edi" (string literal with null) 3a 65 64 69 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":ax" (string literal with null) 3a 61 78 00 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cx" (string literal with null) 3a 63 78 00 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":dx" (string literal with null) 3a 64 78 00 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":bx" (string literal with null) 3a 62 78 00 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":sp" (string literal with null) 3a 73 70 00 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":bp" (string literal with null) 3a 62 70 00 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":si" (string literal with null) 3a 73 69 00 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":di" (string literal with null) 3a 64 69 00 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":al" (string literal with null) 3a 61 6c 00 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cl" (string literal with null) 3a 63 6c 00 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":dl" (string literal with null) 3a 64 6c 00 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":bl" (string literal with null) 3a 62 6c 00 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":ah" (string literal with null) 3a 61 68 00 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":ch" (string literal with null) 3a 63 68 00 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":dh" (string literal with null) 3a 64 68 00 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":bh" (string literal with null) 3a 62 68 00 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-overflow" (string literal with null) 3a 63 63 2d 6f 76 65 72 66 6c 6f 77 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-no-overflow" (string literal with null) 3a 63 63 2d 6e 6f 2d 6f 76 65 72 66 6c 6f 77 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-below" (string literal with null) 3a 63 63 2d 62 65 6c 6f 77 00 00 00 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-above-equal" (string literal with null) 3a 63 63 2d 61 62 6f 76 65 2d 65 71 75 61 6c 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-equal" (string literal with null) 3a 63 63 2d 65 71 75 61 6c 00 00 00 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-not-equal" (string literal with null) 3a 63 63 2d 6e 6f 74 2d 65 71 75 61 6c 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-below-equal" (string literal with null) 3a 63 63 2d 62 65 6c 6f 77 2d 65 71 75 61 6c 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-above" (string literal with null) 3a 63 63 2d 61 62 6f 76 65 00 00 00 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-sign" (string literal with null) 3a 63 63 2d 73 69 67 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-not-sign" (string literal with null) 3a 63 63 2d 6e 6f 74 2d 73 69 67 6e 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-even" (string literal with null) 3a 63 63 2d 65 76 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-odd" (string literal with null) 3a 63 63 2d 6f 64 64 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-less" (string literal with null) 3a 63 63 2d 6c 65 73 73 00 00 00 00 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-greater-equal" (string literal with null) 3a 63 63 2d 67 72 65 61 74 65 72 2d 65 71 75 61 6c 00 00 00 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-less-equal" (string literal with null) 3a 63 63 2d 6c 65 73 73 2d 65 71 75 61 6c 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-greater" (string literal with null) 3a 63 63 2d 67 72 65 61 74 65 72 00 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) ~ reg64 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rax" (string literal with null) 3a 72 61 78 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rcx" (string literal with null) 3a 72 63 78 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rdx" (string literal with null) 3a 72 64 78 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rbx" (string literal with null) 3a 72 62 78 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rsp" (string literal with null) 3a 72 73 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rbp" (string literal with null) 3a 72 62 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rsi" (string literal with null) 3a 72 73 69 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rdi" (string literal with null) 3a 72 64 69 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "Parameter to reg64 is not a reg64." (string literal with null) 50 61 72 61 6d 65 74 65 72 20 74 6f 20 72 65 67 36 34 20 69 73 20 6e 6f 74 20 61 20 72 65 67 36 34 2e 00 00 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sys-exit" (string literal with null) 73 79 73 2d 65 78 69 74 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ extrareg64 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "extrareg64" (string literal with null) 65 78 74 72 61 72 65 67 36 34 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":r8" (string literal with null) 3a 72 38 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":r9" (string literal with null) 3a 72 39 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":r10" (string literal with null) 3a 72 31 30 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":r11" (string literal with null) 3a 72 31 31 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":r12" (string literal with null) 3a 72 31 32 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":r13" (string literal with null) 3a 72 31 33 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":r14" (string literal with null) 3a 72 31 34 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":r15" (string literal with null) 3a 72 31 35 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "Parameter to extrareg64 is not an extrareg64." (string literal with null) 50 61 72 61 6d 65 74 65 72 20 74 6f 20 65 78 74 72 61 72 65 67 36 34 20 69 73 20 6e 6f 74 20 61 6e 20 65 78 74 72 61 72 65 67 36 34 2e 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sys-exit" (string literal with null) 73 79 73 2d 65 78 69 74 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ reg32 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg32" (string literal with null) 72 65 67 33 32 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":eax" (string literal with null) 3a 65 61 78 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":ecx" (string literal with null) 3a 65 63 78 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":edx" (string literal with null) 3a 65 64 78 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":ebx" (string literal with null) 3a 65 62 78 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":esp" (string literal with null) 3a 65 73 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":ebp" (string literal with null) 3a 65 62 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":esi" (string literal with null) 3a 65 73 69 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":edi" (string literal with null) 3a 65 64 69 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "Parameter to reg32 is not a reg32." (string literal with null) 50 61 72 61 6d 65 74 65 72 20 74 6f 20 72 65 67 33 32 20 69 73 20 6e 6f 74 20 61 20 72 65 67 33 32 2e 00 00 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sys-exit" (string literal with null) 73 79 73 2d 65 78 69 74 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ reg16 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg16" (string literal with null) 72 65 67 31 36 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":ax" (string literal with null) 3a 61 78 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cx" (string literal with null) 3a 63 78 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":dx" (string literal with null) 3a 64 78 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":bx" (string literal with null) 3a 62 78 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":sp" (string literal with null) 3a 73 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":bp" (string literal with null) 3a 62 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":si" (string literal with null) 3a 73 69 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":di" (string literal with null) 3a 64 69 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "Parameter to reg16 is not a reg16." (string literal with null) 50 61 72 61 6d 65 74 65 72 20 74 6f 20 72 65 67 31 36 20 69 73 20 6e 6f 74 20 61 20 72 65 67 31 36 2e 00 00 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sys-exit" (string literal with null) 73 79 73 2d 65 78 69 74 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ reg8 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg8" (string literal with null) 72 65 67 38 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":al" (string literal with null) 3a 61 6c 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cl" (string literal with null) 3a 63 6c 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":dl" (string literal with null) 3a 64 6c 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":bl" (string literal with null) 3a 62 6c 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":ah" (string literal with null) 3a 61 68 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":ch" (string literal with null) 3a 63 68 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":dh" (string literal with null) 3a 64 68 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":bh" (string literal with null) 3a 62 68 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "Parameter to reg8 is not a reg8." (string literal with null) 50 61 72 61 6d 65 74 65 72 20 74 6f 20 72 65 67 38 20 69 73 20 6e 6f 74 20 61 20 72 65 67 38 2e 00 00 00 00 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sys-exit" (string literal with null) 73 79 73 2d 65 78 69 74 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ scalefield is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "scalefield" (string literal with null) 73 63 61 6c 65 66 69 65 6c 64 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "Parameter to scalefield is not 1, 2, 4, or 8." (string literal with null) 50 61 72 61 6d 65 74 65 72 20 74 6f 20 73 63 61 6c 65 66 69 65 6c 64 20 69 73 20 6e 6f 74 20 31 2c 20 32 2c 20 34 2c 20 6f 72 20 38 2e 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sys-exit" (string literal with null) 73 79 73 2d 65 78 69 74 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ condition-code is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "condition-code" (string literal with null) 63 6f 6e 64 69 74 69 6f 6e 2d 63 6f 64 65 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-overflow" (string literal with null) 3a 63 63 2d 6f 76 65 72 66 6c 6f 77 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-no-overflow" (string literal with null) 3a 63 63 2d 6e 6f 2d 6f 76 65 72 66 6c 6f 77 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-below" (string literal with null) 3a 63 63 2d 62 65 6c 6f 77 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-above-equal" (string literal with null) 3a 63 63 2d 61 62 6f 76 65 2d 65 71 75 61 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-equal" (string literal with null) 3a 63 63 2d 65 71 75 61 6c 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-not-equal" (string literal with null) 3a 63 63 2d 6e 6f 74 2d 65 71 75 61 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-below-equal" (string literal with null) 3a 63 63 2d 62 65 6c 6f 77 2d 65 71 75 61 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-above" (string literal with null) 3a 63 63 2d 61 62 6f 76 65 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-sign" (string literal with null) 3a 63 63 2d 73 69 67 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-not-sign" (string literal with null) 3a 63 63 2d 6e 6f 74 2d 73 69 67 6e 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 09 00 00 00 00 00 00 00 ~ 0x9 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-even" (string literal with null) 3a 63 63 2d 65 76 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-odd" (string literal with null) 3a 63 63 2d 6f 64 64 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0b 00 00 00 00 00 00 00 ~ 0xb (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-less" (string literal with null) 3a 63 63 2d 6c 65 73 73 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0c 00 00 00 00 00 00 00 ~ 0xc (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-greater-equal" (string literal with null) 3a 63 63 2d 67 72 65 61 74 65 72 2d 65 71 75 61 6c 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0d 00 00 00 00 00 00 00 ~ 0xd (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-less-equal" (string literal with null) 3a 63 63 2d 6c 65 73 73 2d 65 71 75 61 6c 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0e 00 00 00 00 00 00 00 ~ 0xe (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-greater" (string literal with null) 3a 63 63 2d 67 72 65 61 74 65 72 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0f 00 00 00 00 00 00 00 ~ 0xf (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "Parameter to condition-code is not a condition code." (string literal with null) 50 61 72 61 6d 65 74 65 72 20 74 6f 20 63 6f 6e 64 69 74 69 6f 6e 2d 63 6f 64 65 20 69 73 20 6e 6f 74 20 61 20 63 6f 6e 64 69 74 69 6f 6e 20 63 6f 64 65 2e 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sys-exit" (string literal with null) 73 79 73 2d 65 78 69 74 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rex-0 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-0" (string literal with null) 72 65 78 2d 30 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 40 00 00 00 00 00 00 00 ~ 0x40 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rex-w is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 48 00 00 00 00 00 00 00 ~ 0x48 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rex-r is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-r" (string literal with null) 72 65 78 2d 72 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 44 00 00 00 00 00 00 00 ~ 0x44 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rex-x is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-x" (string literal with null) 72 65 78 2d 78 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 42 00 00 00 00 00 00 00 ~ 0x42 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rex-b is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-b" (string literal with null) 72 65 78 2d 62 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 41 00 00 00 00 00 00 00 ~ 0x41 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rex-wr is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-wr" (string literal with null) 72 65 78 2d 77 72 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 4c 00 00 00 00 00 00 00 ~ 0x4c (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rex-wx is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-wx" (string literal with null) 72 65 78 2d 77 78 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 4a 00 00 00 00 00 00 00 ~ 0x4a (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rex-wb is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-wb" (string literal with null) 72 65 78 2d 77 62 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 49 00 00 00 00 00 00 00 ~ 0x49 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rex-rx is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-rx" (string literal with null) 72 65 78 2d 72 78 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 46 00 00 00 00 00 00 00 ~ 0x46 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rex-rb is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-rb" (string literal with null) 72 65 78 2d 72 62 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 45 00 00 00 00 00 00 00 ~ 0x45 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rex-xb is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-xb" (string literal with null) 72 65 78 2d 78 62 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 43 00 00 00 00 00 00 00 ~ 0x43 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rex-wrx is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-wrx" (string literal with null) 72 65 78 2d 77 72 78 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 4e 00 00 00 00 00 00 00 ~ 0x4e (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rex-wrb is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-wrb" (string literal with null) 72 65 78 2d 77 72 62 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 4d 00 00 00 00 00 00 00 ~ 0x4d (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rex-wxb is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-wxb" (string literal with null) 72 65 78 2d 77 78 62 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 4b 00 00 00 00 00 00 00 ~ 0x4b (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rex-rxb is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-rxb" (string literal with null) 72 65 78 2d 72 78 62 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 47 00 00 00 00 00 00 00 ~ 0x47 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rex-wrxb is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-wrxb" (string literal with null) 72 65 78 2d 77 72 78 62 00 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 4f 00 00 00 00 00 00 00 ~ 0x4f (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ opcodereg is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "opcodereg" (string literal with null) 6f 70 63 6f 64 65 72 65 67 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "|" (string literal with null) 7c 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ opcodecc is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "opcodecc" (string literal with null) 6f 70 63 6f 64 65 63 63 00 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "|" (string literal with null) 7c 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ modrm is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "modrm" (string literal with null) 6d 6f 64 72 6d 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "|" (string literal with null) 7c 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 40 00 00 00 00 00 00 00 ~ 0x40 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "|" (string literal with null) 7c 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ sib is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sib" (string literal with null) 73 69 62 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "|" (string literal with null) 7c 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 40 00 00 00 00 00 00 00 ~ 0x40 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "|" (string literal with null) 7c 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ addressing-reg64 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "modrm" (string literal with null) 6d 6f 64 72 6d 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ addressing-reg8 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg8" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 38 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg8" (string literal with null) 72 65 67 38 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "modrm" (string literal with null) 6d 6f 64 72 6d 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ addressing-indirect-reg64 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-indirect-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rbp" (string literal with null) 3a 72 62 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rsp" (string literal with null) 3a 72 73 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "modrm" (string literal with null) 6d 6f 64 72 6d 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rsp" (string literal with null) 3a 72 73 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sib" (string literal with null) 73 69 62 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "R/M parameter to addressing-indirect-reg64 is :rbp." (string literal with null) 52 2f 4d 20 70 61 72 61 6d 65 74 65 72 20 74 6f 20 61 64 64 72 65 73 73 69 6e 67 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 20 69 73 20 3a 72 62 70 2e 00 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sys-exit" (string literal with null) 73 79 73 2d 65 78 69 74 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ addressing-disp8-reg64 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-disp8-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 64 69 73 70 38 2d 72 65 67 36 34 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rsp" (string literal with null) 3a 72 73 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "modrm" (string literal with null) 6d 6f 64 72 6d 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rsp" (string literal with null) 3a 72 73 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sib" (string literal with null) 73 69 62 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ addressing-disp32-reg64 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-disp32-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 64 69 73 70 33 32 2d 72 65 67 36 34 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rsp" (string literal with null) 3a 72 73 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "modrm" (string literal with null) 6d 6f 64 72 6d 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rsp" (string literal with null) 3a 72 73 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sib" (string literal with null) 73 69 62 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack32" (string literal with null) 70 61 63 6b 33 32 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ addressing-indexed-reg64 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-indexed-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 69 6e 64 65 78 65 64 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rbp" (string literal with null) 3a 72 62 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "modrm" (string literal with null) 6d 6f 64 72 6d 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "scalefield" (string literal with null) 73 63 61 6c 65 66 69 65 6c 64 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sib" (string literal with null) 73 69 62 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "Base parameter to addressing-indexed-reg64 is :rbp." (string literal with null) 42 61 73 65 20 70 61 72 61 6d 65 74 65 72 20 74 6f 20 61 64 64 72 65 73 73 69 6e 67 2d 69 6e 64 65 78 65 64 2d 72 65 67 36 34 20 69 73 20 3a 72 62 70 2e 00 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sys-exit" (string literal with null) 73 79 73 2d 65 78 69 74 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ addressing-disp8-indexed-reg64 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-disp8-indexed-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 64 69 73 70 38 2d 69 6e 64 65 78 65 64 2d 72 65 67 36 34 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "modrm" (string literal with null) 6d 6f 64 72 6d 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "scalefield" (string literal with null) 73 63 61 6c 65 66 69 65 6c 64 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sib" (string literal with null) 73 69 62 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ cld is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "cld" (string literal with null) 63 6c 64 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) fc 00 00 00 00 00 00 00 ~ 0xfc (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ std is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "std" (string literal with null) 73 74 64 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) fd 00 00 00 00 00 00 00 ~ 0xfd (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ syscall is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "syscall" (string literal with null) 73 79 73 63 61 6c 6c 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0f 00 00 00 00 00 00 00 ~ 0xf (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ hlt is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "hlt" (string literal with null) 68 6c 74 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f4 00 00 00 00 00 00 00 ~ 0xf4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ push-reg64 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "push-reg64" (string literal with null) 70 75 73 68 2d 72 65 67 36 34 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 50 00 00 00 00 00 00 00 ~ 0x50 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "opcodereg" (string literal with null) 6f 70 63 6f 64 65 72 65 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ push-extrareg64 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "push-extrareg64" (string literal with null) 70 75 73 68 2d 65 78 74 72 61 72 65 67 36 34 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-b" (string literal with null) 72 65 78 2d 62 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "extrareg64" (string literal with null) 65 78 74 72 61 72 65 67 36 34 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 50 00 00 00 00 00 00 00 ~ 0x50 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "opcodereg" (string literal with null) 6f 70 63 6f 64 65 72 65 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ pop-reg64 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pop-reg64" (string literal with null) 70 6f 70 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 58 00 00 00 00 00 00 00 ~ 0x58 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "opcodereg" (string literal with null) 6f 70 63 6f 64 65 72 65 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ pop-extrareg64 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pop-extrareg64" (string literal with null) 70 6f 70 2d 65 78 74 72 61 72 65 67 36 34 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-b" (string literal with null) 72 65 78 2d 62 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "extrareg64" (string literal with null) 65 78 74 72 61 72 65 67 36 34 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 58 00 00 00 00 00 00 00 ~ 0x58 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "opcodereg" (string literal with null) 6f 70 63 6f 64 65 72 65 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ push-imm32-extended64 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "push-imm32-extended64" (string literal with null) 70 75 73 68 2d 69 6d 6d 33 32 2d 65 78 74 65 6e 64 65 64 36 34 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 68 00 00 00 00 00 00 00 ~ 0x68 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack32" (string literal with null) 70 61 63 6b 33 32 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ lea-reg64-disp8-reg64 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lea-reg64-disp8-reg64" (string literal with null) 6c 65 61 2d 72 65 67 36 34 2d 64 69 73 70 38 2d 72 65 67 36 34 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 8d 00 00 00 00 00 00 00 ~ 0x8d (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-disp8-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 64 69 73 70 38 2d 72 65 67 36 34 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ lea-reg64-disp32-reg64 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lea-reg64-disp32-reg64" (string literal with null) 6c 65 61 2d 72 65 67 36 34 2d 64 69 73 70 33 32 2d 72 65 67 36 34 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 8d 00 00 00 00 00 00 00 ~ 0x8d (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-disp32-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 64 69 73 70 33 32 2d 72 65 67 36 34 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ lea-reg64-indexed-reg64 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lea-reg64-indexed-reg64" (string literal with null) 6c 65 61 2d 72 65 67 36 34 2d 69 6e 64 65 78 65 64 2d 72 65 67 36 34 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 8d 00 00 00 00 00 00 00 ~ 0x8d (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-indexed-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 69 6e 64 65 78 65 64 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ lea-reg64-disp8-indexed-reg64 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lea-reg64-disp8-indexed-reg64" (string literal with null) 6c 65 61 2d 72 65 67 36 34 2d 64 69 73 70 38 2d 69 6e 64 65 78 65 64 2d 72 65 67 36 34 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 8d 00 00 00 00 00 00 00 ~ 0x8d (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-disp8-indexed-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 64 69 73 70 38 2d 69 6e 64 65 78 65 64 2d 72 65 67 36 34 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ mov-reg64-imm32 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-reg64-imm32" (string literal with null) 6d 6f 76 2d 72 65 67 36 34 2d 69 6d 6d 33 32 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) c7 00 00 00 00 00 00 00 ~ 0xc7 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack32" (string literal with null) 70 61 63 6b 33 32 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ mov-reg64-imm64 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-reg64-imm64" (string literal with null) 6d 6f 76 2d 72 65 67 36 34 2d 69 6d 6d 36 34 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) b8 00 00 00 00 00 00 00 ~ 0xb8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "opcodereg" (string literal with null) 6f 70 63 6f 64 65 72 65 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack64" (string literal with null) 70 61 63 6b 36 34 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ mov-extrareg64-imm64 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-extrareg64-imm64" (string literal with null) 6d 6f 76 2d 65 78 74 72 61 72 65 67 36 34 2d 69 6d 6d 36 34 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-wb" (string literal with null) 72 65 78 2d 77 62 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "extrareg64" (string literal with null) 65 78 74 72 61 72 65 67 36 34 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) b8 00 00 00 00 00 00 00 ~ 0xb8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "opcodereg" (string literal with null) 6f 70 63 6f 64 65 72 65 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack64" (string literal with null) 70 61 63 6b 36 34 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ mov-reg64-reg64 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-reg64-reg64" (string literal with null) 6d 6f 76 2d 72 65 67 36 34 2d 72 65 67 36 34 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 89 00 00 00 00 00 00 00 ~ 0x89 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ mov-indirect-reg64-reg64 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-indirect-reg64-reg64" (string literal with null) 6d 6f 76 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 89 00 00 00 00 00 00 00 ~ 0x89 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-indirect-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ mov-disp8-reg64-reg64 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-disp8-reg64-reg64" (string literal with null) 6d 6f 76 2d 64 69 73 70 38 2d 72 65 67 36 34 2d 72 65 67 36 34 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 89 00 00 00 00 00 00 00 ~ 0x89 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-disp8-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 64 69 73 70 38 2d 72 65 67 36 34 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ mov-reg64-indirect-reg64 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-reg64-indirect-reg64" (string literal with null) 6d 6f 76 2d 72 65 67 36 34 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 8b 00 00 00 00 00 00 00 ~ 0x8b (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-indirect-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ mov-reg64-disp8-reg64 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-reg64-disp8-reg64" (string literal with null) 6d 6f 76 2d 72 65 67 36 34 2d 64 69 73 70 38 2d 72 65 67 36 34 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 8b 00 00 00 00 00 00 00 ~ 0x8b (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-disp8-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 64 69 73 70 38 2d 72 65 67 36 34 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ mov-reg64-disp32-reg64 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-reg64-disp32-reg64" (string literal with null) 6d 6f 76 2d 72 65 67 36 34 2d 64 69 73 70 33 32 2d 72 65 67 36 34 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 89 00 00 00 00 00 00 00 ~ 0x89 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-disp32-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 64 69 73 70 33 32 2d 72 65 67 36 34 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ mov-reg64-indexed-reg64 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-reg64-indexed-reg64" (string literal with null) 6d 6f 76 2d 72 65 67 36 34 2d 69 6e 64 65 78 65 64 2d 72 65 67 36 34 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 8b 00 00 00 00 00 00 00 ~ 0x8b (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-indexed-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 69 6e 64 65 78 65 64 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ mov-indexed-reg64-reg64 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-indexed-reg64-reg64" (string literal with null) 6d 6f 76 2d 69 6e 64 65 78 65 64 2d 72 65 67 36 34 2d 72 65 67 36 34 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 89 00 00 00 00 00 00 00 ~ 0x89 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-indexed-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 69 6e 64 65 78 65 64 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ mov-indirect-reg64-reg32 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-indirect-reg64-reg32" (string literal with null) 6d 6f 76 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 2d 72 65 67 33 32 00 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 89 00 00 00 00 00 00 00 ~ 0x89 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg32" (string literal with null) 72 65 67 33 32 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-indirect-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ mov-disp8-reg64-reg32 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-disp8-reg64-reg32" (string literal with null) 6d 6f 76 2d 64 69 73 70 38 2d 72 65 67 36 34 2d 72 65 67 33 32 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 89 00 00 00 00 00 00 00 ~ 0x89 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg32" (string literal with null) 72 65 67 33 32 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-disp8-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 64 69 73 70 38 2d 72 65 67 36 34 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ mov-reg32-indirect-reg64 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-reg32-indirect-reg64" (string literal with null) 6d 6f 76 2d 72 65 67 33 32 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 8b 00 00 00 00 00 00 00 ~ 0x8b (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg32" (string literal with null) 72 65 67 33 32 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-indirect-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ mov-reg32-disp8-reg64 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-reg32-disp8-reg64" (string literal with null) 6d 6f 76 2d 72 65 67 33 32 2d 64 69 73 70 38 2d 72 65 67 36 34 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 8b 00 00 00 00 00 00 00 ~ 0x8b (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg32" (string literal with null) 72 65 67 33 32 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-disp8-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 64 69 73 70 38 2d 72 65 67 36 34 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ mov-indirect-reg64-reg16 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-indirect-reg64-reg16" (string literal with null) 6d 6f 76 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 2d 72 65 67 31 36 00 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 89 00 00 00 00 00 00 00 ~ 0x89 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg16" (string literal with null) 72 65 67 31 36 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-indirect-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ mov-disp8-reg64-reg16 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-disp8-reg64-reg16" (string literal with null) 6d 6f 76 2d 64 69 73 70 38 2d 72 65 67 36 34 2d 72 65 67 31 36 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 89 00 00 00 00 00 00 00 ~ 0x89 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg16" (string literal with null) 72 65 67 31 36 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-disp8-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 64 69 73 70 38 2d 72 65 67 36 34 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ mov-reg16-indirect-reg64 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-reg16-indirect-reg64" (string literal with null) 6d 6f 76 2d 72 65 67 31 36 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 8b 00 00 00 00 00 00 00 ~ 0x8b (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg16" (string literal with null) 72 65 67 31 36 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-indirect-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ mov-reg16-disp8-reg64 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-reg16-disp8-reg64" (string literal with null) 6d 6f 76 2d 72 65 67 31 36 2d 64 69 73 70 38 2d 72 65 67 36 34 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 8b 00 00 00 00 00 00 00 ~ 0x8b (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg16" (string literal with null) 72 65 67 31 36 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-disp8-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 64 69 73 70 38 2d 72 65 67 36 34 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ mov-indirect-reg64-reg8 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-indirect-reg64-reg8" (string literal with null) 6d 6f 76 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 2d 72 65 67 38 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 88 00 00 00 00 00 00 00 ~ 0x88 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg8" (string literal with null) 72 65 67 38 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-indirect-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ mov-disp8-reg64-reg8 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-disp8-reg64-reg8" (string literal with null) 6d 6f 76 2d 64 69 73 70 38 2d 72 65 67 36 34 2d 72 65 67 38 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 88 00 00 00 00 00 00 00 ~ 0x88 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg8" (string literal with null) 72 65 67 38 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-disp8-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 64 69 73 70 38 2d 72 65 67 36 34 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ mov-reg8-indirect-reg64 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-reg8-indirect-reg64" (string literal with null) 6d 6f 76 2d 72 65 67 38 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 8a 00 00 00 00 00 00 00 ~ 0x8a (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg8" (string literal with null) 72 65 67 38 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-indirect-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ mov-reg8-disp8-reg64 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-reg8-disp8-reg64" (string literal with null) 6d 6f 76 2d 72 65 67 38 2d 64 69 73 70 38 2d 72 65 67 36 34 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 8a 00 00 00 00 00 00 00 ~ 0x8a (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg8" (string literal with null) 72 65 67 38 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-disp8-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 64 69 73 70 38 2d 72 65 67 36 34 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ mov-reg8-reg8 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-reg8-reg8" (string literal with null) 6d 6f 76 2d 72 65 67 38 2d 72 65 67 38 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 88 00 00 00 00 00 00 00 ~ 0x88 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg8" (string literal with null) 72 65 67 38 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg8" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 38 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ movs8 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "movs8" (string literal with null) 6d 6f 76 73 38 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a4 00 00 00 00 00 00 00 ~ 0xa4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ movs16 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "movs16" (string literal with null) 6d 6f 76 73 31 36 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a5 00 00 00 00 00 00 00 ~ 0xa5 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ movs32 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "movs32" (string literal with null) 6d 6f 76 73 33 32 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a5 00 00 00 00 00 00 00 ~ 0xa5 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ movs64 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "movs64" (string literal with null) 6d 6f 76 73 36 34 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a5 00 00 00 00 00 00 00 ~ 0xa5 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rep-movs8 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rep-movs8" (string literal with null) 72 65 70 2d 6d 6f 76 73 38 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a4 00 00 00 00 00 00 00 ~ 0xa4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rep-movs16 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rep-movs16" (string literal with null) 72 65 70 2d 6d 6f 76 73 31 36 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a5 00 00 00 00 00 00 00 ~ 0xa5 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rep-movs32 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rep-movs32" (string literal with null) 72 65 70 2d 6d 6f 76 73 33 32 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a5 00 00 00 00 00 00 00 ~ 0xa5 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rep-movs64 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rep-movs64" (string literal with null) 72 65 70 2d 6d 6f 76 73 36 34 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a5 00 00 00 00 00 00 00 ~ 0xa5 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ lods8 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lods8" (string literal with null) 6c 6f 64 73 38 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ac 00 00 00 00 00 00 00 ~ 0xac (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ lods16 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lods16" (string literal with null) 6c 6f 64 73 31 36 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ad 00 00 00 00 00 00 00 ~ 0xad (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ lods32 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lods32" (string literal with null) 6c 6f 64 73 33 32 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ad 00 00 00 00 00 00 00 ~ 0xad (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ lods64 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lods64" (string literal with null) 6c 6f 64 73 36 34 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ad 00 00 00 00 00 00 00 ~ 0xad (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rep-lods8 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rep-lods8" (string literal with null) 72 65 70 2d 6c 6f 64 73 38 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ac 00 00 00 00 00 00 00 ~ 0xac (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rep-lods16 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rep-lods16" (string literal with null) 72 65 70 2d 6c 6f 64 73 31 36 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ad 00 00 00 00 00 00 00 ~ 0xad (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rep-lods32 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rep-lods32" (string literal with null) 72 65 70 2d 6c 6f 64 73 33 32 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ad 00 00 00 00 00 00 00 ~ 0xad (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rep-lods64 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rep-lods64" (string literal with null) 72 65 70 2d 6c 6f 64 73 36 34 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ad 00 00 00 00 00 00 00 ~ 0xad (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ stos8 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "stos8" (string literal with null) 73 74 6f 73 38 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) aa 00 00 00 00 00 00 00 ~ 0xaa (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ stos16 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "stos16" (string literal with null) 73 74 6f 73 31 36 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ab 00 00 00 00 00 00 00 ~ 0xab (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ stos32 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "stos32" (string literal with null) 73 74 6f 73 33 32 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ab 00 00 00 00 00 00 00 ~ 0xab (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ stos64 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "stos64" (string literal with null) 73 74 6f 73 36 34 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ab 00 00 00 00 00 00 00 ~ 0xab (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rep-stos8 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rep-stos8" (string literal with null) 72 65 70 2d 73 74 6f 73 38 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) aa 00 00 00 00 00 00 00 ~ 0xaa (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rep-stos16 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rep-stos16" (string literal with null) 72 65 70 2d 73 74 6f 73 31 36 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ab 00 00 00 00 00 00 00 ~ 0xab (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rep-stos32 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rep-stos32" (string literal with null) 72 65 70 2d 73 74 6f 73 33 32 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ab 00 00 00 00 00 00 00 ~ 0xab (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rep-stos64 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rep-stos64" (string literal with null) 72 65 70 2d 73 74 6f 73 36 34 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ab 00 00 00 00 00 00 00 ~ 0xab (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ cmps8 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "cmps8" (string literal with null) 63 6d 70 73 38 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a6 00 00 00 00 00 00 00 ~ 0xa6 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ cmps16 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "cmps16" (string literal with null) 63 6d 70 73 31 36 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a7 00 00 00 00 00 00 00 ~ 0xa7 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ cmps32 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "cmps32" (string literal with null) 63 6d 70 73 33 32 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a7 00 00 00 00 00 00 00 ~ 0xa7 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ cmps64 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "cmps64" (string literal with null) 63 6d 70 73 36 34 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a7 00 00 00 00 00 00 00 ~ 0xa7 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ repz-cmps8 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "repz-cmps8" (string literal with null) 72 65 70 7a 2d 63 6d 70 73 38 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a6 00 00 00 00 00 00 00 ~ 0xa6 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ repz-cmps16 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "repz-cmps16" (string literal with null) 72 65 70 7a 2d 63 6d 70 73 31 36 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a7 00 00 00 00 00 00 00 ~ 0xa7 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ repz-cmps32 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "repz-cmps32" (string literal with null) 72 65 70 7a 2d 63 6d 70 73 33 32 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a7 00 00 00 00 00 00 00 ~ 0xa7 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ repz-cmps64 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "repz-cmps64" (string literal with null) 72 65 70 7a 2d 63 6d 70 73 36 34 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a7 00 00 00 00 00 00 00 ~ 0xa7 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ repnz-cmps8 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "repnz-cmps8" (string literal with null) 72 65 70 6e 7a 2d 63 6d 70 73 38 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f2 00 00 00 00 00 00 00 ~ 0xf2 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a6 00 00 00 00 00 00 00 ~ 0xa6 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ repnz-cmps16 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "repnz-cmps16" (string literal with null) 72 65 70 6e 7a 2d 63 6d 70 73 31 36 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f2 00 00 00 00 00 00 00 ~ 0xf2 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a7 00 00 00 00 00 00 00 ~ 0xa7 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ repnz-cmps32 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "repnz-cmps32" (string literal with null) 72 65 70 6e 7a 2d 63 6d 70 73 33 32 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f2 00 00 00 00 00 00 00 ~ 0xf2 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a7 00 00 00 00 00 00 00 ~ 0xa7 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ repnz-cmps64 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "repnz-cmps64" (string literal with null) 72 65 70 6e 7a 2d 63 6d 70 73 36 34 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f2 00 00 00 00 00 00 00 ~ 0xf2 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a7 00 00 00 00 00 00 00 ~ 0xa7 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ scas8 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "scas8" (string literal with null) 73 63 61 73 38 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a8 00 00 00 00 00 00 00 ~ 0xa8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ scas16 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "scas16" (string literal with null) 73 63 61 73 31 36 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) af 00 00 00 00 00 00 00 ~ 0xaf (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ scas32 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "scas32" (string literal with null) 73 63 61 73 33 32 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) af 00 00 00 00 00 00 00 ~ 0xaf (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ scas64 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "scas64" (string literal with null) 73 63 61 73 36 34 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) af 00 00 00 00 00 00 00 ~ 0xaf (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ repz-scas8 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "repz-scas8" (string literal with null) 72 65 70 7a 2d 73 63 61 73 38 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ae 00 00 00 00 00 00 00 ~ 0xae (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ repz-scas16 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "repz-scas16" (string literal with null) 72 65 70 7a 2d 73 63 61 73 31 36 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) af 00 00 00 00 00 00 00 ~ 0xaf (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ repz-scas32 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "repz-scas32" (string literal with null) 72 65 70 7a 2d 73 63 61 73 33 32 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) af 00 00 00 00 00 00 00 ~ 0xaf (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ repz-scas64 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "repz-scas64" (string literal with null) 72 65 70 7a 2d 73 63 61 73 36 34 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) af 00 00 00 00 00 00 00 ~ 0xaf (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ repnz-scas8 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "repnz-scas8" (string literal with null) 72 65 70 6e 7a 2d 73 63 61 73 38 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f2 00 00 00 00 00 00 00 ~ 0xf2 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ae 00 00 00 00 00 00 00 ~ 0xae (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ repnz-scas16 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "repnz-scas16" (string literal with null) 72 65 70 6e 7a 2d 73 63 61 73 31 36 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f2 00 00 00 00 00 00 00 ~ 0xf2 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) af 00 00 00 00 00 00 00 ~ 0xaf (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ repnz-scas32 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "repnz-scas32" (string literal with null) 72 65 70 6e 7a 2d 73 63 61 73 33 32 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f2 00 00 00 00 00 00 00 ~ 0xf2 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) af 00 00 00 00 00 00 00 ~ 0xaf (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ repnz-scas64 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "repnz-scas64" (string literal with null) 72 65 70 6e 7a 2d 73 63 61 73 36 34 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f2 00 00 00 00 00 00 00 ~ 0xf2 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) af 00 00 00 00 00 00 00 ~ 0xaf (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ add-reg64-reg64 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "add-reg64-reg64" (string literal with null) 61 64 64 2d 72 65 67 36 34 2d 72 65 67 36 34 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ add-indirect-reg64-reg64 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "add-indirect-reg64-reg64" (string literal with null) 61 64 64 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-indirect-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ add-reg64-indirect-reg64 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "add-reg64-indirect-reg64" (string literal with null) 61 64 64 2d 72 65 67 36 34 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-indirect-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ add-reg64-imm8 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "add-reg64-imm8" (string literal with null) 61 64 64 2d 72 65 67 36 34 2d 69 6d 6d 38 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 83 00 00 00 00 00 00 00 ~ 0x83 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ sub-reg64-reg64 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sub-reg64-reg64" (string literal with null) 73 75 62 2d 72 65 67 36 34 2d 72 65 67 36 34 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 2b 00 00 00 00 00 00 00 ~ 0x2b (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ sub-indirect-reg64-reg64 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sub-indirect-reg64-reg64" (string literal with null) 73 75 62 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 2b 00 00 00 00 00 00 00 ~ 0x2b (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-indirect-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ sub-reg64-imm8 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sub-reg64-imm8" (string literal with null) 73 75 62 2d 72 65 67 36 34 2d 69 6d 6d 38 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 83 00 00 00 00 00 00 00 ~ 0x83 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ sbb-reg64-imm8 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sbb-reg64-imm8" (string literal with null) 73 62 62 2d 72 65 67 36 34 2d 69 6d 6d 38 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 83 00 00 00 00 00 00 00 ~ 0x83 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ mul-reg64 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mul-reg64" (string literal with null) 6d 75 6c 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f7 00 00 00 00 00 00 00 ~ 0xf7 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ divmod-reg64 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "divmod-reg64" (string literal with null) 64 69 76 6d 6f 64 2d 72 65 67 36 34 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f7 00 00 00 00 00 00 00 ~ 0xf7 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ idivmod-reg64 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "idivmod-reg64" (string literal with null) 69 64 69 76 6d 6f 64 2d 72 65 67 36 34 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f7 00 00 00 00 00 00 00 ~ 0xf7 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ inc-reg64 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "inc-reg64" (string literal with null) 69 6e 63 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ff 00 00 00 00 00 00 00 ~ 0xff (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ dec-reg64 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dec-reg64" (string literal with null) 64 65 63 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ff 00 00 00 00 00 00 00 ~ 0xff (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ and-reg64-reg64 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "and-reg64-reg64" (string literal with null) 61 6e 64 2d 72 65 67 36 34 2d 72 65 67 36 34 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 23 00 00 00 00 00 00 00 ~ 0x23 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ and-reg64-imm8 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "and-reg64-imm8" (string literal with null) 61 6e 64 2d 72 65 67 36 34 2d 69 6d 6d 38 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 83 00 00 00 00 00 00 00 ~ 0x83 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ or-reg64-reg64 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "or-reg64-reg64" (string literal with null) 6f 72 2d 72 65 67 36 34 2d 72 65 67 36 34 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0b 00 00 00 00 00 00 00 ~ 0xb (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ or-reg64-imm8 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "or-reg64-imm8" (string literal with null) 6f 72 2d 72 65 67 36 34 2d 69 6d 6d 38 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 83 00 00 00 00 00 00 00 ~ 0x83 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ xor-reg64-reg64 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "xor-reg64-reg64" (string literal with null) 78 6f 72 2d 72 65 67 36 34 2d 72 65 67 36 34 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 33 00 00 00 00 00 00 00 ~ 0x33 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ not-reg64 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "not-reg64" (string literal with null) 6e 6f 74 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f7 00 00 00 00 00 00 00 ~ 0xf7 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rol-reg64-imm8 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rol-reg64-imm8" (string literal with null) 72 6f 6c 2d 72 65 67 36 34 2d 69 6d 6d 38 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) c1 00 00 00 00 00 00 00 ~ 0xc1 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rol-reg8-imm8 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rol-reg8-imm8" (string literal with null) 72 6f 6c 2d 72 65 67 38 2d 69 6d 6d 38 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) c0 00 00 00 00 00 00 00 ~ 0xc0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg8" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 38 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ ror-reg64-imm8 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "ror-reg64-imm8" (string literal with null) 72 6f 72 2d 72 65 67 36 34 2d 69 6d 6d 38 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) c1 00 00 00 00 00 00 00 ~ 0xc1 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ ror-reg8-imm8 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "ror-reg8-imm8" (string literal with null) 72 6f 72 2d 72 65 67 38 2d 69 6d 6d 38 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) c0 00 00 00 00 00 00 00 ~ 0xc0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ cmp-reg64-reg64 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "cmp-reg64-reg64" (string literal with null) 63 6d 70 2d 72 65 67 36 34 2d 72 65 67 36 34 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 3b 00 00 00 00 00 00 00 ~ 0x3b (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ cmp-reg64-imm8 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "cmp-reg64-imm8" (string literal with null) 63 6d 70 2d 72 65 67 36 34 2d 69 6d 6d 38 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 83 00 00 00 00 00 00 00 ~ 0x83 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ test-reg64-reg64 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "test-reg64-reg64" (string literal with null) 74 65 73 74 2d 72 65 67 36 34 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 85 00 00 00 00 00 00 00 ~ 0x85 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ set-reg8-cc is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "set-reg8-cc" (string literal with null) 73 65 74 2d 72 65 67 38 2d 63 63 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0f 00 00 00 00 00 00 00 ~ 0xf (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "condition-code" (string literal with null) 63 6f 6e 64 69 74 69 6f 6e 2d 63 6f 64 65 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 90 00 00 00 00 00 00 00 ~ 0x90 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "opcodecc" (string literal with null) 6f 70 63 6f 64 65 63 63 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg8" (string literal with null) 72 65 67 38 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "modrm" (string literal with null) 6d 6f 64 72 6d 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ jmp-cc-rel-imm8 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "jmp-cc-rel-imm8" (string literal with null) 6a 6d 70 2d 63 63 2d 72 65 6c 2d 69 6d 6d 38 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "condition-code" (string literal with null) 63 6f 6e 64 69 74 69 6f 6e 2d 63 6f 64 65 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 70 00 00 00 00 00 00 00 ~ 0x70 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "opcodecc" (string literal with null) 6f 70 63 6f 64 65 63 63 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ jmp-cc-rel-imm32 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "jmp-cc-rel-imm32" (string literal with null) 6a 6d 70 2d 63 63 2d 72 65 6c 2d 69 6d 6d 33 32 00 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0f 00 00 00 00 00 00 00 ~ 0xf (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "condition-code" (string literal with null) 63 6f 6e 64 69 74 69 6f 6e 2d 63 6f 64 65 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 70 00 00 00 00 00 00 00 ~ 0x70 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "opcodecc" (string literal with null) 6f 70 63 6f 64 65 63 63 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack32" (string literal with null) 70 61 63 6b 33 32 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ jmp-abs-indirect-reg64 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "jmp-abs-indirect-reg64" (string literal with null) 6a 6d 70 2d 61 62 73 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ff 00 00 00 00 00 00 00 ~ 0xff (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-indirect-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ jmp-rel-imm8 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "jmp-rel-imm8" (string literal with null) 6a 6d 70 2d 72 65 6c 2d 69 6d 6d 38 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) eb 00 00 00 00 00 00 00 ~ 0xeb (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ jmp-rel-imm32 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "jmp-rel-imm32" (string literal with null) 6a 6d 70 2d 72 65 6c 2d 69 6d 6d 33 32 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) e9 00 00 00 00 00 00 00 ~ 0xe9 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack32" (string literal with null) 70 61 63 6b 33 32 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ call-rel-imm32 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "call-rel-imm32" (string literal with null) 63 61 6c 6c 2d 72 65 6c 2d 69 6d 6d 33 32 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) e8 00 00 00 00 00 00 00 ~ 0xe8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack32" (string literal with null) 70 61 63 6b 33 32 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ ret is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "ret" (string literal with null) 72 65 74 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) c3 00 00 00 00 00 00 00 ~ 0xc3 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ pack-next is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack-next" (string literal with null) 70 61 63 6b 2d 6e 65 78 74 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lods64" (string literal with null) 6c 6f 64 73 36 34 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rax" (string literal with null) 3a 72 61 78 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "jmp-abs-indirect-reg64" (string literal with null) 6a 6d 70 2d 61 62 73 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ pack-beforenext is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack-beforenext" (string literal with null) 70 61 63 6b 2d 62 65 66 6f 72 65 6e 65 78 74 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rax" (string literal with null) 3a 72 61 78 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-reg64-imm64" (string literal with null) 6d 6f 76 2d 72 65 67 36 34 2d 69 6d 6d 36 34 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rax" (string literal with null) 3a 72 61 78 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "jmp-abs-indirect-reg64" (string literal with null) 6a 6d 70 2d 61 62 73 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ pack-pushcontrol is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack-pushcontrol" (string literal with null) 70 61 63 6b 2d 70 75 73 68 63 6f 6e 74 72 6f 6c 00 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rbp" (string literal with null) 3a 72 62 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f8 ff ff ff ff ff ff ff ~ 0xfffffffffffffff8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rbp" (string literal with null) 3a 72 62 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lea-reg64-disp8-reg64" (string literal with null) 6c 65 61 2d 72 65 67 36 34 2d 64 69 73 70 38 2d 72 65 67 36 34 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rbp" (string literal with null) 3a 72 62 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-disp8-reg64-reg64" (string literal with null) 6d 6f 76 2d 64 69 73 70 38 2d 72 65 67 36 34 2d 72 65 67 36 34 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ pack-popcontrol is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack-popcontrol" (string literal with null) 70 61 63 6b 2d 70 6f 70 63 6f 6e 74 72 6f 6c 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rbp" (string literal with null) 3a 72 62 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-reg64-disp8-reg64" (string literal with null) 6d 6f 76 2d 72 65 67 36 34 2d 64 69 73 70 38 2d 72 65 67 36 34 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rbp" (string literal with null) 3a 72 62 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rbp" (string literal with null) 3a 72 62 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lea-reg64-disp8-reg64" (string literal with null) 6c 65 61 2d 72 65 67 36 34 2d 64 69 73 70 38 2d 72 65 67 36 34 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ log-offset is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-offset" (string literal with null) 6c 6f 67 2d 6f 66 66 73 65 74 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 01 00 00 00 00 00 ~ 0x10000 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ log-load-log is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-log" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 6c 6f 67 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-offset" (string literal with null) 6c 6f 67 2d 6f 66 66 73 65 74 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ log-load-s0 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-s0" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 73 30 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-offset" (string literal with null) 6c 6f 67 2d 6f 66 66 73 65 74 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ log-load-r0 is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-r0" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 72 30 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-offset" (string literal with null) 6c 6f 67 2d 6f 66 66 73 65 74 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ log-load-latest is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-latest" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 6c 61 74 65 73 74 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-offset" (string literal with null) 6c 6f 67 2d 6f 66 66 73 65 74 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ log-load-here is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-offset" (string literal with null) 6c 6f 67 2d 6f 66 66 73 65 74 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ log-load-find is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-find" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 66 69 6e 64 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-latest" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 6c 61 74 65 73 74 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find-in" (string literal with null) 66 69 6e 64 2d 69 6e 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ log-load-find-execution-token is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-find-execution-token" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 66 69 6e 64 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-find" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 66 69 6e 64 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "No such word: " (string literal with null) 4e 6f 20 73 75 63 68 20 77 6f 72 64 3a 20 00 00 ~ (alignment padding) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "newline" (string literal with null) 6e 65 77 6c 69 6e 65 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if-else 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) e0 ff 04 08 00 00 00 00 ~ log-load-if-else (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ log-load-create is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-create" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 72 65 61 74 65 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "stringlen" (string literal with null) 73 74 72 69 6e 67 6c 65 6e 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pick" (string literal with null) 70 69 63 6b 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "memmove" (string literal with null) 6d 65 6d 6d 6f 76 65 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "over" (string literal with null) 6f 76 65 72 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pick" (string literal with null) 70 69 63 6b 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-latest" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 6c 61 74 65 73 74 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack64" (string literal with null) 70 61 63 6b 36 34 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "packalign" (string literal with null) 70 61 63 6b 61 6c 69 67 6e 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "over" (string literal with null) 6f 76 65 72 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pick" (string literal with null) 70 69 63 6b 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-latest" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 6c 61 74 65 73 74 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "over" (string literal with null) 6f 76 65 72 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ log-load-self-codeword is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-self-codeword" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 73 65 6c 66 2d 63 6f 64 65 77 6f 72 64 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack64" (string literal with null) 70 61 63 6b 36 34 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ log-load-comma is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack64" (string literal with null) 70 61 63 6b 36 34 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ log-load-semicolon-assembly is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-semicolon-assembly" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 73 65 6d 69 63 6f 6c 6f 6e 2d 61 73 73 65 6d 62 6c 79 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack-next" (string literal with null) 70 61 63 6b 2d 6e 65 78 74 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "packalign" (string literal with null) 70 61 63 6b 61 6c 69 67 6e 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-latest" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 6c 61 74 65 73 74 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ log-load-variable is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-variable" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 76 61 72 69 61 62 6c 65 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-create" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 72 65 61 74 65 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack64" (string literal with null) 70 61 63 6b 36 34 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rax" (string literal with null) 3a 72 61 78 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-reg64-imm64" (string literal with null) 6d 6f 76 2d 72 65 67 36 34 2d 69 6d 6d 36 34 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rax" (string literal with null) 3a 72 61 78 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "push-reg64" (string literal with null) 70 75 73 68 2d 72 65 67 36 34 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack-next" (string literal with null) 70 61 63 6b 2d 6e 65 78 74 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "packalign" (string literal with null) 70 61 63 6b 61 6c 69 67 6e 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ log-load-keyword is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-keyword" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 6b 65 79 77 6f 72 64 00 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-create" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 72 65 61 74 65 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack64" (string literal with null) 70 61 63 6b 36 34 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rax" (string literal with null) 3a 72 61 78 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-reg64-imm64" (string literal with null) 6d 6f 76 2d 72 65 67 36 34 2d 69 6d 6d 36 34 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rax" (string literal with null) 3a 72 61 78 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "push-reg64" (string literal with null) 70 75 73 68 2d 72 65 67 36 34 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack-next" (string literal with null) 70 61 63 6b 2d 6e 65 78 74 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "packalign" (string literal with null) 70 61 63 6b 61 6c 69 67 6e 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ log-load-comma-string is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma-string" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 2d 73 74 72 69 6e 67 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "packstring" (string literal with null) 70 61 63 6b 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "packalign" (string literal with null) 70 61 63 6b 61 6c 69 67 6e 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ log-load-left-curly-brace is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-left-curly-brace" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 6c 65 66 74 2d 63 75 72 6c 79 2d 62 72 61 63 65 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ log-load-right-curly-brace is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-right-curly-brace" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 72 69 67 68 74 2d 63 75 72 6c 79 2d 62 72 61 63 65 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ log-load-if is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-if" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 69 66 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "memmove" (string literal with null) 6d 65 6d 6d 6f 76 65 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-find" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 66 69 6e 64 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-find" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 66 69 6e 64 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "0branch" (string literal with null) 30 62 72 61 6e 63 68 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-find" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 66 69 6e 64 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ log-load-unless is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-unless" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 75 6e 6c 65 73 73 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "memmove" (string literal with null) 6d 65 6d 6d 6f 76 65 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-find" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 66 69 6e 64 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-find" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 66 69 6e 64 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "0branch" (string literal with null) 30 62 72 61 6e 63 68 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-find" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 66 69 6e 64 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ log-load-if-else is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-if-else" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 69 66 2d 65 6c 73 65 00 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "memmove" (string literal with null) 6d 65 6d 6d 6f 76 65 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pick" (string literal with null) 70 69 63 6b 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pick" (string literal with null) 70 69 63 6b 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "memmove" (string literal with null) 6d 65 6d 6d 6f 76 65 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-find" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 66 69 6e 64 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-find" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 66 69 6e 64 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "0branch" (string literal with null) 30 62 72 61 6e 63 68 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-find" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 66 69 6e 64 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "branch" (string literal with null) 62 72 61 6e 63 68 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-find" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 66 69 6e 64 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ log-load-forever is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-forever" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 66 6f 72 65 76 65 72 00 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "branch" (string literal with null) 62 72 61 6e 63 68 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-find" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 66 69 6e 64 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ff ff ff ff ff ff ff ff ~ 0xffffffffffffffff (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ log-load-while is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-while" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 77 68 69 6c 65 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "memmove" (string literal with null) 6d 65 6d 6d 6f 76 65 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-find" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 66 69 6e 64 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-find" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 66 69 6e 64 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "0branch" (string literal with null) 30 62 72 61 6e 63 68 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-find" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 66 69 6e 64 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "branch" (string literal with null) 62 72 61 6e 63 68 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-find" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 66 69 6e 64 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ff ff ff ff ff ff ff ff ~ 0xffffffffffffffff (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ stack is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "stack" (string literal with null) 73 74 61 63 6b 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "s0" (string literal with null) 73 30 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "value@" (string literal with null) 76 61 6c 75 65 40 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "s0" (string literal with null) 73 30 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "space" (string literal with null) 73 70 61 63 65 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "." (string literal with null) 2e 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ while 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 88 04 05 08 00 00 00 00 ~ log-load-while (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "newline" (string literal with null) 6e 65 77 6c 69 6e 65 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ stackhex is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "stackhex" (string literal with null) 73 74 61 63 6b 68 65 78 00 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "s0" (string literal with null) 73 30 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "value@" (string literal with null) 76 61 6c 75 65 40 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "s0" (string literal with null) 73 30 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "space" (string literal with null) 73 70 61 63 65 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ".hex64" (string literal with null) 2e 68 65 78 36 34 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ while 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 88 04 05 08 00 00 00 00 ~ log-load-while (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "newline" (string literal with null) 6e 65 77 6c 69 6e 65 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ is-in-log is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-in-log" (string literal with null) 69 73 2d 69 6e 2d 6c 6f 67 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log" (string literal with null) 6c 6f 67 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "<=" (string literal with null) 3c 3d 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">" (string literal with null) 3e 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&&" (string literal with null) 26 26 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ oldest-entry is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "oldest-entry" (string literal with null) 6f 6c 64 65 73 74 2d 65 6e 74 72 79 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "latest" (string literal with null) 6c 61 74 65 73 74 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ while 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 88 04 05 08 00 00 00 00 ~ log-load-while (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ oldest-entry-in is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "oldest-entry-in" (string literal with null) 6f 6c 64 65 73 74 2d 65 6e 74 72 79 2d 69 6e 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ while 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 88 04 05 08 00 00 00 00 ~ log-load-while (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ next-newer-entry is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "next-newer-entry" (string literal with null) 6e 65 78 74 2d 6e 65 77 65 72 2d 65 6e 74 72 79 00 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "latest" (string literal with null) 6c 61 74 65 73 74 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2drop" (string literal with null) 32 64 72 6f 70 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ while 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 88 04 05 08 00 00 00 00 ~ log-load-while (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ next-newer-entry-in is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "next-newer-entry-in" (string literal with null) 6e 65 78 74 2d 6e 65 77 65 72 2d 65 6e 74 72 79 2d 69 6e 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2drop" (string literal with null) 32 64 72 6f 70 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ while 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 88 04 05 08 00 00 00 00 ~ log-load-while (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ guess-entry-end is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "guess-entry-end" (string literal with null) 67 75 65 73 73 2d 65 6e 74 72 79 2d 65 6e 64 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-flags@" (string literal with null) 65 6e 74 72 79 2d 66 6c 61 67 73 40 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 40 00 00 00 00 00 00 00 ~ 0x40 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 40 00 00 00 00 00 00 00 ~ 0x40 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "next-newer-entry" (string literal with null) 6e 65 78 74 2d 6e 65 77 65 72 2d 65 6e 74 72 79 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-in-log" (string literal with null) 69 73 2d 69 6e 2d 6c 6f 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if-else 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) e0 ff 04 08 00 00 00 00 ~ log-load-if-else (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ unless 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) c0 fd 04 08 00 00 00 00 ~ log-load-unless (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ containing-entry is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "containing-entry" (string literal with null) 63 6f 6e 74 61 69 6e 69 6e 67 2d 65 6e 74 72 79 00 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-in-log" (string literal with null) 69 73 2d 69 6e 2d 6c 6f 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ unless 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) c0 fd 04 08 00 00 00 00 ~ log-load-unless (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "latest" (string literal with null) 6c 61 74 65 73 74 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">" (string literal with null) 3e 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "over" (string literal with null) 6f 76 65 72 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-in-log" (string literal with null) 69 73 2d 69 6e 2d 6c 6f 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&&" (string literal with null) 26 26 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if-else 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) e0 ff 04 08 00 00 00 00 ~ log-load-if-else (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ while 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 88 04 05 08 00 00 00 00 ~ log-load-while (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ is-assembly-word is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-assembly-word" (string literal with null) 69 73 2d 61 73 73 65 6d 62 6c 79 2d 77 6f 72 64 00 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ is-docol-itself is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-docol-itself" (string literal with null) 69 73 2d 64 6f 63 6f 6c 2d 69 74 73 65 6c 66 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-name" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 6e 61 6d 65 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "stringcmp" (string literal with null) 73 74 72 69 6e 67 63 6d 70 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ is-docol-codeword is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-docol-codeword" (string literal with null) 69 73 2d 64 6f 63 6f 6c 2d 63 6f 64 65 77 6f 72 64 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-in-log" (string literal with null) 69 73 2d 69 6e 2d 6c 6f 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ unless 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) c0 fd 04 08 00 00 00 00 ~ log-load-unless (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "containing-entry" (string literal with null) 63 6f 6e 74 61 69 6e 69 6e 67 2d 65 6e 74 72 79 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-docol-itself" (string literal with null) 69 73 2d 64 6f 63 6f 6c 2d 69 74 73 65 6c 66 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "next-newer-entry" (string literal with null) 6e 65 78 74 2d 6e 65 77 65 72 2d 65 6e 74 72 79 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-docol-itself" (string literal with null) 69 73 2d 64 6f 63 6f 6c 2d 69 74 73 65 6c 66 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if-else 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) e0 ff 04 08 00 00 00 00 ~ log-load-if-else (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ is-docol-interpreted-word is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-docol-interpreted-word" (string literal with null) 69 73 2d 64 6f 63 6f 6c 2d 69 6e 74 65 72 70 72 65 74 65 64 2d 77 6f 72 64 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-assembly-word" (string literal with null) 69 73 2d 61 73 73 65 6d 62 6c 79 2d 77 6f 72 64 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-docol-codeword" (string literal with null) 69 73 2d 64 6f 63 6f 6c 2d 63 6f 64 65 77 6f 72 64 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ is-codeword-pointer is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-codeword-pointer" (string literal with null) 69 73 2d 63 6f 64 65 77 6f 72 64 2d 70 6f 69 6e 74 65 72 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-in-log" (string literal with null) 69 73 2d 69 6e 2d 6c 6f 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ unless 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) c0 fd 04 08 00 00 00 00 ~ log-load-unless (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "containing-entry" (string literal with null) 63 6f 6e 74 61 69 6e 69 6e 67 2d 65 6e 74 72 79 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2drop" (string literal with null) 32 64 72 6f 70 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ unless 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) c0 fd 04 08 00 00 00 00 ~ log-load-unless (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ indent is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "indent" (string literal with null) 69 6e 64 65 6e 74 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "space" (string literal with null) 73 70 61 63 65 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "1-" (string literal with null) 31 2d 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ while 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 88 04 05 08 00 00 00 00 ~ log-load-while (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ word-heading is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "word-heading" (string literal with null) 77 6f 72 64 2d 68 65 61 64 69 6e 67 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-name" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 6e 61 6d 65 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "space" (string literal with null) 73 70 61 63 65 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "stringlen" (string literal with null) 73 74 72 69 6e 67 6c 65 6e 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "1+" (string literal with null) 31 2b 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 36 00 00 00 00 00 00 00 ~ 0x36 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "max" (string literal with null) 6d 61 78 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "indent" (string literal with null) 69 6e 64 65 6e 74 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ".hex64" (string literal with null) 2e 68 65 78 36 34 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-flags@" (string literal with null) 65 6e 74 72 79 2d 66 6c 61 67 73 40 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "space" (string literal with null) 73 70 61 63 65 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 80 00 00 00 00 00 00 00 ~ 0x80 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "H" (string literal with null) 48 00 00 00 00 00 00 00 ~ (alignment padding) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 40 00 00 00 00 00 00 00 ~ 0x40 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "M" (string literal with null) 4d 00 00 00 00 00 00 00 ~ (alignment padding) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "I" (string literal with null) 49 00 00 00 00 00 00 00 ~ (alignment padding) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-assembly-word" (string literal with null) 69 73 2d 61 73 73 65 6d 62 6c 79 2d 77 6f 72 64 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ " asm" (string literal with null) 20 61 73 6d 00 00 00 00 ~ (alignment padding) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-docol-interpreted-word" (string literal with null) 69 73 2d 64 6f 63 6f 6c 2d 69 6e 74 65 72 70 72 65 74 65 64 2d 77 6f 72 64 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ " raw" (string literal with null) 20 72 61 77 00 00 00 00 ~ (alignment padding) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ unless 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) c0 fd 04 08 00 00 00 00 ~ log-load-unless (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if-else 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) e0 ff 04 08 00 00 00 00 ~ log-load-if-else (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "newline" (string literal with null) 6e 65 77 6c 69 6e 65 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ list-dictionary is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "list-dictionary" (string literal with null) 6c 69 73 74 2d 64 69 63 74 69 6f 6e 61 72 79 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "oldest-entry" (string literal with null) 6f 6c 64 65 73 74 2d 65 6e 74 72 79 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "word-heading" (string literal with null) 77 6f 72 64 2d 68 65 61 64 69 6e 67 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "next-newer-entry" (string literal with null) 6e 65 78 74 2d 6e 65 77 65 72 2d 65 6e 74 72 79 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ while 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 88 04 05 08 00 00 00 00 ~ log-load-while (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ is-printable is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-printable" (string literal with null) 69 73 2d 70 72 69 6e 74 61 62 6c 65 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 20 00 00 00 00 00 00 00 ~ 0x20 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "<=" (string literal with null) 3c 3d 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 7f 00 00 00 00 00 00 00 ~ 0x7f (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">" (string literal with null) 3e 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&&" (string literal with null) 26 26 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ hexdump-row is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "hexdump-row" (string literal with null) 68 65 78 64 75 6d 70 2d 72 6f 77 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "indent" (string literal with null) 69 6e 64 65 6e 74 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ".hex32" (string literal with null) 2e 68 65 78 33 32 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 10 00 00 00 00 00 00 00 ~ 0x10 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">" (string literal with null) 3e 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "space" (string literal with null) 73 70 61 63 65 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "space" (string literal with null) 73 70 61 63 65 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pick" (string literal with null) 70 69 63 6b 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "<=" (string literal with null) 3c 3d 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pick" (string literal with null) 70 69 63 6b 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">" (string literal with null) 3e 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&&" (string literal with null) 26 26 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "8@" (string literal with null) 38 40 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ".hex8" (string literal with null) 2e 68 65 78 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "space" (string literal with null) 73 70 61 63 65 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "space" (string literal with null) 73 70 61 63 65 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if-else 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) e0 ff 04 08 00 00 00 00 ~ log-load-if-else (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "1+" (string literal with null) 31 2b 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ while 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 88 04 05 08 00 00 00 00 ~ log-load-while (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "indent" (string literal with null) 69 6e 64 65 6e 74 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "|" (string literal with null) 7c 00 00 00 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 10 00 00 00 00 00 00 00 ~ 0x10 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">" (string literal with null) 3e 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pick" (string literal with null) 70 69 63 6b 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "<=" (string literal with null) 3c 3d 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pick" (string literal with null) 70 69 63 6b 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">" (string literal with null) 3e 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&&" (string literal with null) 26 26 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "8@" (string literal with null) 38 40 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-printable" (string literal with null) 69 73 2d 70 72 69 6e 74 61 62 6c 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "value@" (string literal with null) 76 61 6c 75 65 40 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "." (string literal with null) 2e 00 00 00 00 00 00 00 ~ (alignment padding) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 09 00 00 00 00 00 00 00 ~ 0x9 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 09 00 00 00 00 00 00 00 ~ 0x9 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if-else 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 09 00 00 00 00 00 00 00 ~ 0x9 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) e0 ff 04 08 00 00 00 00 ~ log-load-if-else (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "space" (string literal with null) 73 70 61 63 65 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if-else 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) e0 ff 04 08 00 00 00 00 ~ log-load-if-else (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "1+" (string literal with null) 31 2b 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ while 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 88 04 05 08 00 00 00 00 ~ log-load-while (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "|" (string literal with null) 7c 00 00 00 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "newline" (string literal with null) 6e 65 77 6c 69 6e 65 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "ndrop" (string literal with null) 6e 64 72 6f 70 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ hexdump-between is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "hexdump-between" (string literal with null) 68 65 78 64 75 6d 70 2d 62 65 74 77 65 65 6e 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 10 00 00 00 00 00 00 00 ~ 0x10 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "1-" (string literal with null) 31 2d 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "invert" (string literal with null) 69 6e 76 65 72 74 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pick" (string literal with null) 70 69 63 6b 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">" (string literal with null) 3e 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3dup" (string literal with null) 33 64 75 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "hexdump-row" (string literal with null) 68 65 78 64 75 6d 70 2d 72 6f 77 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 10 00 00 00 00 00 00 00 ~ 0x10 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ while 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 88 04 05 08 00 00 00 00 ~ log-load-while (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "ndrop" (string literal with null) 6e 64 72 6f 70 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ hexdump-from is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "hexdump-from" (string literal with null) 68 65 78 64 75 6d 70 2d 66 72 6f 6d 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "hexdump-between" (string literal with null) 68 65 78 64 75 6d 70 2d 62 65 74 77 65 65 6e 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ hexdump is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "hexdump" (string literal with null) 68 65 78 64 75 6d 70 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 40 00 00 00 00 00 00 00 ~ 0x40 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "hexdump-from" (string literal with null) 68 65 78 64 75 6d 70 2d 66 72 6f 6d 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ describe-hex is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "describe-hex" (string literal with null) 64 65 73 63 72 69 62 65 2d 68 65 78 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "word-heading" (string literal with null) 77 6f 72 64 2d 68 65 61 64 69 6e 67 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "guess-entry-end" (string literal with null) 67 75 65 73 73 2d 65 6e 74 72 79 2d 65 6e 64 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "hexdump-between" (string literal with null) 68 65 78 64 75 6d 70 2d 62 65 74 77 65 65 6e 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ describe-docol is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "describe-docol" (string literal with null) 64 65 73 63 72 69 62 65 2d 64 6f 63 6f 6c 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "word-heading" (string literal with null) 77 6f 72 64 2d 68 65 61 64 69 6e 67 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "guess-entry-end" (string literal with null) 67 75 65 73 73 2d 65 6e 74 72 79 2d 65 6e 64 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "<" (string literal with null) 3c 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "space" (string literal with null) 73 70 61 63 65 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-codeword-pointer" (string literal with null) 69 73 2d 63 6f 64 65 77 6f 72 64 2d 70 6f 69 6e 74 65 72 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "execution-token-to-entry" (string literal with null) 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 2d 74 6f 2d 65 6e 74 72 79 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-name" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 6e 61 6d 65 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "." (string literal with null) 2e 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if-else 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) e0 ff 04 08 00 00 00 00 ~ log-load-if-else (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ while 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 88 04 05 08 00 00 00 00 ~ log-load-while (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "newline" (string literal with null) 6e 65 77 6c 69 6e 65 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ describe is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "describe" (string literal with null) 64 65 73 63 72 69 62 65 00 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-docol-interpreted-word" (string literal with null) 69 73 2d 64 6f 63 6f 6c 2d 69 6e 74 65 72 70 72 65 74 65 64 2d 77 6f 72 64 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "describe-docol" (string literal with null) 64 65 73 63 72 69 62 65 2d 64 6f 63 6f 6c 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "describe-hex" (string literal with null) 64 65 73 63 72 69 62 65 2d 68 65 78 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if-else 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) e0 ff 04 08 00 00 00 00 ~ log-load-if-else (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ describe-all is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "describe-all" (string literal with null) 64 65 73 63 72 69 62 65 2d 61 6c 6c 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "oldest-entry" (string literal with null) 6f 6c 64 65 73 74 2d 65 6e 74 72 79 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "describe" (string literal with null) 64 65 73 63 72 69 62 65 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "next-newer-entry" (string literal with null) 6e 65 78 74 2d 6e 65 77 65 72 2d 65 6e 74 72 79 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ while 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 88 04 05 08 00 00 00 00 ~ log-load-while (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ describe-compilation is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "describe-compilation" (string literal with null) 64 65 73 63 72 69 62 65 2d 63 6f 6d 70 69 6c 61 74 69 6f 6e 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "compilation in progress" (string literal with null) 63 6f 6d 70 69 6c 61 74 69 6f 6e 20 69 6e 20 70 72 6f 67 72 65 73 73 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "newline" (string literal with null) 6e 65 77 6c 69 6e 65 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "latest" (string literal with null) 6c 61 74 65 73 74 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "hexdump" (string literal with null) 68 65 78 64 75 6d 70 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "newline" (string literal with null) 6e 65 77 6c 69 6e 65 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ " here " (string literal with null) 20 20 68 65 72 65 20 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ".hex64" (string literal with null) 2e 68 65 78 36 34 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "newline" (string literal with null) 6e 65 77 6c 69 6e 65 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ " latest " (string literal with null) 20 20 6c 61 74 65 73 74 20 00 00 00 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "latest" (string literal with null) 6c 61 74 65 73 74 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ".hex64" (string literal with null) 2e 68 65 78 36 34 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "newline" (string literal with null) 6e 65 77 6c 69 6e 65 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ " name of latest: " (string literal with null) 20 20 6e 61 6d 65 20 6f 66 20 6c 61 74 65 73 74 3a 20 00 00 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "latest" (string literal with null) 6c 61 74 65 73 74 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-name" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 6e 61 6d 65 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "newline" (string literal with null) 6e 65 77 6c 69 6e 65 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "newline" (string literal with null) 6e 65 77 6c 69 6e 65 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ symbolize-pointer is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "symbolize-pointer" (string literal with null) 73 79 6d 62 6f 6c 69 7a 65 2d 70 6f 69 6e 74 65 72 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-in-log" (string literal with null) 69 73 2d 69 6e 2d 6c 6f 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "containing-entry" (string literal with null) 63 6f 6e 74 61 69 6e 69 6e 67 2d 65 6e 74 72 79 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-in-log" (string literal with null) 69 73 2d 69 6e 2d 6c 6f 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-name" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 6e 61 6d 65 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pick" (string literal with null) 70 69 63 6b 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">=" (string literal with null) 3e 3d 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "." (string literal with null) 2e 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if-else 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) e0 ff 04 08 00 00 00 00 ~ log-load-if-else (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":" (string literal with null) 3a 00 00 00 00 00 00 00 ~ (alignment padding) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "." (string literal with null) 2e 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if-else 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) e0 ff 04 08 00 00 00 00 ~ log-load-if-else (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if-else 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) e0 ff 04 08 00 00 00 00 ~ log-load-if-else (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "0x" (string literal with null) 30 78 00 00 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ".hex64" (string literal with null) 2e 68 65 78 36 34 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ list-callers is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "list-callers" (string literal with null) 6c 69 73 74 2d 63 61 6c 6c 65 72 73 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "control@" (string literal with null) 63 6f 6e 74 72 6f 6c 40 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "r0" (string literal with null) 72 30 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "<" (string literal with null) 3c 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "control@" (string literal with null) 63 6f 6e 74 72 6f 6c 40 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log" (string literal with null) 6c 6f 67 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">" (string literal with null) 3e 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "||" (string literal with null) 7c 7c 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "control stack pointer out of range: " (string literal with null) 63 6f 6e 74 72 6f 6c 20 73 74 61 63 6b 20 70 6f 69 6e 74 65 72 20 6f 75 74 20 6f 66 20 72 61 6e 67 65 3a 20 00 00 00 00 ~ (alignment padding) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "control@" (string literal with null) 63 6f 6e 74 72 6f 6c 40 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ".hex64" (string literal with null) 2e 68 65 78 36 34 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "newline" (string literal with null) 6e 65 77 6c 69 6e 65 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "control@" (string literal with null) 63 6f 6e 74 72 6f 6c 40 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "r0" (string literal with null) 72 30 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">" (string literal with null) 3e 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "symbolize-pointer" (string literal with null) 73 79 6d 62 6f 6c 69 7a 65 2d 70 6f 69 6e 74 65 72 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "newline" (string literal with null) 6e 65 77 6c 69 6e 65 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ while 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 88 04 05 08 00 00 00 00 ~ log-load-while (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ bye is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "bye" (string literal with null) 62 79 65 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sys-exit" (string literal with null) 73 79 73 2d 65 78 69 74 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ forget is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "forget" (string literal with null) 66 6f 72 67 65 74 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "latest" (string literal with null) 6c 61 74 65 73 74 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ , is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack64" (string literal with null) 70 61 63 6b 36 34 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ make-immediate is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-immediate" (string literal with null) 6d 61 6b 65 2d 69 6d 6d 65 64 69 61 74 65 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "latest" (string literal with null) 6c 61 74 65 73 74 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-flags@" (string literal with null) 65 6e 74 72 79 2d 66 6c 61 67 73 40 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "|" (string literal with null) 7c 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-flags!" (string literal with null) 65 6e 74 72 79 2d 66 6c 61 67 73 21 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ make-hidden is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-hidden" (string literal with null) 6d 61 6b 65 2d 68 69 64 64 65 6e 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "latest" (string literal with null) 6c 61 74 65 73 74 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-flags@" (string literal with null) 65 6e 74 72 79 2d 66 6c 61 67 73 40 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 80 00 00 00 00 00 00 00 ~ 0x80 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "|" (string literal with null) 7c 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-flags!" (string literal with null) 65 6e 74 72 79 2d 66 6c 61 67 73 21 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ make-visible is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-visible" (string literal with null) 6d 61 6b 65 2d 76 69 73 69 62 6c 65 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "latest" (string literal with null) 6c 61 74 65 73 74 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-flags@" (string literal with null) 65 6e 74 72 79 2d 66 6c 61 67 73 40 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 80 00 00 00 00 00 00 00 ~ 0x80 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "invert" (string literal with null) 69 6e 76 65 72 74 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-flags!" (string literal with null) 65 6e 74 72 79 2d 66 6c 61 67 73 21 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ make-metadata is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-metadata" (string literal with null) 6d 61 6b 65 2d 6d 65 74 61 64 61 74 61 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "latest" (string literal with null) 6c 61 74 65 73 74 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-flags@" (string literal with null) 65 6e 74 72 79 2d 66 6c 61 67 73 40 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 40 00 00 00 00 00 00 00 ~ 0x40 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "|" (string literal with null) 7c 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-flags!" (string literal with null) 65 6e 74 72 79 2d 66 6c 61 67 73 21 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ recurse is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "recurse" (string literal with null) 72 65 63 75 72 73 65 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "latest" (string literal with null) 6c 61 74 65 73 74 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-immediate" (string literal with null) 6d 61 6b 65 2d 69 6d 6d 65 64 69 61 74 65 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) ~ find is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "latest" (string literal with null) 6c 61 74 65 73 74 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find-in" (string literal with null) 66 69 6e 64 2d 69 6e 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ allocate is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "allocate" (string literal with null) 61 6c 6c 6f 63 61 74 65 00 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "packalign" (string literal with null) 70 61 63 6b 61 6c 69 67 6e 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ allocate-string is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "allocate-string" (string literal with null) 61 6c 6c 6f 63 61 74 65 2d 73 74 72 69 6e 67 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "stringlen" (string literal with null) 73 74 72 69 6e 67 6c 65 6e 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "1+" (string literal with null) 31 2b 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "packalign" (string literal with null) 70 61 63 6b 61 6c 69 67 6e 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ create is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "create" (string literal with null) 63 72 65 61 74 65 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "stringlen" (string literal with null) 73 74 72 69 6e 67 6c 65 6e 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "memmove" (string literal with null) 6d 65 6d 6d 6f 76 65 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "latest" (string literal with null) 6c 61 74 65 73 74 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack64" (string literal with null) 70 61 63 6b 36 34 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "packalign" (string literal with null) 70 61 63 6b 61 6c 69 67 6e 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "latest" (string literal with null) 6c 61 74 65 73 74 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ create-in is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "create-in" (string literal with null) 63 72 65 61 74 65 2d 69 6e 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack64" (string literal with null) 70 61 63 6b 36 34 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "packstring" (string literal with null) 70 61 63 6b 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "packalign" (string literal with null) 70 61 63 6b 61 6c 69 67 6e 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ self-codeword is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "self-codeword" (string literal with null) 73 65 6c 66 2d 63 6f 64 65 77 6f 72 64 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ variable is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "variable" (string literal with null) 76 61 72 69 61 62 6c 65 00 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "create" (string literal with null) 63 72 65 61 74 65 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "self-codeword" (string literal with null) 73 65 6c 66 2d 63 6f 64 65 77 6f 72 64 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rax" (string literal with null) 3a 72 61 78 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-reg64-imm64" (string literal with null) 6d 6f 76 2d 72 65 67 36 34 2d 69 6d 6d 36 34 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rax" (string literal with null) 3a 72 61 78 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "push-reg64" (string literal with null) 70 75 73 68 2d 72 65 67 36 34 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack-next" (string literal with null) 70 61 63 6b 2d 6e 65 78 74 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "packalign" (string literal with null) 70 61 63 6b 61 6c 69 67 6e 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ keyword is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "keyword" (string literal with null) 6b 65 79 77 6f 72 64 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "create" (string literal with null) 63 72 65 61 74 65 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack64" (string literal with null) 70 61 63 6b 36 34 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rax" (string literal with null) 3a 72 61 78 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-reg64-imm64" (string literal with null) 6d 6f 76 2d 72 65 67 36 34 2d 69 6d 6d 36 34 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rax" (string literal with null) 3a 72 61 78 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "push-reg64" (string literal with null) 70 75 73 68 2d 72 65 67 36 34 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack-next" (string literal with null) 70 61 63 6b 2d 6e 65 78 74 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "packalign" (string literal with null) 70 61 63 6b 61 6c 69 67 6e 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ literal is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "literal" (string literal with null) 6c 69 74 65 72 61 6c 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ buffer-physical-start is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-physical-start" (string literal with null) 62 75 66 66 65 72 2d 70 68 79 73 69 63 61 6c 2d 73 74 61 72 74 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ buffer-physical-length is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-physical-length" (string literal with null) 62 75 66 66 65 72 2d 70 68 79 73 69 63 61 6c 2d 6c 65 6e 67 74 68 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ buffer-logical-start is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-logical-start" (string literal with null) 62 75 66 66 65 72 2d 6c 6f 67 69 63 61 6c 2d 73 74 61 72 74 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ buffer-logical-length is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-logical-length" (string literal with null) 62 75 66 66 65 72 2d 6c 6f 67 69 63 61 6c 2d 6c 65 6e 67 74 68 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ buffer-file-descriptor is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-file-descriptor" (string literal with null) 62 75 66 66 65 72 2d 66 69 6c 65 2d 64 65 73 63 72 69 70 74 6f 72 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ input-buffer-refill is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "input-buffer-refill" (string literal with null) 69 6e 70 75 74 2d 62 75 66 66 65 72 2d 72 65 66 69 6c 6c 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ input-buffer-next-source is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "input-buffer-next-source" (string literal with null) 69 6e 70 75 74 2d 62 75 66 66 65 72 2d 6e 65 78 74 2d 73 6f 75 72 63 65 00 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ clear-buffer is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "clear-buffer" (string literal with null) 63 6c 65 61 72 2d 62 75 66 66 65 72 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-physical-start" (string literal with null) 62 75 66 66 65 72 2d 70 68 79 73 69 63 61 6c 2d 73 74 61 72 74 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-logical-start" (string literal with null) 62 75 66 66 65 72 2d 6c 6f 67 69 63 61 6c 2d 73 74 61 72 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-logical-length" (string literal with null) 62 75 66 66 65 72 2d 6c 6f 67 69 63 61 6c 2d 6c 65 6e 67 74 68 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ zero-input-buffer-metadata is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "zero-input-buffer-metadata" (string literal with null) 7a 65 72 6f 2d 69 6e 70 75 74 2d 62 75 66 66 65 72 2d 6d 65 74 61 64 61 74 61 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-physical-start" (string literal with null) 62 75 66 66 65 72 2d 70 68 79 73 69 63 61 6c 2d 73 74 61 72 74 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-physical-length" (string literal with null) 62 75 66 66 65 72 2d 70 68 79 73 69 63 61 6c 2d 6c 65 6e 67 74 68 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-logical-start" (string literal with null) 62 75 66 66 65 72 2d 6c 6f 67 69 63 61 6c 2d 73 74 61 72 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-logical-length" (string literal with null) 62 75 66 66 65 72 2d 6c 6f 67 69 63 61 6c 2d 6c 65 6e 67 74 68 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-file-descriptor" (string literal with null) 62 75 66 66 65 72 2d 66 69 6c 65 2d 64 65 73 63 72 69 70 74 6f 72 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ff ff ff ff ff ff ff ff ~ 0xffffffffffffffff (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "input-buffer-refill" (string literal with null) 69 6e 70 75 74 2d 62 75 66 66 65 72 2d 72 65 66 69 6c 6c 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "input-buffer-next-source" (string literal with null) 69 6e 70 75 74 2d 62 75 66 66 65 72 2d 6e 65 78 74 2d 73 6f 75 72 63 65 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ allocate-input-buffer-metadata is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "allocate-input-buffer-metadata" (string literal with null) 61 6c 6c 6f 63 61 74 65 2d 69 6e 70 75 74 2d 62 75 66 66 65 72 2d 6d 65 74 61 64 61 74 61 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "allocate" (string literal with null) 61 6c 6c 6f 63 61 74 65 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "zero-input-buffer-metadata" (string literal with null) 7a 65 72 6f 2d 69 6e 70 75 74 2d 62 75 66 66 65 72 2d 6d 65 74 61 64 61 74 61 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ allocate-input-buffer is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "allocate-input-buffer" (string literal with null) 61 6c 6c 6f 63 61 74 65 2d 69 6e 70 75 74 2d 62 75 66 66 65 72 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "allocate" (string literal with null) 61 6c 6c 6f 63 61 74 65 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "zero-input-buffer-metadata" (string literal with null) 7a 65 72 6f 2d 69 6e 70 75 74 2d 62 75 66 66 65 72 2d 6d 65 74 61 64 61 74 61 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-physical-start" (string literal with null) 62 75 66 66 65 72 2d 70 68 79 73 69 63 61 6c 2d 73 74 61 72 74 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-physical-length" (string literal with null) 62 75 66 66 65 72 2d 70 68 79 73 69 63 61 6c 2d 6c 65 6e 67 74 68 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "clear-buffer" (string literal with null) 63 6c 65 61 72 2d 62 75 66 66 65 72 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ attach-string-to-input-buffer is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "attach-string-to-input-buffer" (string literal with null) 61 74 74 61 63 68 2d 73 74 72 69 6e 67 2d 74 6f 2d 69 6e 70 75 74 2d 62 75 66 66 65 72 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-physical-start" (string literal with null) 62 75 66 66 65 72 2d 70 68 79 73 69 63 61 6c 2d 73 74 61 72 74 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-logical-start" (string literal with null) 62 75 66 66 65 72 2d 6c 6f 67 69 63 61 6c 2d 73 74 61 72 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "stringlen" (string literal with null) 73 74 72 69 6e 67 6c 65 6e 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-physical-length" (string literal with null) 62 75 66 66 65 72 2d 70 68 79 73 69 63 61 6c 2d 6c 65 6e 67 74 68 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-logical-length" (string literal with null) 62 75 66 66 65 72 2d 6c 6f 67 69 63 61 6c 2d 6c 65 6e 67 74 68 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ff ff ff ff ff ff ff ff ~ 0xffffffffffffffff (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-file-descriptor" (string literal with null) 62 75 66 66 65 72 2d 66 69 6c 65 2d 64 65 73 63 72 69 70 74 6f 72 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ consume-from is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "consume-from" (string literal with null) 63 6f 6e 73 75 6d 65 2d 66 72 6f 6d 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-logical-length" (string literal with null) 62 75 66 66 65 72 2d 6c 6f 67 69 63 61 6c 2d 6c 65 6e 67 74 68 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-logical-length" (string literal with null) 62 75 66 66 65 72 2d 6c 6f 67 69 63 61 6c 2d 6c 65 6e 67 74 68 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-physical-start" (string literal with null) 62 75 66 66 65 72 2d 70 68 79 73 69 63 61 6c 2d 73 74 61 72 74 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-physical-length" (string literal with null) 62 75 66 66 65 72 2d 70 68 79 73 69 63 61 6c 2d 6c 65 6e 67 74 68 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-logical-start" (string literal with null) 62 75 66 66 65 72 2d 6c 6f 67 69 63 61 6c 2d 73 74 61 72 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-physical-start" (string literal with null) 62 75 66 66 65 72 2d 70 68 79 73 69 63 61 6c 2d 73 74 61 72 74 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-logical-start" (string literal with null) 62 75 66 66 65 72 2d 6c 6f 67 69 63 61 6c 2d 73 74 61 72 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ peek-from is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "peek-from" (string literal with null) 70 65 65 6b 2d 66 72 6f 6d 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-logical-length" (string literal with null) 62 75 66 66 65 72 2d 6c 6f 67 69 63 61 6c 2d 6c 65 6e 67 74 68 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "input-buffer-refill" (string literal with null) 69 6e 70 75 74 2d 62 75 66 66 65 72 2d 72 65 66 69 6c 6c 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ unless 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) c0 fd 04 08 00 00 00 00 ~ log-load-unless (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "execute" (string literal with null) 65 78 65 63 75 74 65 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-logical-length" (string literal with null) 62 75 66 66 65 72 2d 6c 6f 67 69 63 61 6c 2d 6c 65 6e 67 74 68 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ unless 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) c0 fd 04 08 00 00 00 00 ~ log-load-unless (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ unless 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) c0 fd 04 08 00 00 00 00 ~ log-load-unless (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-logical-start" (string literal with null) 62 75 66 66 65 72 2d 6c 6f 67 69 63 61 6c 2d 73 74 61 72 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "8@" (string literal with null) 38 40 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ key-from is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "key-from" (string literal with null) 6b 65 79 2d 66 72 6f 6d 00 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "peek-from" (string literal with null) 70 65 65 6b 2d 66 72 6f 6d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "consume-from" (string literal with null) 63 6f 6e 73 75 6d 65 2d 66 72 6f 6d 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ normalize-buffer is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "normalize-buffer" (string literal with null) 6e 6f 72 6d 61 6c 69 7a 65 2d 62 75 66 66 65 72 00 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-logical-length" (string literal with null) 62 75 66 66 65 72 2d 6c 6f 67 69 63 61 6c 2d 6c 65 6e 67 74 68 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-physical-start" (string literal with null) 62 75 66 66 65 72 2d 70 68 79 73 69 63 61 6c 2d 73 74 61 72 74 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-logical-start" (string literal with null) 62 75 66 66 65 72 2d 6c 6f 67 69 63 61 6c 2d 73 74 61 72 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if-else 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) e0 ff 04 08 00 00 00 00 ~ log-load-if-else (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ compute-next-buffer-free-block is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "compute-next-buffer-free-block" (string literal with null) 63 6f 6d 70 75 74 65 2d 6e 65 78 74 2d 62 75 66 66 65 72 2d 66 72 65 65 2d 62 6c 6f 63 6b 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-physical-start" (string literal with null) 62 75 66 66 65 72 2d 70 68 79 73 69 63 61 6c 2d 73 74 61 72 74 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-physical-length" (string literal with null) 62 75 66 66 65 72 2d 70 68 79 73 69 63 61 6c 2d 6c 65 6e 67 74 68 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-logical-start" (string literal with null) 62 75 66 66 65 72 2d 6c 6f 67 69 63 61 6c 2d 73 74 61 72 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-logical-length" (string literal with null) 62 75 66 66 65 72 2d 6c 6f 67 69 63 61 6c 2d 6c 65 6e 67 74 68 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">=" (string literal with null) 3e 3d 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-physical-start" (string literal with null) 62 75 66 66 65 72 2d 70 68 79 73 69 63 61 6c 2d 73 74 61 72 74 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-logical-start" (string literal with null) 62 75 66 66 65 72 2d 6c 6f 67 69 63 61 6c 2d 73 74 61 72 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if-else 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) e0 ff 04 08 00 00 00 00 ~ log-load-if-else (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ refill-input-buffer-from-stream is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "refill-input-buffer-from-stream" (string literal with null) 72 65 66 69 6c 6c 2d 69 6e 70 75 74 2d 62 75 66 66 65 72 2d 66 72 6f 6d 2d 73 74 72 65 61 6d 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "normalize-buffer" (string literal with null) 6e 6f 72 6d 61 6c 69 7a 65 2d 62 75 66 66 65 72 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "compute-next-buffer-free-block" (string literal with null) 63 6f 6d 70 75 74 65 2d 6e 65 78 74 2d 62 75 66 66 65 72 2d 66 72 65 65 2d 62 6c 6f 63 6b 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "ndup" (string literal with null) 6e 64 75 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-file-descriptor" (string literal with null) 62 75 66 66 65 72 2d 66 69 6c 65 2d 64 65 73 63 72 69 70 74 6f 72 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sys-read" (string literal with null) 73 79 73 2d 72 65 61 64 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">" (string literal with null) 3e 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) fc ff ff ff ff ff ff ff ~ 0xfffffffffffffffc (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "Read error." (string literal with null) 52 65 61 64 20 65 72 72 6f 72 2e 00 00 00 00 00 ~ (alignment padding) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sys-exit" (string literal with null) 73 79 73 2d 65 78 69 74 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if-else 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) e0 ff 04 08 00 00 00 00 ~ log-load-if-else (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-logical-length" (string literal with null) 62 75 66 66 65 72 2d 6c 6f 67 69 63 61 6c 2d 6c 65 6e 67 74 68 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-logical-length" (string literal with null) 62 75 66 66 65 72 2d 6c 6f 67 69 63 61 6c 2d 6c 65 6e 67 74 68 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if-else 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) e0 ff 04 08 00 00 00 00 ~ log-load-if-else (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ forever 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) e0 03 05 08 00 00 00 00 ~ log-load-forever (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if-else 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) e0 ff 04 08 00 00 00 00 ~ log-load-if-else (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "main-input-buffer-metadata" (string literal with null) 6d 61 69 6e 2d 69 6e 70 75 74 2d 62 75 66 66 65 72 2d 6d 65 74 61 64 61 74 61 00 00 00 00 00 00 ~ (alignment padding) ~ create 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "main-input-buffer-metadata" (string literal with null) 6d 61 69 6e 2d 69 6e 70 75 74 2d 62 75 66 66 65 72 2d 6d 65 74 61 64 61 74 61 00 00 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 70 70 04 08 00 00 00 00 ~ entry-flags! (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "allocate-input-buffer-metadata" (string literal with null) 61 6c 6c 6f 63 61 74 65 2d 69 6e 70 75 74 2d 62 75 66 66 65 72 2d 6d 65 74 61 64 61 74 61 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "main-input-buffer" (string literal with null) 6d 61 69 6e 2d 69 6e 70 75 74 2d 62 75 66 66 65 72 00 00 00 00 00 00 00 ~ (alignment padding) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 60 f8 04 08 00 00 00 00 ~ log-load-variable (codeword pointer) ~ peek is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "peek" (string literal with null) 70 65 65 6b 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "main-input-buffer" (string literal with null) 6d 61 69 6e 2d 69 6e 70 75 74 2d 62 75 66 66 65 72 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "peek-from" (string literal with null) 70 65 65 6b 2d 66 72 6f 6d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ consume is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "consume" (string literal with null) 63 6f 6e 73 75 6d 65 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "main-input-buffer" (string literal with null) 6d 61 69 6e 2d 69 6e 70 75 74 2d 62 75 66 66 65 72 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "consume-from" (string literal with null) 63 6f 6e 73 75 6d 65 2d 66 72 6f 6d 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ key is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "key" (string literal with null) 6b 65 79 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "main-input-buffer" (string literal with null) 6d 61 69 6e 2d 69 6e 70 75 74 2d 62 75 66 66 65 72 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "key-from" (string literal with null) 6b 65 79 2d 66 72 6f 6d 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ unroll-past-string is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll-past-string" (string literal with null) 75 6e 72 6f 6c 6c 2d 70 61 73 74 2d 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "value@" (string literal with null) 76 61 6c 75 65 40 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 10 00 00 00 00 00 00 00 ~ 0x10 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "stringlen" (string literal with null) 73 74 72 69 6e 67 6c 65 6e 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "align-size" (string literal with null) 61 6c 69 67 6e 2d 73 69 7a 65 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "/%" (string literal with null) 2f 25 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ swap-past-string is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap-past-string" (string literal with null) 73 77 61 70 2d 70 61 73 74 2d 73 74 72 69 6e 67 00 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll-past-string" (string literal with null) 75 6e 72 6f 6c 6c 2d 70 61 73 74 2d 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ dropstring is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dropstring" (string literal with null) 64 72 6f 70 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "value@" (string literal with null) 76 61 6c 75 65 40 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "stringlen" (string literal with null) 73 74 72 69 6e 67 6c 65 6e 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "align-size" (string literal with null) 61 6c 69 67 6e 2d 73 69 7a 65 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "value@" (string literal with null) 76 61 6c 75 65 40 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "value!" (string literal with null) 76 61 6c 75 65 21 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ dropstring-with-result is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dropstring-with-result" (string literal with null) 64 72 6f 70 73 74 72 69 6e 67 2d 77 69 74 68 2d 72 65 73 75 6c 74 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap-past-string" (string literal with null) 73 77 61 70 2d 70 61 73 74 2d 73 74 72 69 6e 67 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dropstring" (string literal with null) 64 72 6f 70 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ accumulate-string is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "accumulate-string" (string literal with null) 61 63 63 75 6d 75 6c 61 74 65 2d 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "value@" (string literal with null) 76 61 6c 75 65 40 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "stringlen" (string literal with null) 73 74 72 69 6e 67 6c 65 6e 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "align-size" (string literal with null) 61 6c 69 67 6e 2d 73 69 7a 65 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ff 00 00 00 00 00 00 00 ~ 0xff (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "|" (string literal with null) 7c 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ unless 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) c0 fd 04 08 00 00 00 00 ~ log-load-unless (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 ff 00 00 00 00 00 00 ~ 0xff00 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 01 00 00 00 00 00 00 ~ 0x100 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "|" (string literal with null) 7c 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ unless 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) c0 fd 04 08 00 00 00 00 ~ log-load-unless (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 ff 00 00 00 00 00 ~ 0xff0000 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 01 00 00 00 00 00 ~ 0x10000 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "|" (string literal with null) 7c 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ unless 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) c0 fd 04 08 00 00 00 00 ~ log-load-unless (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 ff 00 00 00 00 ~ 0xff000000 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 01 00 00 00 00 ~ 0x1000000 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "|" (string literal with null) 7c 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ unless 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) c0 fd 04 08 00 00 00 00 ~ log-load-unless (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 ff 00 00 00 ~ 0xff00000000 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 01 00 00 00 ~ 0x100000000 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "|" (string literal with null) 7c 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ unless 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) c0 fd 04 08 00 00 00 00 ~ log-load-unless (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 ff 00 00 ~ 0xff0000000000 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 01 00 00 ~ 0x10000000000 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "|" (string literal with null) 7c 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ unless 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) c0 fd 04 08 00 00 00 00 ~ log-load-unless (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 ff 00 ~ 0xff000000000000 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 01 00 ~ 0x1000000000000 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "|" (string literal with null) 7c 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ unless 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) c0 fd 04 08 00 00 00 00 ~ log-load-unless (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 01 ~ 0x100000000000000 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "|" (string literal with null) 7c 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll-past-string" (string literal with null) 75 6e 72 6f 6c 6c 2d 70 61 73 74 2d 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ is-space is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-space" (string literal with null) 69 73 2d 73 70 61 63 65 00 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 20 00 00 00 00 00 00 00 ~ 0x20 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 09 00 00 00 00 00 00 00 ~ 0x9 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0b 00 00 00 00 00 00 00 ~ 0xb (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0c 00 00 00 00 00 00 00 ~ 0xc (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0d 00 00 00 00 00 00 00 ~ 0xd (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ is-alphanumeric is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-alphanumeric" (string literal with null) 69 73 2d 61 6c 70 68 61 6e 75 6d 65 72 69 63 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 30 00 00 00 00 00 00 00 ~ 0x30 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">" (string literal with null) 3e 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 39 00 00 00 00 00 00 00 ~ 0x39 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">=" (string literal with null) 3e 3d 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 41 00 00 00 00 00 00 00 ~ 0x41 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">" (string literal with null) 3e 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 5a 00 00 00 00 00 00 00 ~ 0x5a (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">=" (string literal with null) 3e 3d 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 61 00 00 00 00 00 00 00 ~ 0x61 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">" (string literal with null) 3e 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 7a 00 00 00 00 00 00 00 ~ 0x7a (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">=" (string literal with null) 3e 3d 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ word is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "word" (string literal with null) 77 6f 72 64 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "key" (string literal with null) 6b 65 79 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-space" (string literal with null) 69 73 2d 73 70 61 63 65 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ while 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 88 04 05 08 00 00 00 00 ~ log-load-while (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dropstring" (string literal with null) 64 72 6f 70 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "accumulate-string" (string literal with null) 61 63 63 75 6d 75 6c 61 74 65 2d 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "peek" (string literal with null) 70 65 65 6b 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-space" (string literal with null) 69 73 2d 73 70 61 63 65 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ unless 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) c0 fd 04 08 00 00 00 00 ~ log-load-unless (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "consume" (string literal with null) 63 6f 6e 73 75 6d 65 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "accumulate-string" (string literal with null) 61 63 63 75 6d 75 6c 61 74 65 2d 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ forever 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) e0 03 05 08 00 00 00 00 ~ log-load-forever (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ generalized-digit-value is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "generalized-digit-value" (string literal with null) 67 65 6e 65 72 61 6c 69 7a 65 64 2d 64 69 67 69 74 2d 76 61 6c 75 65 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 61 00 00 00 00 00 00 00 ~ 0x61 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "<=" (string literal with null) 3c 3d 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 61 00 00 00 00 00 00 00 ~ 0x61 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 41 00 00 00 00 00 00 00 ~ 0x41 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "<=" (string literal with null) 3c 3d 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 41 00 00 00 00 00 00 00 ~ 0x41 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 30 00 00 00 00 00 00 00 ~ 0x30 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ decode-generalized-digit is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "decode-generalized-digit" (string literal with null) 64 65 63 6f 64 65 2d 67 65 6e 65 72 61 6c 69 7a 65 64 2d 64 69 67 69 74 00 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-alphanumeric" (string literal with null) 69 73 2d 61 6c 70 68 61 6e 75 6d 65 72 69 63 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "generalized-digit-value" (string literal with null) 67 65 6e 65 72 61 6c 69 7a 65 64 2d 64 69 67 69 74 2d 76 61 6c 75 65 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">" (string literal with null) 3e 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ read-base-unsigned is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "read-base-unsigned" (string literal with null) 72 65 61 64 2d 62 61 73 65 2d 75 6e 73 69 67 6e 65 64 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unpack8" (string literal with null) 75 6e 70 61 63 6b 38 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "decode-generalized-digit" (string literal with null) 64 65 63 6f 64 65 2d 67 65 6e 65 72 61 6c 69 7a 65 64 2d 64 69 67 69 74 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unpack8" (string literal with null) 75 6e 70 61 63 6b 38 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "decode-generalized-digit" (string literal with null) 64 65 63 6f 64 65 2d 67 65 6e 65 72 61 6c 69 7a 65 64 2d 64 69 67 69 74 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ forever 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) e0 03 05 08 00 00 00 00 ~ log-load-forever (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ read-integer-unsigned is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "read-integer-unsigned" (string literal with null) 72 65 61 64 2d 69 6e 74 65 67 65 72 2d 75 6e 73 69 67 6e 65 64 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unpack8" (string literal with null) 75 6e 70 61 63 6b 38 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 30 00 00 00 00 00 00 00 ~ 0x30 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "read-base-unsigned" (string literal with null) 72 65 61 64 2d 62 61 73 65 2d 75 6e 73 69 67 6e 65 64 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unpack8" (string literal with null) 75 6e 70 61 63 6b 38 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 78 00 00 00 00 00 00 00 ~ 0x78 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 10 00 00 00 00 00 00 00 ~ 0x10 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "read-base-unsigned" (string literal with null) 72 65 61 64 2d 62 61 73 65 2d 75 6e 73 69 67 6e 65 64 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 6f 00 00 00 00 00 00 00 ~ 0x6f (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "read-base-unsigned" (string literal with null) 72 65 61 64 2d 62 61 73 65 2d 75 6e 73 69 67 6e 65 64 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 62 00 00 00 00 00 00 00 ~ 0x62 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "read-base-unsigned" (string literal with null) 72 65 61 64 2d 62 61 73 65 2d 75 6e 73 69 67 6e 65 64 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "read-base-unsigned" (string literal with null) 72 65 61 64 2d 62 61 73 65 2d 75 6e 73 69 67 6e 65 64 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ read-integer is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "read-integer" (string literal with null) 72 65 61 64 2d 69 6e 74 65 67 65 72 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unpack8" (string literal with null) 75 6e 70 61 63 6b 38 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 2d 00 00 00 00 00 00 00 ~ 0x2d (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "read-integer-unsigned" (string literal with null) 72 65 61 64 2d 69 6e 74 65 67 65 72 2d 75 6e 73 69 67 6e 65 64 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "read-integer-unsigned" (string literal with null) 72 65 61 64 2d 69 6e 74 65 67 65 72 2d 75 6e 73 69 67 6e 65 64 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ff ff ff ff ff ff ff ff ~ 0xffffffffffffffff (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ read-decimal is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "read-decimal" (string literal with null) 72 65 61 64 2d 64 65 63 69 6d 61 6c 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unpack8" (string literal with null) 75 6e 70 61 63 6b 38 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 2d 00 00 00 00 00 00 00 ~ 0x2d (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "read-base-unsigned" (string literal with null) 72 65 61 64 2d 62 61 73 65 2d 75 6e 73 69 67 6e 65 64 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "read-base-unsigned" (string literal with null) 72 65 61 64 2d 62 61 73 65 2d 75 6e 73 69 67 6e 65 64 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ff ff ff ff ff ff ff ff ~ 0xffffffffffffffff (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "interpreter-flags-storage" (string literal with null) 69 6e 74 65 72 70 72 65 74 65 72 2d 66 6c 61 67 73 2d 73 74 6f 72 61 67 65 00 00 00 00 00 00 00 ~ (alignment padding) ~ create 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-hidden" (string literal with null) 6d 61 6b 65 2d 68 69 64 64 65 6e 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "interpreter-flags" (string literal with null) 69 6e 74 65 72 70 72 65 74 65 72 2d 66 6c 61 67 73 00 00 00 00 00 00 00 ~ (alignment padding) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 60 f8 04 08 00 00 00 00 ~ log-load-variable (codeword pointer) ~ [ is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "[" (string literal with null) 5b 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "interpreter-flags" (string literal with null) 69 6e 74 65 72 70 72 65 74 65 72 2d 66 6c 61 67 73 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "invert" (string literal with null) 69 6e 76 65 72 74 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "interpreter-flags" (string literal with null) 69 6e 74 65 72 70 72 65 74 65 72 2d 66 6c 61 67 73 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-immediate" (string literal with null) 6d 61 6b 65 2d 69 6d 6d 65 64 69 61 74 65 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-hidden" (string literal with null) 6d 61 6b 65 2d 68 69 64 64 65 6e 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "latest" (string literal with null) 6c 61 74 65 73 74 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) ~ ] is defined here via the log-load transform. 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "]" (string literal with null) 5d 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "interpreter-flags" (string literal with null) 69 6e 74 65 72 70 72 65 74 65 72 2d 66 6c 61 67 73 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "|" (string literal with null) 7c 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "interpreter-flags" (string literal with null) 69 6e 74 65 72 70 72 65 74 65 72 2d 66 6c 61 67 73 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-hidden" (string literal with null) 6d 61 6b 65 2d 68 69 64 64 65 6e 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "latest" (string literal with null) 6c 61 74 65 73 74 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) ~ : is defined here via the log-load transform. 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":" (string literal with null) 3a 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "word" (string literal with null) 77 6f 72 64 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "value@" (string literal with null) 76 61 6c 75 65 40 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "create" (string literal with null) 63 72 65 61 74 65 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dropstring" (string literal with null) 64 72 6f 70 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-hidden" (string literal with null) 6d 61 6b 65 2d 68 69 64 64 65 6e 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) e8 6e 04 08 00 00 00 00 ~ entry-to-execution-token ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ ; is defined here via the log-load transform. 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ";" (string literal with null) 3b 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-visible" (string literal with null) 6d 61 6b 65 2d 76 69 73 69 62 6c 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 08 78 04 08 00 00 00 00 ~ over (codeword pointer) e8 6e 04 08 00 00 00 00 ~ entry-to-execution-token ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-immediate" (string literal with null) 6d 61 6b 65 2d 69 6d 6d 65 64 69 61 74 65 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-hidden" (string literal with null) 6d 61 6b 65 2d 68 69 64 64 65 6e 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "latest" (string literal with null) 6c 61 74 65 73 74 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) ~ ;asm is defined here via the log-load transform. 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ";asm" (string literal with null) 3b 61 73 6d 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack-next" (string literal with null) 70 61 63 6b 2d 6e 65 78 74 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "packalign" (string literal with null) 70 61 63 6b 61 6c 69 67 6e 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-visible" (string literal with null) 6d 61 6b 65 2d 76 69 73 69 62 6c 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "latest" (string literal with null) 6c 61 74 65 73 74 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 40 78 04 08 00 00 00 00 ~ pick (codeword pointer) e8 6e 04 08 00 00 00 00 ~ entry-to-execution-token ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-immediate" (string literal with null) 6d 61 6b 65 2d 69 6d 6d 65 64 69 61 74 65 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-hidden" (string literal with null) 6d 61 6b 65 2d 68 69 64 64 65 6e 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "latest" (string literal with null) 6c 61 74 65 73 74 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) ~ ' is defined here via the log-load transform. 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "'" (string literal with null) 27 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "word" (string literal with null) 77 6f 72 64 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "value@" (string literal with null) 76 61 6c 75 65 40 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dropstring-with-result" (string literal with null) 64 72 6f 70 73 74 72 69 6e 67 2d 77 69 74 68 2d 72 65 73 75 6c 74 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "interpreter-flags" (string literal with null) 69 6e 74 65 72 70 72 65 74 65 72 2d 66 6c 61 67 73 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "literal" (string literal with null) 6c 69 74 65 72 61 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-immediate" (string literal with null) 6d 61 6b 65 2d 69 6d 6d 65 64 69 61 74 65 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) ~ s" is defined here via the log-load transform. 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "s"" (string literal with null) 73 22 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "consume" (string literal with null) 63 6f 6e 73 75 6d 65 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "interpreter-flags" (string literal with null) 69 6e 74 65 72 70 72 65 74 65 72 2d 66 6c 61 67 73 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "literal" (string literal with null) 6c 69 74 65 72 61 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "key" (string literal with null) 6b 65 79 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 22 00 00 00 00 00 00 00 ~ 0x22 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&&" (string literal with null) 26 26 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "key" (string literal with null) 6b 65 79 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 09 00 00 00 00 00 00 00 ~ 0x9 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ while 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 09 00 00 00 00 00 00 00 ~ 0x9 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 88 04 05 08 00 00 00 00 ~ log-load-while (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "interpreter-flags" (string literal with null) 69 6e 74 65 72 70 72 65 74 65 72 2d 66 6c 61 67 73 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "packalign" (string literal with null) 70 61 63 6b 61 6c 69 67 6e 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 09 00 00 00 00 00 00 00 ~ 0x9 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if-else 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 09 00 00 00 00 00 00 00 ~ 0x9 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) e0 ff 04 08 00 00 00 00 ~ log-load-if-else (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-immediate" (string literal with null) 6d 61 6b 65 2d 69 6d 6d 65 64 69 61 74 65 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) ~ ." is defined here via the log-load transform. 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "."" (string literal with null) 2e 22 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "s"" (string literal with null) 73 22 00 00 00 00 00 00 ~ (alignment padding) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "execute" (string literal with null) 65 78 65 63 75 74 65 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "interpreter-flags" (string literal with null) 69 6e 74 65 72 70 72 65 74 65 72 2d 66 6c 61 67 73 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "literal" (string literal with null) 6c 69 74 65 72 61 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 09 00 00 00 00 00 00 00 ~ 0x9 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if-else 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 09 00 00 00 00 00 00 00 ~ 0x9 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) e0 ff 04 08 00 00 00 00 ~ log-load-if-else (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-immediate" (string literal with null) 6d 61 6b 65 2d 69 6d 6d 65 64 69 61 74 65 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) ~ ~ is defined here via the log-load transform. 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "~" (string literal with null) 7e 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "key" (string literal with null) 6b 65 79 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&&" (string literal with null) 26 26 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "key" (string literal with null) 6b 65 79 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 09 00 00 00 00 00 00 00 ~ 0x9 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ while 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 09 00 00 00 00 00 00 00 ~ 0x9 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 88 04 05 08 00 00 00 00 ~ log-load-while (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-immediate" (string literal with null) 6d 61 6b 65 2d 69 6d 6d 65 64 69 61 74 65 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) ~ interpret is defined here via the log-load transform. 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "interpret" (string literal with null) 69 6e 74 65 72 70 72 65 74 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "word" (string literal with null) 77 6f 72 64 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "value@" (string literal with null) 76 61 6c 75 65 40 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dropstring-with-result" (string literal with null) 64 72 6f 70 73 74 72 69 6e 67 2d 77 69 74 68 2d 72 65 73 75 6c 74 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "interpreter-flags" (string literal with null) 69 6e 74 65 72 70 72 65 74 65 72 2d 66 6c 61 67 73 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-flags@" (string literal with null) 65 6e 74 72 79 2d 66 6c 61 67 73 40 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 09 00 00 00 00 00 00 00 ~ 0x9 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 09 00 00 00 00 00 00 00 ~ 0x9 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "execute" (string literal with null) 65 78 65 63 75 74 65 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "value@" (string literal with null) 76 61 6c 75 65 40 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "read-integer" (string literal with null) 72 65 61 64 2d 69 6e 74 65 67 65 72 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "interpreter-flags" (string literal with null) 69 6e 74 65 72 70 72 65 74 65 72 2d 66 6c 61 67 73 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dropstring-with-result" (string literal with null) 64 72 6f 70 73 74 72 69 6e 67 2d 77 69 74 68 2d 72 65 73 75 6c 74 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dropstring-with-result" (string literal with null) 64 72 6f 70 73 74 72 69 6e 67 2d 77 69 74 68 2d 72 65 73 75 6c 74 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) a0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "No such word: " (string literal with null) 4e 6f 20 73 75 63 68 20 77 6f 72 64 3a 20 00 00 ~ (alignment padding) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "value@" (string literal with null) 76 61 6c 75 65 40 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "newline" (string literal with null) 6e 65 77 6c 69 6e 65 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dropstring" (string literal with null) 64 72 6f 70 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ quit is defined here via the log-load transform. 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "quit" (string literal with null) 71 75 69 74 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "r0" (string literal with null) 72 30 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "control!" (string literal with null) 63 6f 6e 74 72 6f 6c 21 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) d8 fa 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "interpret" (string literal with null) 69 6e 74 65 72 70 72 65 74 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ forever 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) e0 03 05 08 00 00 00 00 ~ log-load-forever (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) 10 70 04 08 00 00 00 00 ~ entry-flags@ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 80 00 00 00 00 00 00 00 ~ 0x80 (integer literal) 00 6a 04 08 00 00 00 00 ~ invert (codeword pointer) 80 69 04 08 00 00 00 00 ~ & (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 70 70 04 08 00 00 00 00 ~ entry-flags! (codeword pointer) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) 10 70 04 08 00 00 00 00 ~ entry-flags@ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 80 00 00 00 00 00 00 00 ~ 0x80 (integer literal) 00 6a 04 08 00 00 00 00 ~ invert (codeword pointer) 80 69 04 08 00 00 00 00 ~ & (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 70 70 04 08 00 00 00 00 ~ entry-flags! (codeword pointer) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) 10 70 04 08 00 00 00 00 ~ entry-flags@ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 80 00 00 00 00 00 00 00 ~ 0x80 (integer literal) 00 6a 04 08 00 00 00 00 ~ invert (codeword pointer) 80 69 04 08 00 00 00 00 ~ & (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 70 70 04 08 00 00 00 00 ~ entry-flags! (codeword pointer) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) 10 70 04 08 00 00 00 00 ~ entry-flags@ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 80 00 00 00 00 00 00 00 ~ 0x80 (integer literal) 00 6a 04 08 00 00 00 00 ~ invert (codeword pointer) 80 69 04 08 00 00 00 00 ~ & (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 70 70 04 08 00 00 00 00 ~ entry-flags! (codeword pointer) ~ relink-main-input-buffer-to-stdin is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "relink-main-input-buffer-to-stdin" (string literal with null) 72 65 6c 69 6e 6b 2d 6d 61 69 6e 2d 69 6e 70 75 74 2d 62 75 66 66 65 72 2d 74 6f 2d 73 74 64 69 6e 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 04 00 00 00 00 00 00 ~ 0x400 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "allocate" (string literal with null) 61 6c 6c 6f 63 61 74 65 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "main-input-buffer" (string literal with null) 6d 61 69 6e 2d 69 6e 70 75 74 2d 62 75 66 66 65 72 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-physical-start" (string literal with null) 62 75 66 66 65 72 2d 70 68 79 73 69 63 61 6c 2d 73 74 61 72 74 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "main-input-buffer" (string literal with null) 6d 61 69 6e 2d 69 6e 70 75 74 2d 62 75 66 66 65 72 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-logical-start" (string literal with null) 62 75 66 66 65 72 2d 6c 6f 67 69 63 61 6c 2d 73 74 61 72 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 04 00 00 00 00 00 00 ~ 0x400 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "main-input-buffer" (string literal with null) 6d 61 69 6e 2d 69 6e 70 75 74 2d 62 75 66 66 65 72 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-physical-length" (string literal with null) 62 75 66 66 65 72 2d 70 68 79 73 69 63 61 6c 2d 6c 65 6e 67 74 68 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "main-input-buffer" (string literal with null) 6d 61 69 6e 2d 69 6e 70 75 74 2d 62 75 66 66 65 72 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-logical-length" (string literal with null) 62 75 66 66 65 72 2d 6c 6f 67 69 63 61 6c 2d 6c 65 6e 67 74 68 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "main-input-buffer" (string literal with null) 6d 61 69 6e 2d 69 6e 70 75 74 2d 62 75 66 66 65 72 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-file-descriptor" (string literal with null) 62 75 66 66 65 72 2d 66 69 6c 65 2d 64 65 73 63 72 69 70 74 6f 72 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "refill-input-buffer-from-stream" (string literal with null) 72 65 66 69 6c 6c 2d 69 6e 70 75 74 2d 62 75 66 66 65 72 2d 66 72 6f 6d 2d 73 74 72 65 61 6d 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) e8 6e 04 08 00 00 00 00 ~ entry-to-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "literal" (string literal with null) 6c 69 74 65 72 61 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "main-input-buffer" (string literal with null) 6d 61 69 6e 2d 69 6e 70 75 74 2d 62 75 66 66 65 72 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "input-buffer-refill" (string literal with null) 69 6e 70 75 74 2d 62 75 66 66 65 72 2d 72 65 66 69 6c 6c 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "relink-main-input-buffer-to-stdin" (string literal with null) 72 65 6c 69 6e 6b 2d 6d 61 69 6e 2d 69 6e 70 75 74 2d 62 75 66 66 65 72 2d 74 6f 2d 73 74 64 69 6e 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) ~ { is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "{" (string literal with null) 7b 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-immediate" (string literal with null) 6d 61 6b 65 2d 69 6d 6d 65 64 69 61 74 65 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) ~ } is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "}" (string literal with null) 7d 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-immediate" (string literal with null) 6d 61 6b 65 2d 69 6d 6d 65 64 69 61 74 65 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) ~ if is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "if" (string literal with null) 69 66 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "memmove" (string literal with null) 6d 65 6d 6d 6f 76 65 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "0branch" (string literal with null) 30 62 72 61 6e 63 68 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-immediate" (string literal with null) 6d 61 6b 65 2d 69 6d 6d 65 64 69 61 74 65 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) ~ unless is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unless" (string literal with null) 75 6e 6c 65 73 73 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "memmove" (string literal with null) 6d 65 6d 6d 6f 76 65 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "0branch" (string literal with null) 30 62 72 61 6e 63 68 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-immediate" (string literal with null) 6d 61 6b 65 2d 69 6d 6d 65 64 69 61 74 65 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) ~ if-else is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "if-else" (string literal with null) 69 66 2d 65 6c 73 65 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "memmove" (string literal with null) 6d 65 6d 6d 6f 76 65 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pick" (string literal with null) 70 69 63 6b 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pick" (string literal with null) 70 69 63 6b 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "memmove" (string literal with null) 6d 65 6d 6d 6f 76 65 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "0branch" (string literal with null) 30 62 72 61 6e 63 68 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "branch" (string literal with null) 62 72 61 6e 63 68 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-immediate" (string literal with null) 6d 61 6b 65 2d 69 6d 6d 65 64 69 61 74 65 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) ~ forever is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "forever" (string literal with null) 66 6f 72 65 76 65 72 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "branch" (string literal with null) 62 72 61 6e 63 68 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ff ff ff ff ff ff ff ff ~ 0xffffffffffffffff (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-immediate" (string literal with null) 6d 61 6b 65 2d 69 6d 6d 65 64 69 61 74 65 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) ~ while is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "while" (string literal with null) 77 68 69 6c 65 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "memmove" (string literal with null) 6d 65 6d 6d 6f 76 65 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "0branch" (string literal with null) 30 62 72 61 6e 63 68 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "branch" (string literal with null) 62 72 61 6e 63 68 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ff ff ff ff ff ff ff ff ~ 0xffffffffffffffff (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-immediate" (string literal with null) 6d 61 6b 65 2d 69 6d 6d 65 64 69 61 74 65 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) ~ nexit is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "nexit" (string literal with null) 6e 65 78 69 74 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "control@" (string literal with null) 63 6f 6e 74 72 6f 6c 40 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "r0" (string literal with null) 72 30 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "min" (string literal with null) 6d 69 6e 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "control!" (string literal with null) 63 6f 6e 74 72 6f 6c 21 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ allocate-timespec is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "allocate-timespec" (string literal with null) 61 6c 6c 6f 63 61 74 65 2d 74 69 6d 65 73 70 65 63 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "allocate" (string literal with null) 61 6c 6c 6f 63 61 74 65 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ timespec-seconds is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "timespec-seconds" (string literal with null) 74 69 6d 65 73 70 65 63 2d 73 65 63 6f 6e 64 73 00 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ timespec-nanoseconds is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "timespec-nanoseconds" (string literal with null) 74 69 6d 65 73 70 65 63 2d 6e 61 6e 6f 73 65 63 6f 6e 64 73 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ nanosleep is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "nanosleep" (string literal with null) 6e 61 6e 6f 73 6c 65 65 70 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 ca 9a 3b 00 00 00 00 ~ 0x3b9aca00 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "/%" (string literal with null) 2f 25 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "allocate-timespec" (string literal with null) 61 6c 6c 6f 63 61 74 65 2d 74 69 6d 65 73 70 65 63 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "timespec-seconds" (string literal with null) 74 69 6d 65 73 70 65 63 2d 73 65 63 6f 6e 64 73 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "timespec-nanoseconds" (string literal with null) 74 69 6d 65 73 70 65 63 2d 6e 61 6e 6f 73 65 63 6f 6e 64 73 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "allocate-timespec" (string literal with null) 61 6c 6c 6f 63 61 74 65 2d 74 69 6d 65 73 70 65 63 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "timespec-seconds" (string literal with null) 74 69 6d 65 73 70 65 63 2d 73 65 63 6f 6e 64 73 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "timespec-nanoseconds" (string literal with null) 74 69 6d 65 73 70 65 63 2d 6e 61 6e 6f 73 65 63 6f 6e 64 73 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 23 00 00 00 00 00 00 00 ~ 0x23 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "syscall-2" (string literal with null) 73 79 73 63 61 6c 6c 2d 32 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ sys-sigaction is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sys-sigaction" (string literal with null) 73 79 73 2d 73 69 67 61 63 74 69 6f 6e 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0d 00 00 00 00 00 00 00 ~ 0xd (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "syscall-4" (string literal with null) 73 79 73 63 61 6c 6c 2d 34 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ sys-sigaltstack is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sys-sigaltstack" (string literal with null) 73 79 73 2d 73 69 67 61 6c 74 73 74 61 63 6b 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 83 00 00 00 00 00 00 00 ~ 0x83 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "syscall-2" (string literal with null) 73 79 73 63 61 6c 6c 2d 32 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ allocate-sigaction is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "allocate-sigaction" (string literal with null) 61 6c 6c 6f 63 61 74 65 2d 73 69 67 61 63 74 69 6f 6e 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 80 00 00 00 00 00 00 00 ~ 0x80 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "packalign" (string literal with null) 70 61 63 6b 61 6c 69 67 6e 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "allocate" (string literal with null) 61 6c 6c 6f 63 61 74 65 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ sigaction-action is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sigaction-action" (string literal with null) 73 69 67 61 63 74 69 6f 6e 2d 61 63 74 69 6f 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ sigaction-flags is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sigaction-flags" (string literal with null) 73 69 67 61 63 74 69 6f 6e 2d 66 6c 61 67 73 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ sigaction-restorer is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sigaction-restorer" (string literal with null) 73 69 67 61 63 74 69 6f 6e 2d 72 65 73 74 6f 72 65 72 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ sigaction-mask is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sigaction-mask" (string literal with null) 73 69 67 61 63 74 69 6f 6e 2d 6d 61 73 6b 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ allocate-sigaltstack is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "allocate-sigaltstack" (string literal with null) 61 6c 6c 6f 63 61 74 65 2d 73 69 67 61 6c 74 73 74 61 63 6b 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 80 00 00 00 00 00 00 00 ~ 0x80 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "packalign" (string literal with null) 70 61 63 6b 61 6c 69 67 6e 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "allocate" (string literal with null) 61 6c 6c 6f 63 61 74 65 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ sigaltstack-pointer is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sigaltstack-pointer" (string literal with null) 73 69 67 61 6c 74 73 74 61 63 6b 2d 70 6f 69 6e 74 65 72 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ sigaltstack-flags is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sigaltstack-flags" (string literal with null) 73 69 67 61 6c 74 73 74 61 63 6b 2d 66 6c 61 67 73 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ sigaltstack-size is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sigaltstack-size" (string literal with null) 73 69 67 61 6c 74 73 74 61 63 6b 2d 73 69 7a 65 00 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ prepare-signal-stack is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "prepare-signal-stack" (string literal with null) 70 72 65 70 61 72 65 2d 73 69 67 6e 61 6c 2d 73 74 61 63 6b 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 08 00 00 00 00 00 00 ~ 0x800 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "packalign" (string literal with null) 70 61 63 6b 61 6c 69 67 6e 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 04 00 00 00 00 00 00 ~ 0x400 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 04 00 00 00 00 00 00 ~ 0x400 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "allocate" (string literal with null) 61 6c 6c 6f 63 61 74 65 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "allocate-sigaltstack" (string literal with null) 61 6c 6c 6f 63 61 74 65 2d 73 69 67 61 6c 74 73 74 61 63 6b 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sigaltstack-pointer" (string literal with null) 73 69 67 61 6c 74 73 74 61 63 6b 2d 70 6f 69 6e 74 65 72 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sigaltstack-flags" (string literal with null) 73 69 67 61 6c 74 73 74 61 63 6b 2d 66 6c 61 67 73 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sigaltstack-size" (string literal with null) 73 69 67 61 6c 74 73 74 61 63 6b 2d 73 69 7a 65 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 04 00 00 00 00 00 00 ~ 0x400 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 04 00 00 00 00 00 00 ~ 0x400 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 20 00 00 00 00 00 00 00 ~ 0x20 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "allocate-sigaltstack" (string literal with null) 61 6c 6c 6f 63 61 74 65 2d 73 69 67 61 6c 74 73 74 61 63 6b 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sys-sigaltstack" (string literal with null) 73 79 73 2d 73 69 67 61 6c 74 73 74 61 63 6b 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ signal-return-trampoline is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "signal-return-trampoline" (string literal with null) 73 69 67 6e 61 6c 2d 72 65 74 75 72 6e 2d 74 72 61 6d 70 6f 6c 69 6e 65 00 00 00 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0f 00 00 00 00 00 00 00 ~ 0xf (integer literal) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 90 c1 04 08 00 00 00 00 ~ mov-reg64-imm64 (codeword pointer) b8 bb 04 08 00 00 00 00 ~ syscall (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 90 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ wrap-signal-handler is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "wrap-signal-handler" (string literal with null) 77 72 61 70 2d 73 69 67 6e 61 6c 2d 68 61 6e 64 6c 65 72 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "signal-handler-wrapper" (string literal with null) 73 69 67 6e 61 6c 2d 68 61 6e 64 6c 65 72 2d 77 72 61 70 70 65 72 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "create" (string literal with null) 63 72 65 61 74 65 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-hidden" (string literal with null) 6d 61 6b 65 2d 68 69 64 64 65 6e 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "self-codeword" (string literal with null) 73 65 6c 66 2d 63 6f 64 65 77 6f 72 64 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rsi" (string literal with null) 3a 72 73 69 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-reg64-imm64" (string literal with null) 6d 6f 76 2d 72 65 67 36 34 2d 69 6d 6d 36 34 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "cld" (string literal with null) 63 6c 64 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rax" (string literal with null) 3a 72 61 78 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-reg64-imm64" (string literal with null) 6d 6f 76 2d 72 65 67 36 34 2d 69 6d 6d 36 34 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rax" (string literal with null) 3a 72 61 78 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "jmp-abs-indirect-reg64" (string literal with null) 6a 6d 70 2d 61 62 73 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "packalign" (string literal with null) 70 61 63 6b 61 6c 69 67 6e 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "self-codeword" (string literal with null) 73 65 6c 66 2d 63 6f 64 65 77 6f 72 64 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "self-codeword" (string literal with null) 73 65 6c 66 2d 63 6f 64 65 77 6f 72 64 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rsi" (string literal with null) 3a 72 73 69 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-reg64-imm64" (string literal with null) 6d 6f 76 2d 72 65 67 36 34 2d 69 6d 6d 36 34 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "ret" (string literal with null) 72 65 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "packalign" (string literal with null) 70 61 63 6b 61 6c 69 67 6e 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "latest" (string literal with null) 6c 61 74 65 73 74 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ bind-signal is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "bind-signal" (string literal with null) 62 69 6e 64 2d 73 69 67 6e 61 6c 00 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "allocate-sigaction" (string literal with null) 61 6c 6c 6f 63 61 74 65 2d 73 69 67 61 63 74 69 6f 6e 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sigaction-action" (string literal with null) 73 69 67 61 63 74 69 6f 6e 2d 61 63 74 69 6f 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sigaction-mask" (string literal with null) 73 69 67 61 63 74 69 6f 6e 2d 6d 61 73 6b 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sigaction-flags" (string literal with null) 73 69 67 61 63 74 69 6f 6e 2d 66 6c 61 67 73 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 04 00 00 00 00 ~ 0x4000000 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sigaction-restorer" (string literal with null) 73 69 67 61 63 74 69 6f 6e 2d 72 65 73 74 6f 72 65 72 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "signal-return-trampoline" (string literal with null) 73 69 67 6e 61 6c 2d 72 65 74 75 72 6e 2d 74 72 61 6d 70 6f 6c 69 6e 65 00 00 00 00 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "allocate-sigaction" (string literal with null) 61 6c 6c 6f 63 61 74 65 2d 73 69 67 61 63 74 69 6f 6e 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sys-sigaction" (string literal with null) 73 79 73 2d 73 69 67 61 63 74 69 6f 6e 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ handle-crash is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "handle-crash" (string literal with null) 68 61 6e 64 6c 65 2d 63 72 61 73 68 00 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "CRASH" (string literal with null) 43 52 41 53 48 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "newline" (string literal with null) 6e 65 77 6c 69 6e 65 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "list-callers" (string literal with null) 6c 69 73 74 2d 63 61 6c 6c 65 72 73 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sys-exit" (string literal with null) 73 79 73 2d 65 78 69 74 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ install-crash-handler is defined here via the log-load transform. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "install-crash-handler" (string literal with null) 69 6e 73 74 61 6c 6c 2d 63 72 61 73 68 2d 68 61 6e 64 6c 65 72 00 00 00 ~ (alignment padding) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "handle-crash" (string literal with null) 68 61 6e 64 6c 65 2d 63 72 61 73 68 00 00 00 00 ~ (alignment padding) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "wrap-signal-handler" (string literal with null) 77 72 61 70 2d 73 69 67 6e 61 6c 2d 68 61 6e 64 6c 65 72 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0b 00 00 00 00 00 00 00 ~ 0xb (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "bind-signal" (string literal with null) 62 69 6e 64 2d 73 69 67 6e 61 6c 00 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "install-crash-handler" (string literal with null) 69 6e 73 74 61 6c 6c 2d 63 72 61 73 68 2d 68 61 6e 64 6c 65 72 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) ~ We're now done with the log-load routine; the next little bit of code ~ here is the final bit of the warm-start routine. 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "quit" (string literal with null) 71 75 69 74 00 00 00 00 ~ (alignment padding) 78 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ Get rid of that heap pointer on the stack, we're finally done with it! 30 65 04 08 00 00 00 00 ~ drop (codeword pointer) b0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~ This is the start of a long block of code which has been processed by ~ the label transform, meaning it consists of ready-to-run Forth word ~ definitions that reference each other by address, suitable for direct ~ execution as soon as the cold-start routine has set up the basic ~ registers, flags, and memory areas that form Evocation's internal ABI. ~ ~ Each word definition consists of a dictionary entry header, a ~ codeword, and a word body. For words implemented as Forth code, the ~ codeword points to the "docol" routine, and the word body is an array of ~ pointers to the codewords of other words, occasionally interspersed with ~ literal values. For words implemented as machine code, the codeword ~ points to the start of the body, and the body is the machine code. ~ ~ All the word entry headers in this code link to each other, from last ~ backwards to first, forming an Evocation dictionary. ~ ~ The warm-start routine relies on words defined by the label transform, ~ as does the log-load routine. ~ (alignment padding) ~ This is the actual docol routine, the interpreter which is pointed to by ~ the codeword of every interpreted word. It does not itself have an entry ~ in the dictionary; the word "docol" will return a pointer to this routine. ~ The word's entry follows immediately after the routine. ~ label docol-codeword-value at offset 0x0000000000046498 is here. ~ "pushcontrol" macro 48 8d 6d f8 ~ :rbp 0xfffffffffffffff8 :rbp lea-reg64-disp8-reg64 48 89 75 00 ~ :rsi :rbp 0x00 mov-disp8-reg64-reg64 48 83 c0 08 ~ 0x8 :rax add-reg64-imm8 48 89 c6 ~ :rax :rsi mov-reg64-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 ~ (alignment padding) ~ This is the dictionary entry for docol. 00 00 00 00 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 64 6f 63 6f 6c 00 ~ (alignment padding) ~ label docol at offset 0x00000000000464c0 is here. c8 64 04 08 00 00 00 00 48 b8 98 64 04 08 00 00 00 00 ~ 0x8046498 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ exit is defined here via the label transform; this is its entry header. b0 64 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 65 78 69 74 00 00 ~ (alignment padding) ~ label exit at offset 0x00000000000464e8 is here. f0 64 04 08 00 00 00 00 ~ (self codeword) ~ "popcontrol" macro 48 8b 75 00 ~ :rbp 0x00 :rsi mov-reg64-disp8-reg64 48 8d 6d 08 ~ :rbp 0x08 :rbp lea-reg64-disp8-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 ~ (alignment padding) ~ swap is defined here via the label transform; this is its entry header. d8 64 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 77 61 70 00 00 ~ (alignment padding) ~ label swap at offset 0x0000000000046510 is here. 18 65 04 08 00 00 00 00 ~ (self codeword) 58 ~ :rax pop-reg64 5b ~ :rbx pop-reg64 50 ~ :rax push-reg64 53 ~ :rbx push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 ~ (alignment padding) ~ drop is defined here via the label transform; this is its entry header. 00 65 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 64 72 6f 70 00 00 ~ (alignment padding) ~ label drop at offset 0x0000000000046530 is here. 38 65 04 08 00 00 00 00 ~ (self codeword) 58 ~ :rax pop-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 ~ (alignment padding) ~ 2drop is defined here via the label transform; this is its entry header. 20 65 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 32 64 72 6f 70 00 ~ (alignment padding) ~ label 2drop at offset 0x0000000000046550 is here. 58 65 04 08 00 00 00 00 ~ (self codeword) 58 ~ :rax pop-reg64 58 ~ :rax pop-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 ~ (alignment padding) ~ roll is defined here via the label transform; this is its entry header. 40 65 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 6f 6c 6c 00 00 ~ (alignment padding) ~ label roll at offset 0x0000000000046570 is here. 78 65 04 08 00 00 00 00 ~ (self codeword) 59 ~ :rcx pop-reg64 48 ff c9 ~ :rcx dec-reg64 48 8b 1c cc ~ :rsp :rcx 8 :rbx mov-reg64-indexed-reg64 56 ~ :rsi push-reg64 48 8d 34 cc ~ :rsp :rcx 8 :rsi lea-reg64-indexed-reg64 48 8d 7c cc 08 ~ :rsp :rcx 8 0x08 :rdi lea-reg64-disp8-indexed-reg64 fd ~ std f3 48 a5 ~ rep-movs64 fc ~ cld 5e ~ :rsi pop-reg64 48 89 1c 24 ~ :rbx :rsp mov-indirect-reg64-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 ~ (alignment padding) ~ unroll is defined here via the label transform; this is its entry header. 60 65 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 75 6e 72 6f 6c 6c 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label unroll at offset 0x00000000000465b0 is here. b8 65 04 08 00 00 00 00 ~ (self codeword) 59 ~ :rcx pop-reg64 48 ff c9 ~ :rcx dec-reg64 48 89 ca ~ :rcx :rdx mov-reg64-reg64 48 8b 1c 24 ~ :rsp :rbx mov-reg64-indirect-reg64 56 ~ :rsi push-reg64 48 8d 74 24 10 ~ :rsp 0x10 :rsi lea-reg64-disp8-reg64 48 8d 7c 24 08 ~ :rsp 0x08 :rdi lea-reg64-disp8-reg64 f3 48 a5 ~ rep-movs64 5e ~ :rsi pop-reg64 48 89 1c d4 ~ :rbx :rsp :rdx 8 mov-indexed-reg64-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 ~ (alignment padding) ~ 3roll is defined here via the label transform; this is its entry header. 98 65 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 33 72 6f 6c 6c 00 ~ (alignment padding) ~ label 3roll at offset 0x00000000000465f0 is here. f8 65 04 08 00 00 00 00 ~ (self codeword) 58 ~ :rax pop-reg64 5b ~ :rbx pop-reg64 59 ~ :rcx pop-reg64 53 ~ :rbx push-reg64 50 ~ :rax push-reg64 51 ~ :rcx push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 ~ (alignment padding) ~ 3unroll is defined here via the label transform; this is its entry header. e0 65 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 33 75 6e 72 6f 6c 6c 00 00 00 00 00 00 00 ~ (alignment padding) ~ label 3unroll at offset 0x0000000000046620 is here. 28 66 04 08 00 00 00 00 ~ (self codeword) 58 ~ :rax pop-reg64 5b ~ :rbx pop-reg64 59 ~ :rcx pop-reg64 50 ~ :rax push-reg64 51 ~ :rcx push-reg64 53 ~ :rbx push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 ~ (alignment padding) ~ dup is defined here via the label transform; this is its entry header. 08 66 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 64 75 70 00 00 00 ~ (alignment padding) ~ label dup at offset 0x0000000000046648 is here. 50 66 04 08 00 00 00 00 ~ (self codeword) 58 ~ :rax pop-reg64 50 ~ :rax push-reg64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ 2dup is defined here via the label transform; this is its entry header. 38 66 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 32 64 75 70 00 00 ~ (alignment padding) ~ label 2dup at offset 0x0000000000046668 is here. 70 66 04 08 00 00 00 00 ~ (self codeword) 58 ~ :rax pop-reg64 5b ~ :rbx pop-reg64 53 ~ :rbx push-reg64 50 ~ :rax push-reg64 53 ~ :rbx push-reg64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 ~ (alignment padding) ~ + is defined here via the label transform; this is its entry header. 58 66 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 2b 00 00 00 00 00 ~ (alignment padding) ~ label + at offset 0x0000000000046690 is here. 98 66 04 08 00 00 00 00 ~ (self codeword) 5b ~ :rbx pop-reg64 58 ~ :rax pop-reg64 48 01 d8 ~ :rbx :rax add-reg64-reg64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 ~ (alignment padding) ~ - is defined here via the label transform; this is its entry header. 80 66 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 2d 00 00 00 00 00 ~ (alignment padding) ~ label - at offset 0x00000000000466b8 is here. c0 66 04 08 00 00 00 00 ~ (self codeword) 5b ~ :rbx pop-reg64 58 ~ :rax pop-reg64 48 2b c3 ~ :rbx :rax sub-reg64-reg64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 ~ (alignment padding) ~ * is defined here via the label transform; this is its entry header. a8 66 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 2a 00 00 00 00 00 ~ (alignment padding) ~ label * at offset 0x00000000000466e0 is here. e8 66 04 08 00 00 00 00 ~ (self codeword) 58 ~ :rax pop-reg64 5b ~ :rbx pop-reg64 48 f7 e3 ~ :rbx mul-reg64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 ~ (alignment padding) ~ /% is defined here via the label transform; this is its entry header. d0 66 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 2f 25 00 00 00 00 ~ (alignment padding) ~ label /% at offset 0x0000000000046708 is here. 10 67 04 08 00 00 00 00 ~ (self codeword) 48 33 d2 ~ :rdx :rdx xor-reg64-reg64 5b ~ :rbx pop-reg64 58 ~ :rax pop-reg64 48 f7 f3 ~ :rbx divmod-reg64 52 ~ :rdx push-reg64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 ~ (alignment padding) ~ 1+ is defined here via the label transform; this is its entry header. f8 66 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 31 2b 00 00 00 00 ~ (alignment padding) ~ label 1+ at offset 0x0000000000046730 is here. 38 67 04 08 00 00 00 00 ~ (self codeword) 58 ~ :rax pop-reg64 48 ff c0 ~ :rax inc-reg64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 00 ~ (alignment padding) ~ 1- is defined here via the label transform; this is its entry header. 20 67 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 31 2d 00 00 00 00 ~ (alignment padding) ~ label 1- at offset 0x0000000000046758 is here. 60 67 04 08 00 00 00 00 ~ (self codeword) 58 ~ :rax pop-reg64 48 ff c8 ~ :rax dec-reg64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 00 ~ (alignment padding) ~ = is defined here via the label transform; this is its entry header. 48 67 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3d 00 00 00 00 00 ~ (alignment padding) ~ label = at offset 0x0000000000046780 is here. 88 67 04 08 00 00 00 00 ~ (self codeword) 58 ~ :rax pop-reg64 5b ~ :rbx pop-reg64 48 3b c3 ~ :rbx :rax cmp-reg64-reg64 0f 94 c0 ~ :cc-equal :al set-reg8-cc 48 83 e0 01 ~ 0x1 :rax and-reg64-imm8 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 00 ~ (alignment padding) ~ != is defined here via the label transform; this is its entry header. 70 67 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 21 3d 00 00 00 00 ~ (alignment padding) ~ label != at offset 0x00000000000467b0 is here. b8 67 04 08 00 00 00 00 ~ (self codeword) 58 ~ :rax pop-reg64 5b ~ :rbx pop-reg64 48 3b c3 ~ :rbx :rax cmp-reg64-reg64 0f 95 c0 ~ :cc-not-equal :al set-reg8-cc 48 83 e0 01 ~ 0x1 :rax and-reg64-imm8 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 00 ~ (alignment padding) ~ > is defined here via the label transform; this is its entry header. a0 67 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3e 00 00 00 00 00 ~ (alignment padding) ~ label > at offset 0x00000000000467e0 is here. e8 67 04 08 00 00 00 00 ~ (self codeword) 58 ~ :rax pop-reg64 5b ~ :rbx pop-reg64 48 3b c3 ~ :rbx :rax cmp-reg64-reg64 0f 9f c0 ~ :cc-greater :al set-reg8-cc 48 83 e0 01 ~ 0x1 :rax and-reg64-imm8 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 00 ~ (alignment padding) ~ < is defined here via the label transform; this is its entry header. d0 67 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3c 00 00 00 00 00 ~ (alignment padding) ~ label < at offset 0x0000000000046810 is here. 18 68 04 08 00 00 00 00 ~ (self codeword) 58 ~ :rax pop-reg64 5b ~ :rbx pop-reg64 48 3b c3 ~ :rbx :rax cmp-reg64-reg64 0f 9c c0 ~ :cc-less :al set-reg8-cc 48 83 e0 01 ~ 0x1 :rax and-reg64-imm8 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 00 ~ (alignment padding) ~ >= is defined here via the label transform; this is its entry header. 00 68 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3e 3d 00 00 00 00 ~ (alignment padding) ~ label >= at offset 0x0000000000046840 is here. 48 68 04 08 00 00 00 00 ~ (self codeword) 58 ~ :rax pop-reg64 5b ~ :rbx pop-reg64 48 3b c3 ~ :rbx :rax cmp-reg64-reg64 0f 9d c0 ~ :cc-greater-equal :al set-reg8-cc 48 83 e0 01 ~ 0x1 :rax and-reg64-imm8 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 00 ~ (alignment padding) ~ <= is defined here via the label transform; this is its entry header. 30 68 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3c 3d 00 00 00 00 ~ (alignment padding) ~ label <= at offset 0x0000000000046870 is here. 78 68 04 08 00 00 00 00 ~ (self codeword) 58 ~ :rax pop-reg64 5b ~ :rbx pop-reg64 48 3b c3 ~ :rbx :rax cmp-reg64-reg64 0f 9e c0 ~ :cc-less-equal :al set-reg8-cc 48 83 e0 01 ~ 0x1 :rax and-reg64-imm8 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 00 ~ (alignment padding) ~ >unsigned is defined here via the label transform; this is its entry header. 60 68 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3e 75 6e 73 69 67 6e 65 64 00 00 00 00 00 ~ (alignment padding) ~ label >unsigned at offset 0x00000000000468a8 is here. b0 68 04 08 00 00 00 00 ~ (self codeword) 58 ~ :rax pop-reg64 5b ~ :rbx pop-reg64 48 3b c3 ~ :rbx :rax cmp-reg64-reg64 0f 97 c0 ~ :cc-above :al set-reg8-cc 48 83 e0 01 ~ 0x1 :rax and-reg64-imm8 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 00 ~ (alignment padding) ~ =unsigned is defined here via the label transform; this is its entry header. c8 68 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3e 3d 75 6e 73 69 67 6e 65 64 00 00 00 00 ~ (alignment padding) ~ label >=unsigned at offset 0x0000000000046918 is here. 20 69 04 08 00 00 00 00 ~ (self codeword) 58 ~ :rax pop-reg64 5b ~ :rbx pop-reg64 48 3b c3 ~ :rbx :rax cmp-reg64-reg64 0f 93 c0 ~ :cc-above-equal :al set-reg8-cc 48 83 e0 01 ~ 0x1 :rax and-reg64-imm8 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 00 ~ (alignment padding) ~ <=unsigned is defined here via the label transform; this is its entry header. 00 69 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3c 3d 75 6e 73 69 67 6e 65 64 00 00 00 00 ~ (alignment padding) ~ label <=unsigned at offset 0x0000000000046950 is here. 58 69 04 08 00 00 00 00 ~ (self codeword) 58 ~ :rax pop-reg64 5b ~ :rbx pop-reg64 48 3b c3 ~ :rbx :rax cmp-reg64-reg64 0f 96 c0 ~ :cc-below-equal :al set-reg8-cc 48 83 e0 01 ~ 0x1 :rax and-reg64-imm8 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 00 ~ (alignment padding) ~ & is defined here via the label transform; this is its entry header. 38 69 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 26 00 00 00 00 00 ~ (alignment padding) ~ label & at offset 0x0000000000046980 is here. 88 69 04 08 00 00 00 00 ~ (self codeword) 5b ~ :rbx pop-reg64 58 ~ :rax pop-reg64 48 23 c3 ~ :rbx :rax and-reg64-reg64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 ~ (alignment padding) ~ | is defined here via the label transform; this is its entry header. 70 69 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 7c 00 00 00 00 00 ~ (alignment padding) ~ label | at offset 0x00000000000469a8 is here. b0 69 04 08 00 00 00 00 ~ (self codeword) 5b ~ :rbx pop-reg64 58 ~ :rax pop-reg64 48 0b c3 ~ :rbx :rax or-reg64-reg64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 ~ (alignment padding) ~ xor is defined here via the label transform; this is its entry header. 98 69 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 78 6f 72 00 00 00 ~ (alignment padding) ~ label xor at offset 0x00000000000469d0 is here. d8 69 04 08 00 00 00 00 ~ (self codeword) 5b ~ :rbx pop-reg64 58 ~ :rax pop-reg64 48 33 c3 ~ :rbx :rax xor-reg64-reg64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 ~ (alignment padding) ~ invert is defined here via the label transform; this is its entry header. c0 69 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 69 6e 76 65 72 74 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label invert at offset 0x0000000000046a00 is here. 08 6a 04 08 00 00 00 00 ~ (self codeword) 58 ~ :rax pop-reg64 48 f7 d0 ~ :rax not-reg64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 00 ~ (alignment padding) ~ lit is defined here via the label transform; this is its entry header. e8 69 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 69 74 00 00 00 ~ (alignment padding) ~ label lit at offset 0x0000000000046a28 is here. 30 6a 04 08 00 00 00 00 ~ (self codeword) 48 ad ~ lods64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ litstring is defined here via the label transform; this is its entry header. 18 6a 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 ~ (alignment padding) ~ label litstring at offset 0x0000000000046a50 is here. 58 6a 04 08 00 00 00 00 ~ (self codeword) 56 ~ :rsi push-reg64 48 89 f7 ~ :rsi :rdi mov-reg64-reg64 48 33 c0 ~ :rax :rax xor-reg64-reg64 48 33 c9 ~ :rcx :rcx xor-reg64-reg64 48 f7 d1 ~ :rcx not-reg64 f2 ae ~ repnz-scas8 48 89 fe ~ :rdi :rsi mov-reg64-reg64 48 83 c6 07 ~ 0x7 :rsi add-reg64-imm8 48 83 e6 f8 ~ 0xfffffffffffffff8 :rsi and-reg64-imm8 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 ~ (alignment padding) ~ ! is defined here via the label transform; this is its entry header. 38 6a 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 21 00 00 00 00 00 ~ (alignment padding) ~ label ! at offset 0x0000000000046a88 is here. 90 6a 04 08 00 00 00 00 ~ (self codeword) 5b ~ :rbx pop-reg64 58 ~ :rax pop-reg64 48 89 03 ~ :rax :rbx mov-indirect-reg64-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 00 ~ (alignment padding) ~ @ is defined here via the label transform; this is its entry header. 78 6a 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 40 00 00 00 00 00 ~ (alignment padding) ~ label @ at offset 0x0000000000046ab0 is here. b8 6a 04 08 00 00 00 00 ~ (self codeword) 58 ~ :rax pop-reg64 48 8b 00 ~ :rax :rax mov-reg64-indirect-reg64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 00 ~ (alignment padding) ~ +! is defined here via the label transform; this is its entry header. a0 6a 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 2b 21 00 00 00 00 ~ (alignment padding) ~ label +! at offset 0x0000000000046ad8 is here. e0 6a 04 08 00 00 00 00 ~ (self codeword) 5b ~ :rbx pop-reg64 58 ~ :rax pop-reg64 48 01 03 ~ :rax :rbx add-indirect-reg64-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 00 ~ (alignment padding) ~ -! is defined here via the label transform; this is its entry header. c8 6a 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 2d 21 00 00 00 00 ~ (alignment padding) ~ label -! at offset 0x0000000000046b00 is here. 08 6b 04 08 00 00 00 00 ~ (self codeword) 5b ~ :rbx pop-reg64 58 ~ :rax pop-reg64 48 2b 03 ~ :rax :rbx sub-indirect-reg64-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 00 ~ (alignment padding) ~ 8! is defined here via the label transform; this is its entry header. f0 6a 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 38 21 00 00 00 00 ~ (alignment padding) ~ label 8! at offset 0x0000000000046b28 is here. 30 6b 04 08 00 00 00 00 ~ (self codeword) 5b ~ :rbx pop-reg64 58 ~ :rax pop-reg64 88 03 ~ :al :rbx mov-indirect-reg64-reg8 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 ~ (alignment padding) ~ 8@ is defined here via the label transform; this is its entry header. 18 6b 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 38 40 00 00 00 00 ~ (alignment padding) ~ label 8@ at offset 0x0000000000046b48 is here. 50 6b 04 08 00 00 00 00 ~ (self codeword) 5b ~ :rbx pop-reg64 48 33 c0 ~ :rax :rax xor-reg64-reg64 8a 03 ~ :rbx :al mov-reg8-indirect-reg64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 ~ (alignment padding) ~ 16! is defined here via the label transform; this is its entry header. 38 6b 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 31 36 21 00 00 00 ~ (alignment padding) ~ label 16! at offset 0x0000000000046b70 is here. 78 6b 04 08 00 00 00 00 ~ (self codeword) 5b ~ :rbx pop-reg64 58 ~ :rax pop-reg64 66 89 03 ~ :ax :rbx mov-indirect-reg64-reg16 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 00 ~ (alignment padding) ~ 16@ is defined here via the label transform; this is its entry header. 60 6b 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 31 36 40 00 00 00 ~ (alignment padding) ~ label 16@ at offset 0x0000000000046b98 is here. a0 6b 04 08 00 00 00 00 ~ (self codeword) 5b ~ :rbx pop-reg64 48 33 c0 ~ :rax :rax xor-reg64-reg64 66 8b 03 ~ :rbx :ax mov-reg16-indirect-reg64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 ~ (alignment padding) ~ 32! is defined here via the label transform; this is its entry header. 88 6b 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 33 32 21 00 00 00 ~ (alignment padding) ~ label 32! at offset 0x0000000000046bc0 is here. c8 6b 04 08 00 00 00 00 ~ (self codeword) 5b ~ :rbx pop-reg64 58 ~ :rax pop-reg64 89 03 ~ :eax :rbx mov-indirect-reg64-reg32 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 ~ (alignment padding) ~ 32@ is defined here via the label transform; this is its entry header. b0 6b 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 33 32 40 00 00 00 ~ (alignment padding) ~ label 32@ at offset 0x0000000000046be0 is here. e8 6b 04 08 00 00 00 00 ~ (self codeword) 5b ~ :rbx pop-reg64 48 33 c0 ~ :rax :rax xor-reg64-reg64 8b 03 ~ :rbx :eax mov-reg32-indirect-reg64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 ~ (alignment padding) ~ control! is defined here via the label transform; this is its entry header. d0 6b 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 63 6f 6e 74 72 6f 6c 21 00 00 00 00 00 00 ~ (alignment padding) ~ label control! at offset 0x0000000000046c10 is here. 18 6c 04 08 00 00 00 00 ~ (self codeword) 5d ~ :rbp pop-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 ~ (alignment padding) ~ control@ is defined here via the label transform; this is its entry header. f8 6b 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 63 6f 6e 74 72 6f 6c 40 00 00 00 00 00 00 ~ (alignment padding) ~ label control@ at offset 0x0000000000046c38 is here. 40 6c 04 08 00 00 00 00 ~ (self codeword) 55 ~ :rbp push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 ~ (alignment padding) ~ value! is defined here via the label transform; this is its entry header. 20 6c 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 76 61 6c 75 65 21 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label value! at offset 0x0000000000046c60 is here. 68 6c 04 08 00 00 00 00 ~ (self codeword) 5c ~ :rsp pop-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 ~ (alignment padding) ~ value@ is defined here via the label transform; this is its entry header. 48 6c 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 76 61 6c 75 65 40 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label value@ at offset 0x0000000000046c88 is here. 90 6c 04 08 00 00 00 00 ~ (self codeword) 54 ~ :rsp push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 ~ (alignment padding) ~ memcopy is defined here via the label transform; this is its entry header. 70 6c 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 65 6d 63 6f 70 79 00 00 00 00 00 00 00 ~ (alignment padding) ~ label memcopy at offset 0x0000000000046cb0 is here. b8 6c 04 08 00 00 00 00 ~ (self codeword) 48 89 f2 ~ :rsi :rdx mov-reg64-reg64 59 ~ :rcx pop-reg64 5f ~ :rdi pop-reg64 5e ~ :rsi pop-reg64 f3 a4 ~ rep-movs8 48 89 d6 ~ :rdx :rsi mov-reg64-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ memmove is defined here via the label transform; this is its entry header. 98 6c 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 65 6d 6d 6f 76 65 00 00 00 00 00 00 00 ~ (alignment padding) ~ label memmove at offset 0x0000000000046ce0 is here. e8 6c 04 08 00 00 00 00 ~ (self codeword) 48 89 f2 ~ :rsi :rdx mov-reg64-reg64 59 ~ :rcx pop-reg64 5f ~ :rdi pop-reg64 5e ~ :rsi pop-reg64 48 89 f0 ~ :rsi :rax mov-reg64-reg64 48 3b c7 ~ :rdi :rax cmp-reg64-reg64 72 04 ~ 0x4 :cc-below jmp-cc-rel-imm8 f3 a4 ~ rep-movs8 eb 10 ~ 0x10 jmp-rel-imm8 48 01 ce ~ :rcx :rsi add-reg64-reg64 48 ff ce ~ :rsi dec-reg64 48 01 cf ~ :rcx :rdi add-reg64-reg64 48 ff cf ~ :rdi dec-reg64 fd ~ std f3 a4 ~ rep-movs8 fc ~ cld 48 89 d6 ~ :rdx :rsi mov-reg64-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 00 ~ (alignment padding) ~ stringlen is defined here via the label transform; this is its entry header. c8 6c 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 74 72 69 6e 67 6c 65 6e 00 00 00 00 00 ~ (alignment padding) ~ label stringlen at offset 0x0000000000046d30 is here. 38 6d 04 08 00 00 00 00 ~ (self codeword) 5f ~ :rdi pop-reg64 48 89 fb ~ :rdi :rbx mov-reg64-reg64 48 33 c0 ~ :rax :rax xor-reg64-reg64 48 33 c9 ~ :rcx :rcx xor-reg64-reg64 48 f7 d1 ~ :rcx not-reg64 f2 ae ~ repnz-scas8 48 2b fb ~ :rbx :rdi sub-reg64-reg64 48 83 ef 01 ~ 0x1 :rdi sub-reg64-imm8 57 ~ :rdi push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 ~ (alignment padding) ~ reverse-stringlen is defined here via the label transform; this is its entry header. 18 6d 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 76 65 72 73 65 2d 73 74 72 69 6e 67 6c 65 6e 00 00 00 00 00 ~ (alignment padding) ~ label reverse-stringlen at offset 0x0000000000046d78 is here. 80 6d 04 08 00 00 00 00 ~ (self codeword) 5f ~ :rdi pop-reg64 48 89 fb ~ :rdi :rbx mov-reg64-reg64 48 33 c0 ~ :rax :rax xor-reg64-reg64 48 33 c9 ~ :rcx :rcx xor-reg64-reg64 48 f7 d1 ~ :rcx not-reg64 fd ~ std f2 ae ~ repnz-scas8 fc ~ cld 48 2b df ~ :rdi :rbx sub-reg64-reg64 48 83 eb 01 ~ 0x1 :rbx sub-reg64-imm8 53 ~ :rbx push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 ~ (alignment padding) ~ reverse-padding-len is defined here via the label transform; this is its entry header. 58 6d 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 76 65 72 73 65 2d 70 61 64 64 69 6e 67 2d 6c 65 6e 00 00 00 ~ (alignment padding) ~ label reverse-padding-len at offset 0x0000000000046dc0 is here. c8 6d 04 08 00 00 00 00 ~ (self codeword) 5f ~ :rdi pop-reg64 48 89 fb ~ :rdi :rbx mov-reg64-reg64 48 33 c0 ~ :rax :rax xor-reg64-reg64 48 c7 c1 09 00 00 00 ~ 0x9 :rcx mov-reg64-imm32 fd ~ std f3 ae ~ repz-scas8 fc ~ cld 48 2b df ~ :rdi :rbx sub-reg64-reg64 48 83 eb 01 ~ 0x1 :rbx sub-reg64-imm8 53 ~ :rbx push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 ~ (alignment padding) ~ stringcmp is defined here via the label transform; this is its entry header. a0 6d 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 74 72 69 6e 67 63 6d 70 00 00 00 00 00 ~ (alignment padding) ~ label stringcmp at offset 0x0000000000046e00 is here. 08 6e 04 08 00 00 00 00 ~ (self codeword) 48 89 f2 ~ :rsi :rdx mov-reg64-reg64 5e ~ :rsi pop-reg64 5f ~ :rdi pop-reg64 48 33 db ~ :rbx :rbx xor-reg64-reg64 48 33 c0 ~ :rax :rax xor-reg64-reg64 48 8b 0e ~ :rsi :rcx mov-reg64-indirect-reg64 88 c8 ~ :cl :al mov-reg8-reg8 a6 ~ cmps8 74 0f ~ 0xf :cc-equal jmp-cc-rel-imm8 0f 97 c3 ~ :cc-above :bl set-reg8-cc 48 83 db 00 ~ 0x0 :rbx sbb-reg64-imm8 53 ~ :rbx push-reg64 48 89 d6 ~ :rdx :rsi mov-reg64-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 48 85 c0 ~ :rax :rax test-reg64-reg64 75 e4 ~ 0xffffffffffffffe4 :cc-not-equal jmp-cc-rel-imm8 68 00 00 00 00 ~ 0x0 push-imm32-extended64 48 89 d6 ~ :rdx :rsi mov-reg64-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 ~ (alignment padding) ~ branch is defined here via the label transform; this is its entry header. e8 6d 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 62 72 61 6e 63 68 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label branch at offset 0x0000000000046e58 is here. 60 6e 04 08 00 00 00 00 ~ (self codeword) 48 03 36 ~ :rsi :rsi add-reg64-indirect-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ 0branch is defined here via the label transform; this is its entry header. 40 6e 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 30 62 72 61 6e 63 68 00 00 00 00 00 00 00 ~ (alignment padding) ~ label 0branch at offset 0x0000000000046e80 is here. 88 6e 04 08 00 00 00 00 ~ (self codeword) 58 ~ :rax pop-reg64 48 85 c0 ~ :rax :rax test-reg64-reg64 74 d2 ~ 0xffffffffffffffd2 :cc-equal jmp-cc-rel-imm8 48 ad ~ lods64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 ~ (alignment padding) ~ execute is defined here via the label transform; this is its entry header. 68 6e 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 65 78 65 63 75 74 65 00 00 00 00 00 00 00 ~ (alignment padding) ~ label execute at offset 0x0000000000046eb0 is here. b8 6e 04 08 00 00 00 00 ~ (self codeword) 58 ~ :rax pop-reg64 ff 20 ~ :rax jmp-abs-indirect-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ entry-to-execution-token is defined here via the label transform; this is its entry header. 98 6e 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 ~ (alignment padding) ~ label entry-to-execution-token at offset 0x0000000000046ee8 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) 90 66 04 08 00 00 00 00 ~ + (codeword pointer) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) 30 6d 04 08 00 00 00 00 ~ stringlen (codeword pointer) 90 66 04 08 00 00 00 00 ~ + (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 90 66 04 08 00 00 00 00 ~ + (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 00 6a 04 08 00 00 00 00 ~ invert (codeword pointer) 80 69 04 08 00 00 00 00 ~ & (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ execution-token-to-entry is defined here via the label transform; this is its entry header. c0 6e 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 2d 74 6f 2d 65 6e 74 72 79 00 00 00 00 00 00 ~ (alignment padding) ~ label execution-token-to-entry at offset 0x0000000000046f88 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) b8 66 04 08 00 00 00 00 ~ - (codeword pointer) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) c0 6d 04 08 00 00 00 00 ~ reverse-padding-len (codeword pointer) b8 66 04 08 00 00 00 00 ~ - (codeword pointer) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) 78 6d 04 08 00 00 00 00 ~ reverse-stringlen (codeword pointer) b8 66 04 08 00 00 00 00 ~ - (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 09 00 00 00 00 00 00 00 ~ 0x9 (integer literal) b8 66 04 08 00 00 00 00 ~ - (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ entry-flags@ is defined here via the label transform; this is its entry header. 60 6f 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 65 6e 74 72 79 2d 66 6c 61 67 73 40 00 00 ~ (alignment padding) ~ label entry-flags@ at offset 0x0000000000047010 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 90 66 04 08 00 00 00 00 ~ + (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ff 00 00 00 00 00 00 00 ~ 0xff (integer literal) 80 69 04 08 00 00 00 00 ~ & (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ entry-flags! is defined here via the label transform; this is its entry header. f8 6f 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 65 6e 74 72 79 2d 66 6c 61 67 73 21 00 00 ~ (alignment padding) ~ label entry-flags! at offset 0x0000000000047070 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 90 66 04 08 00 00 00 00 ~ + (codeword pointer) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) f0 65 04 08 00 00 00 00 ~ 3roll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ff 00 00 00 00 00 00 00 ~ 0xff (integer literal) 80 69 04 08 00 00 00 00 ~ & (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 ff ff ff ff ff ff ff ~ 0xffffffffffffff00 (integer literal) 80 69 04 08 00 00 00 00 ~ & (codeword pointer) a8 69 04 08 00 00 00 00 ~ | (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ entry-to-name is defined here via the label transform; this is its entry header. 58 70 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 65 6e 74 72 79 2d 74 6f 2d 6e 61 6d 65 00 ~ (alignment padding) ~ label entry-to-name at offset 0x0000000000047118 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) 90 66 04 08 00 00 00 00 ~ + (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ pack64 is defined here via the label transform; this is its entry header. 00 71 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 70 61 63 6b 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label pack64 at offset 0x0000000000047158 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 90 66 04 08 00 00 00 00 ~ + (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ pack32 is defined here via the label transform; this is its entry header. 40 71 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 70 61 63 6b 33 32 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label pack32 at offset 0x00000000000471b8 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) c0 6b 04 08 00 00 00 00 ~ 32! (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 90 66 04 08 00 00 00 00 ~ + (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ pack16 is defined here via the label transform; this is its entry header. a0 71 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 70 61 63 6b 31 36 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label pack16 at offset 0x0000000000047218 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 70 6b 04 08 00 00 00 00 ~ 16! (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 90 66 04 08 00 00 00 00 ~ + (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ pack8 is defined here via the label transform; this is its entry header. 00 72 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 70 61 63 6b 38 00 ~ (alignment padding) ~ label pack8 at offset 0x0000000000047270 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 28 6b 04 08 00 00 00 00 ~ 8! (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 90 66 04 08 00 00 00 00 ~ + (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ packstring is defined here via the label transform; this is its entry header. 60 72 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 70 61 63 6b 73 74 72 69 6e 67 00 00 00 00 ~ (alignment padding) ~ label packstring at offset 0x00000000000472d0 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) 30 6d 04 08 00 00 00 00 ~ stringlen (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 90 66 04 08 00 00 00 00 ~ + (codeword pointer) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 90 66 04 08 00 00 00 00 ~ + (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6c 04 08 00 00 00 00 ~ memcopy (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ pack-raw-string is defined here via the label transform; this is its entry header. b8 72 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 70 61 63 6b 2d 72 61 77 2d 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) ~ label pack-raw-string at offset 0x0000000000047390 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) 30 6d 04 08 00 00 00 00 ~ stringlen (codeword pointer) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 90 66 04 08 00 00 00 00 ~ + (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) b0 6c 04 08 00 00 00 00 ~ memcopy (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ packalign is defined here via the label transform; this is its entry header. 70 73 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 70 61 63 6b 61 6c 69 67 6e 00 00 00 00 00 ~ (alignment padding) ~ label packalign at offset 0x0000000000047430 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 68 66 04 08 00 00 00 00 ~ 2dup (codeword pointer) 08 67 04 08 00 00 00 00 ~ /% (codeword pointer) 30 65 04 08 00 00 00 00 ~ drop (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 80 67 04 08 00 00 00 00 ~ = (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 18 00 00 00 00 00 00 00 ~ 0x18 (branch offset) 30 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ drop (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) 10 65 04 08 00 00 00 00 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6e 04 08 00 00 00 00 ~ branch (codeword pointer) 80 ff ff ff ff ff ff ff ~ 0xffffffffffffff80 (branch offset) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ unpack64 is defined here via the label transform; this is its entry header. 18 74 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 75 6e 70 61 63 6b 36 34 00 00 00 00 00 00 ~ (alignment padding) ~ label unpack64 at offset 0x00000000000474e0 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 90 66 04 08 00 00 00 00 ~ + (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ unpack32 is defined here via the label transform; this is its entry header. c8 74 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 75 6e 70 61 63 6b 33 32 00 00 00 00 00 00 ~ (alignment padding) ~ label unpack32 at offset 0x0000000000047540 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) e0 6b 04 08 00 00 00 00 ~ 32@ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 90 66 04 08 00 00 00 00 ~ + (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ unpack16 is defined here via the label transform; this is its entry header. 28 75 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 75 6e 70 61 63 6b 31 36 00 00 00 00 00 00 ~ (alignment padding) ~ label unpack16 at offset 0x00000000000475a0 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) 98 6b 04 08 00 00 00 00 ~ 16@ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 90 66 04 08 00 00 00 00 ~ + (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ unpack8 is defined here via the label transform; this is its entry header. 88 75 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 75 6e 70 61 63 6b 38 00 00 00 00 00 00 00 ~ (alignment padding) ~ label unpack8 at offset 0x0000000000047600 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) 48 6b 04 08 00 00 00 00 ~ 8@ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 90 66 04 08 00 00 00 00 ~ + (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ align-size is defined here via the label transform; this is its entry header. e8 75 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 61 6c 69 67 6e 2d 73 69 7a 65 00 00 00 00 ~ (alignment padding) ~ label align-size at offset 0x0000000000047660 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) b8 66 04 08 00 00 00 00 ~ - (codeword pointer) 90 66 04 08 00 00 00 00 ~ + (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 08 67 04 08 00 00 00 00 ~ /% (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 30 65 04 08 00 00 00 00 ~ drop (codeword pointer) e0 66 04 08 00 00 00 00 ~ * (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ unpackalign is defined here via the label transform; this is its entry header. 48 76 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 75 6e 70 61 63 6b 61 6c 69 67 6e 00 00 00 ~ (alignment padding) ~ label unpackalign at offset 0x00000000000476f0 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 60 76 04 08 00 00 00 00 ~ align-size (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ crash is defined here via the label transform; this is its entry header. d8 76 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 63 72 61 73 68 00 ~ (alignment padding) ~ label crash at offset 0x0000000000047718 is here. 20 77 04 08 00 00 00 00 ~ (self codeword) f4 ~ hlt ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 ~ (alignment padding) ~ max is defined here via the label transform; this is its entry header. 08 77 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 61 78 00 00 00 ~ (alignment padding) ~ label max at offset 0x0000000000047738 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 68 66 04 08 00 00 00 00 ~ 2dup (codeword pointer) 40 68 04 08 00 00 00 00 ~ >= (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 10 00 00 00 00 00 00 00 ~ 0x10 (branch offset) 10 65 04 08 00 00 00 00 ~ drop (codeword pointer) ~ swap (codeword pointer) 30 65 04 08 00 00 00 00 e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ min is defined here via the label transform; this is its entry header. 28 77 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 69 6e 00 00 00 ~ (alignment padding) ~ label min at offset 0x00000000000477a0 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 68 66 04 08 00 00 00 00 ~ 2dup (codeword pointer) 70 68 04 08 00 00 00 00 ~ <= (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 10 00 00 00 00 00 00 00 ~ 0x10 (branch offset) 10 65 04 08 00 00 00 00 ~ drop (codeword pointer) ~ swap (codeword pointer) 30 65 04 08 00 00 00 00 e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ over is defined here via the label transform; this is its entry header. 90 77 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6f 76 65 72 00 00 ~ (alignment padding) ~ label over at offset 0x0000000000047808 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ pick is defined here via the label transform; this is its entry header. f8 77 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 70 69 63 6b 00 00 ~ (alignment padding) ~ label pick at offset 0x0000000000047840 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 90 66 04 08 00 00 00 00 ~ + (codeword pointer) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) f0 65 04 08 00 00 00 00 ~ 3roll (codeword pointer) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ ndrop is defined here via the label transform; this is its entry header. 30 78 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6e 64 72 6f 70 00 ~ (alignment padding) ~ label ndrop at offset 0x00000000000478a0 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 30 00 00 00 00 00 00 00 ~ 0x30 (branch offset) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 30 65 04 08 00 00 00 00 ~ drop (codeword pointer) 58 67 04 08 00 00 00 00 ~ 1- (codeword pointer) 58 6e 04 08 00 00 00 00 ~ branch (codeword pointer) b0 ff ff ff ff ff ff ff ~ 0xffffffffffffffb0 (branch offset) 30 65 04 08 00 00 00 00 ~ drop (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ ndup is defined here via the label transform; this is its entry header. 90 78 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6e 64 75 70 00 00 ~ (alignment padding) ~ label ndup at offset 0x0000000000047920 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) 30 67 04 08 00 00 00 00 ~ 1+ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 48 00 00 00 00 00 00 00 ~ 0x48 (branch offset) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) 40 78 04 08 00 00 00 00 ~ pick (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 67 04 08 00 00 00 00 ~ 1- (codeword pointer) 58 6e 04 08 00 00 00 00 ~ branch (codeword pointer) 98 ff ff ff ff ff ff ff ~ 0xffffffffffffff98 (branch offset) 50 65 04 08 00 00 00 00 ~ 2drop (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ 3drop is defined here via the label transform; this is its entry header. 10 79 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 33 64 72 6f 70 00 ~ (alignment padding) ~ label 3drop at offset 0x00000000000479d0 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 30 65 04 08 00 00 00 00 ~ drop (codeword pointer) 30 65 04 08 00 00 00 00 ~ drop (codeword pointer) 30 65 04 08 00 00 00 00 ~ drop (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ 3dup is defined here via the label transform; this is its entry header. c0 79 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 33 64 75 70 00 00 ~ (alignment padding) ~ label 3dup at offset 0x0000000000047a08 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 40 78 04 08 00 00 00 00 ~ pick (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 40 78 04 08 00 00 00 00 ~ pick (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 40 78 04 08 00 00 00 00 ~ pick (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ && is defined here via the label transform; this is its entry header. f8 79 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 26 26 00 00 00 00 ~ (alignment padding) ~ label && at offset 0x0000000000047a70 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) e0 66 04 08 00 00 00 00 ~ * (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ || is defined here via the label transform; this is its entry header. 60 7a 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 7c 7c 00 00 00 00 ~ (alignment padding) ~ label || at offset 0x0000000000047ad0 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) a8 69 04 08 00 00 00 00 ~ | (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ not is defined here via the label transform; this is its entry header. c0 7a 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6e 6f 74 00 00 00 ~ (alignment padding) ~ label not at offset 0x0000000000047b10 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 80 67 04 08 00 00 00 00 ~ = (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ negate is defined here via the label transform; this is its entry header. 00 7b 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6e 65 67 61 74 65 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label negate at offset 0x0000000000047b50 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ff ff ff ff ff ff ff ff ~ 0xffffffffffffffff (integer literal) e0 66 04 08 00 00 00 00 ~ * (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ align-floor is defined here via the label transform; this is its entry header. 38 7b 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 61 6c 69 67 6e 2d 66 6c 6f 6f 72 00 00 00 ~ (alignment padding) ~ label align-floor at offset 0x0000000000047b90 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 08 67 04 08 00 00 00 00 ~ /% (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 30 65 04 08 00 00 00 00 ~ drop (codeword pointer) e0 66 04 08 00 00 00 00 ~ * (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ find-in is defined here via the label transform; this is its entry header. 78 7b 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 66 69 6e 64 2d 69 6e 00 00 00 00 00 00 00 ~ (alignment padding) ~ label find-in at offset 0x0000000000047be8 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 80 67 04 08 00 00 00 00 ~ = (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 20 00 00 00 00 00 00 00 ~ 0x20 (branch offset) 10 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ swap (codeword pointer) 30 65 04 08 00 00 00 00 ~ drop (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) 48 66 04 08 00 00 00 00 10 70 04 08 00 00 00 00 ~ entry-flags@ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 80 00 00 00 00 00 00 00 ~ 0x80 (integer literal) 80 69 04 08 00 00 00 00 ~ & (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 80 00 00 00 00 00 00 00 ~ 0x80 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 88 00 00 00 00 00 00 00 ~ 0x88 (branch offset) 68 66 04 08 00 00 00 00 ~ @ (codeword pointer) ~ 2dup (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) 90 66 04 08 00 00 00 00 ~ + (codeword pointer) 00 6e 04 08 00 00 00 00 ~ stringcmp (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 80 67 04 08 00 00 00 00 ~ = (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 20 00 00 00 00 00 00 00 ~ 0x20 (branch offset) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 30 65 04 08 00 00 00 00 ~ drop (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) b0 6a 04 08 00 00 00 00 58 6e 04 08 00 00 00 00 ~ branch (codeword pointer) a8 fe ff ff ff ff ff ff ~ 0xfffffffffffffea8 (branch offset) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ syscall-0 is defined here via the label transform; this is its entry header. d0 7b 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 79 73 63 61 6c 6c 2d 30 00 00 00 00 00 ~ (alignment padding) ~ label syscall-0 at offset 0x0000000000047d78 is here. 80 7d 04 08 00 00 00 00 ~ (self codeword) 58 ~ :rax pop-reg64 0f 05 ~ syscall 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 ~ (alignment padding) ~ syscall-1 is defined here via the label transform; this is its entry header. 60 7d 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 79 73 63 61 6c 6c 2d 31 00 00 00 00 00 ~ (alignment padding) ~ label syscall-1 at offset 0x0000000000047da0 is here. a8 7d 04 08 00 00 00 00 ~ (self codeword) 58 ~ :rax pop-reg64 5f ~ :rdi pop-reg64 0f 05 ~ syscall 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 00 ~ (alignment padding) ~ syscall-2 is defined here via the label transform; this is its entry header. 88 7d 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 79 73 63 61 6c 6c 2d 32 00 00 00 00 00 ~ (alignment padding) ~ label syscall-2 at offset 0x0000000000047dd0 is here. d8 7d 04 08 00 00 00 00 ~ (self codeword) 48 89 f3 ~ :rsi :rbx mov-reg64-reg64 58 ~ :rax pop-reg64 5e ~ :rsi pop-reg64 5f ~ :rdi pop-reg64 0f 05 ~ syscall 48 89 de ~ :rbx :rsi mov-reg64-reg64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 ~ (alignment padding) ~ syscall-3 is defined here via the label transform; this is its entry header. b8 7d 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 79 73 63 61 6c 6c 2d 33 00 00 00 00 00 ~ (alignment padding) ~ label syscall-3 at offset 0x0000000000047e00 is here. 08 7e 04 08 00 00 00 00 ~ (self codeword) 48 89 f3 ~ :rsi :rbx mov-reg64-reg64 58 ~ :rax pop-reg64 5a ~ :rdx pop-reg64 5e ~ :rsi pop-reg64 5f ~ :rdi pop-reg64 0f 05 ~ syscall 48 89 de ~ :rbx :rsi mov-reg64-reg64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 00 ~ (alignment padding) ~ syscall-4 is defined here via the label transform; this is its entry header. e8 7d 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 79 73 63 61 6c 6c 2d 34 00 00 00 00 00 ~ (alignment padding) ~ label syscall-4 at offset 0x0000000000047e38 is here. 40 7e 04 08 00 00 00 00 ~ (self codeword) 48 89 f3 ~ :rsi :rbx mov-reg64-reg64 58 ~ :rax pop-reg64 41 5a ~ :r10 pop-extrareg64 5a ~ :rdx pop-reg64 5e ~ :rsi pop-reg64 5f ~ :rdi pop-reg64 0f 05 ~ syscall 48 89 de ~ :rbx :rsi mov-reg64-reg64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 ~ (alignment padding) ~ syscall-5 is defined here via the label transform; this is its entry header. 20 7e 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 79 73 63 61 6c 6c 2d 35 00 00 00 00 00 ~ (alignment padding) ~ label syscall-5 at offset 0x0000000000047e70 is here. 78 7e 04 08 00 00 00 00 ~ (self codeword) 48 89 f3 ~ :rsi :rbx mov-reg64-reg64 58 ~ :rax pop-reg64 41 58 ~ :r8 pop-extrareg64 41 5a ~ :r10 pop-extrareg64 5a ~ :rdx pop-reg64 5e ~ :rsi pop-reg64 5f ~ :rdi pop-reg64 0f 05 ~ syscall 48 89 de ~ :rbx :rsi mov-reg64-reg64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 ~ (alignment padding) ~ syscall-6 is defined here via the label transform; this is its entry header. 58 7e 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 79 73 63 61 6c 6c 2d 36 00 00 00 00 00 ~ (alignment padding) ~ label syscall-6 at offset 0x0000000000047ea8 is here. b0 7e 04 08 00 00 00 00 ~ (self codeword) 48 89 f3 ~ :rsi :rbx mov-reg64-reg64 58 ~ :rax pop-reg64 41 59 ~ :r9 pop-extrareg64 41 58 ~ :r8 pop-extrareg64 41 5a ~ :r10 pop-extrareg64 5a ~ :rdx pop-reg64 5e ~ :rsi pop-reg64 5f ~ :rdi pop-reg64 0f 05 ~ syscall 48 89 de ~ :rbx :rsi mov-reg64-reg64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ sys-exit is defined here via the label transform; this is its entry header. 90 7e 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 79 73 2d 65 78 69 74 00 00 00 00 00 00 ~ (alignment padding) ~ label sys-exit at offset 0x0000000000047ee0 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 3c 00 00 00 00 00 00 00 ~ 0x3c (integer literal) a0 7d 04 08 00 00 00 00 ~ syscall-1 (codeword pointer) 18 77 04 08 00 00 00 00 ~ crash (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ sys-write is defined here via the label transform; this is its entry header. c8 7e 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 79 73 2d 77 72 69 74 65 00 00 00 00 00 ~ (alignment padding) ~ label sys-write at offset 0x0000000000047f28 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 00 7e 04 08 00 00 00 00 ~ syscall-3 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ sys-read is defined here via the label transform; this is its entry header. 10 7f 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 79 73 2d 72 65 61 64 00 00 00 00 00 00 ~ (alignment padding) ~ label sys-read at offset 0x0000000000047f68 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 00 7e 04 08 00 00 00 00 ~ syscall-3 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ sys-open is defined here via the label transform; this is its entry header. 50 7f 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 79 73 2d 6f 70 65 6e 00 00 00 00 00 00 ~ (alignment padding) ~ label sys-open at offset 0x0000000000047fa8 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 00 7e 04 08 00 00 00 00 ~ syscall-3 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ sys-close is defined here via the label transform; this is its entry header. 90 7f 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 79 73 2d 63 6c 6f 73 65 00 00 00 00 00 ~ (alignment padding) ~ label sys-close at offset 0x0000000000047fe8 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 7d 04 08 00 00 00 00 ~ syscall-1 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ emitstring is defined here via the label transform; this is its entry header. d0 7f 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 ~ (alignment padding) ~ label emitstring at offset 0x0000000000048028 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) 30 6d 04 08 00 00 00 00 ~ stringlen (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 28 7f 04 08 00 00 00 00 ~ sys-write (codeword pointer) 30 65 04 08 00 00 00 00 ~ drop (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ space is defined here via the label transform; this is its entry header. 10 80 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 70 61 63 65 00 ~ (alignment padding) ~ label space at offset 0x0000000000048080 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 20 00 00 00 00 00 00 00 ~ 0x20 (integer literal) 88 6c 04 08 00 00 00 00 ~ value@ (codeword pointer) 28 80 04 08 00 00 00 00 ~ emitstring (codeword pointer) 30 65 04 08 00 00 00 00 ~ drop (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ newline is defined here via the label transform; this is its entry header. 70 80 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6e 65 77 6c 69 6e 65 00 00 00 00 00 00 00 ~ (alignment padding) ~ label newline at offset 0x00000000000480d0 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) 88 6c 04 08 00 00 00 00 ~ value@ (codeword pointer) 28 80 04 08 00 00 00 00 ~ emitstring (codeword pointer) 30 65 04 08 00 00 00 00 ~ drop (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ pow is defined here via the label transform; this is its entry header. b8 80 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 70 6f 77 00 00 00 ~ (alignment padding) ~ label pow at offset 0x0000000000048118 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 80 67 04 08 00 00 00 00 ~ = (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 30 65 04 08 00 00 00 00 ~ lit (codeword pointer) ~ drop (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 30 65 04 08 00 00 00 00 ~ drop (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) 28 6a 04 08 00 00 00 00 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) b8 66 04 08 00 00 00 00 ~ - (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 66 04 08 00 00 00 00 ~ * (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6e 04 08 00 00 00 00 ~ branch (codeword pointer) 50 ff ff ff ff ff ff ff ~ 0xffffffffffffff50 (branch offset) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ logfloor is defined here via the label transform; this is its entry header. 08 81 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 67 66 6c 6f 6f 72 00 00 00 00 00 00 ~ (alignment padding) ~ label logfloor at offset 0x0000000000048210 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 68 66 04 08 00 00 00 00 ~ 2dup (codeword pointer) a8 68 04 08 00 00 00 00 ~ >unsigned (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 30 00 00 00 00 00 00 00 ~ 0x30 (branch offset) 30 65 04 08 00 00 00 00 ~ lit (codeword pointer) ~ drop (codeword pointer) 30 65 04 08 00 00 00 00 ~ drop (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 30 65 04 08 00 00 00 00 ~ drop (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) 28 6a 04 08 00 00 00 00 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 66 04 08 00 00 00 00 ~ * (codeword pointer) f0 65 04 08 00 00 00 00 ~ 3roll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 90 66 04 08 00 00 00 00 ~ + (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) f0 65 04 08 00 00 00 00 ~ 3roll (codeword pointer) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 10 68 04 08 00 00 00 00 ~ < (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 40 00 00 00 00 00 00 00 ~ 0x40 (branch offset) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 30 65 04 08 00 00 00 00 ~ drop (codeword pointer) 30 65 04 08 00 00 00 00 ~ drop (codeword pointer) 30 65 04 08 00 00 00 00 ~ drop (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) 58 6e 04 08 00 00 00 00 ~ branch (codeword pointer) 68 fe ff ff ff ff ff ff ~ 0xfffffffffffffe68 (branch offset) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ logceil is defined here via the label transform; this is its entry header. f8 81 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 67 63 65 69 6c 00 00 00 00 00 00 00 ~ (alignment padding) ~ label logceil at offset 0x0000000000048400 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 68 66 04 08 00 00 00 00 ~ 2dup (codeword pointer) 18 69 04 08 00 00 00 00 ~ >=unsigned (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 30 00 00 00 00 00 00 00 ~ 0x30 (branch offset) 30 65 04 08 00 00 00 00 ~ lit (codeword pointer) ~ drop (codeword pointer) 30 65 04 08 00 00 00 00 ~ drop (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 30 65 04 08 00 00 00 00 ~ drop (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) 28 6a 04 08 00 00 00 00 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 66 04 08 00 00 00 00 ~ * (codeword pointer) f0 65 04 08 00 00 00 00 ~ 3roll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 90 66 04 08 00 00 00 00 ~ + (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) f0 65 04 08 00 00 00 00 ~ 3roll (codeword pointer) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 10 68 04 08 00 00 00 00 ~ < (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 40 00 00 00 00 00 00 00 ~ 0x40 (branch offset) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 30 65 04 08 00 00 00 00 ~ drop (codeword pointer) 30 65 04 08 00 00 00 00 ~ drop (codeword pointer) 30 65 04 08 00 00 00 00 ~ drop (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) 58 6e 04 08 00 00 00 00 ~ branch (codeword pointer) 68 fe ff ff ff ff ff ff ~ 0xfffffffffffffe68 (branch offset) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ .base-unsigned is defined here via the label transform; this is its entry header. e8 83 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 2e 62 61 73 65 2d 75 6e 73 69 67 6e 65 64 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label .base-unsigned at offset 0x00000000000485f0 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 68 66 04 08 00 00 00 00 ~ 2dup (codeword pointer) 10 82 04 08 00 00 00 00 ~ logfloor (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 90 66 04 08 00 00 00 00 ~ + (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 68 66 04 08 00 00 00 00 ~ 2dup (codeword pointer) e0 67 04 08 00 00 00 00 ~ > (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 30 65 04 08 00 00 00 00 ~ drop (codeword pointer) 58 6e 04 08 00 00 00 00 ~ branch (codeword pointer) 10 00 00 00 00 00 00 00 ~ 0x10 (branch offset) 30 65 04 08 00 00 00 00 ~ 2dup (codeword pointer) ~ drop (codeword pointer) 68 66 04 08 00 00 00 00 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) b8 66 04 08 00 00 00 00 ~ - (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 18 81 04 08 00 00 00 00 ~ pow (codeword pointer) 08 67 04 08 00 00 00 00 ~ /% (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 30 65 04 08 00 00 00 00 ~ drop (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 08 67 04 08 00 00 00 00 ~ /% (codeword pointer) 30 65 04 08 00 00 00 00 ~ drop (codeword pointer) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) e0 67 04 08 00 00 00 00 ~ > (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 30 00 00 00 00 00 00 00 ~ 0x30 (integer literal) 58 6e 04 08 00 00 00 00 ~ branch (codeword pointer) 30 00 00 00 00 00 00 00 ~ 0x30 (branch offset) 28 6a 04 08 00 00 00 00 ~ + (codeword pointer) ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) b8 66 04 08 00 00 00 00 ~ - (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 61 00 00 00 00 00 00 00 ~ 0x61 (integer literal) 90 66 04 08 00 00 00 00 88 6c 04 08 00 00 00 00 ~ value@ (codeword pointer) 28 80 04 08 00 00 00 00 ~ emitstring (codeword pointer) 30 65 04 08 00 00 00 00 ~ drop (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) b8 66 04 08 00 00 00 00 ~ - (codeword pointer) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 80 67 04 08 00 00 00 00 ~ = (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 30 65 04 08 00 00 00 00 ~ drop (codeword pointer) 30 65 04 08 00 00 00 00 ~ drop (codeword pointer) 30 65 04 08 00 00 00 00 ~ drop (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) 58 6e 04 08 00 00 00 00 ~ branch (codeword pointer) 18 fe ff ff ff ff ff ff ~ 0xfffffffffffffe18 (branch offset) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ .base is defined here via the label transform; this is its entry header. d0 85 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 2e 62 61 73 65 00 ~ (alignment padding) ~ label .base at offset 0x00000000000488b0 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ > (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 38 00 00 00 00 00 00 00 ~ 0x38 (branch offset) 28 6a 04 08 00 00 00 00 ~ swap (codeword pointer) ~ lit (codeword pointer) ff ff ff ff ff ff ff ff ~ 0xffffffffffffffff (integer literal) e0 66 04 08 00 00 00 00 ~ * (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) 28 80 04 08 00 00 00 00 ~ emitstring (codeword pointer) 10 65 04 08 00 00 00 00 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f0 85 04 08 00 00 00 00 ~ .base-unsigned (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ . is defined here via the label transform; this is its entry header. a0 88 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 2e 00 00 00 00 00 ~ (alignment padding) ~ label . at offset 0x0000000000048970 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) b0 88 04 08 00 00 00 00 ~ .base (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ .hex is defined here via the label transform; this is its entry header. 60 89 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 2e 68 65 78 00 00 ~ (alignment padding) ~ label .hex at offset 0x00000000000489a8 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 10 00 00 00 00 00 00 00 ~ 0x10 (integer literal) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f0 85 04 08 00 00 00 00 ~ .base-unsigned (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ .hex8 is defined here via the label transform; this is its entry header. 98 89 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 2e 68 65 78 38 00 ~ (alignment padding) ~ label .hex8 at offset 0x00000000000489f0 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 10 00 00 00 00 00 00 00 ~ 0x10 (integer literal) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) f0 85 04 08 00 00 00 00 ~ .base-unsigned (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ .hex16 is defined here via the label transform; this is its entry header. e0 89 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 2e 68 65 78 31 36 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label .hex16 at offset 0x0000000000048a40 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 10 00 00 00 00 00 00 00 ~ 0x10 (integer literal) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) f0 85 04 08 00 00 00 00 ~ .base-unsigned (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ .hex32 is defined here via the label transform; this is its entry header. 28 8a 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 2e 68 65 78 33 32 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label .hex32 at offset 0x0000000000048a90 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 10 00 00 00 00 00 00 00 ~ 0x10 (integer literal) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) f0 85 04 08 00 00 00 00 ~ .base-unsigned (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ .hex64 is defined here via the label transform; this is its entry header. 78 8a 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 2e 68 65 78 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label .hex64 at offset 0x0000000000048ae0 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 10 00 00 00 00 00 00 00 ~ 0x10 (integer literal) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 10 00 00 00 00 00 00 00 ~ 0x10 (integer literal) f0 85 04 08 00 00 00 00 ~ .base-unsigned (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ .hexn is defined here via the label transform; this is its entry header. c8 8a 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 2e 68 65 78 6e 00 ~ (alignment padding) ~ label .hexn at offset 0x0000000000048b28 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 10 00 00 00 00 00 00 00 ~ 0x10 (integer literal) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) f0 85 04 08 00 00 00 00 ~ .base-unsigned (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ :rax is defined here via the label transform; this is its entry header. 18 8b 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 72 61 78 00 00 ~ (alignment padding) ~ label :rax at offset 0x0000000000048b68 is here. 70 8b 04 08 00 00 00 00 48 b8 68 8b 04 08 00 00 00 00 ~ 0x8048b68 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :rcx is defined here via the label transform; this is its entry header. 58 8b 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 72 63 78 00 00 ~ (alignment padding) ~ label :rcx at offset 0x0000000000048b90 is here. 98 8b 04 08 00 00 00 00 48 b8 90 8b 04 08 00 00 00 00 ~ 0x8048b90 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :rdx is defined here via the label transform; this is its entry header. 80 8b 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 72 64 78 00 00 ~ (alignment padding) ~ label :rdx at offset 0x0000000000048bb8 is here. c0 8b 04 08 00 00 00 00 48 b8 b8 8b 04 08 00 00 00 00 ~ 0x8048bb8 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :rbx is defined here via the label transform; this is its entry header. a8 8b 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 72 62 78 00 00 ~ (alignment padding) ~ label :rbx at offset 0x0000000000048be0 is here. e8 8b 04 08 00 00 00 00 48 b8 e0 8b 04 08 00 00 00 00 ~ 0x8048be0 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :rsp is defined here via the label transform; this is its entry header. d0 8b 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 72 73 70 00 00 ~ (alignment padding) ~ label :rsp at offset 0x0000000000048c08 is here. 10 8c 04 08 00 00 00 00 48 b8 08 8c 04 08 00 00 00 00 ~ 0x8048c08 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :rbp is defined here via the label transform; this is its entry header. f8 8b 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 72 62 70 00 00 ~ (alignment padding) ~ label :rbp at offset 0x0000000000048c30 is here. 38 8c 04 08 00 00 00 00 48 b8 30 8c 04 08 00 00 00 00 ~ 0x8048c30 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :rsi is defined here via the label transform; this is its entry header. 20 8c 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 72 73 69 00 00 ~ (alignment padding) ~ label :rsi at offset 0x0000000000048c58 is here. 60 8c 04 08 00 00 00 00 48 b8 58 8c 04 08 00 00 00 00 ~ 0x8048c58 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :rdi is defined here via the label transform; this is its entry header. 48 8c 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 72 64 69 00 00 ~ (alignment padding) ~ label :rdi at offset 0x0000000000048c80 is here. 88 8c 04 08 00 00 00 00 48 b8 80 8c 04 08 00 00 00 00 ~ 0x8048c80 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :r8 is defined here via the label transform; this is its entry header. 70 8c 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 72 38 00 00 00 ~ (alignment padding) ~ label :r8 at offset 0x0000000000048ca8 is here. b0 8c 04 08 00 00 00 00 48 b8 a8 8c 04 08 00 00 00 00 ~ 0x8048ca8 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :r9 is defined here via the label transform; this is its entry header. 98 8c 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 72 39 00 00 00 ~ (alignment padding) ~ label :r9 at offset 0x0000000000048cd0 is here. d8 8c 04 08 00 00 00 00 48 b8 d0 8c 04 08 00 00 00 00 ~ 0x8048cd0 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :r10 is defined here via the label transform; this is its entry header. c0 8c 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 72 31 30 00 00 ~ (alignment padding) ~ label :r10 at offset 0x0000000000048cf8 is here. 00 8d 04 08 00 00 00 00 48 b8 f8 8c 04 08 00 00 00 00 ~ 0x8048cf8 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :r11 is defined here via the label transform; this is its entry header. e8 8c 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 72 31 31 00 00 ~ (alignment padding) ~ label :r11 at offset 0x0000000000048d20 is here. 28 8d 04 08 00 00 00 00 48 b8 20 8d 04 08 00 00 00 00 ~ 0x8048d20 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :r12 is defined here via the label transform; this is its entry header. 10 8d 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 72 31 32 00 00 ~ (alignment padding) ~ label :r12 at offset 0x0000000000048d48 is here. 50 8d 04 08 00 00 00 00 48 b8 48 8d 04 08 00 00 00 00 ~ 0x8048d48 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :r13 is defined here via the label transform; this is its entry header. 38 8d 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 72 31 33 00 00 ~ (alignment padding) ~ label :r13 at offset 0x0000000000048d70 is here. 78 8d 04 08 00 00 00 00 48 b8 70 8d 04 08 00 00 00 00 ~ 0x8048d70 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :r14 is defined here via the label transform; this is its entry header. 60 8d 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 72 31 34 00 00 ~ (alignment padding) ~ label :r14 at offset 0x0000000000048d98 is here. a0 8d 04 08 00 00 00 00 48 b8 98 8d 04 08 00 00 00 00 ~ 0x8048d98 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :r15 is defined here via the label transform; this is its entry header. 88 8d 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 72 31 35 00 00 ~ (alignment padding) ~ label :r15 at offset 0x0000000000048dc0 is here. c8 8d 04 08 00 00 00 00 48 b8 c0 8d 04 08 00 00 00 00 ~ 0x8048dc0 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :eax is defined here via the label transform; this is its entry header. b0 8d 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 65 61 78 00 00 ~ (alignment padding) ~ label :eax at offset 0x0000000000048de8 is here. f0 8d 04 08 00 00 00 00 48 b8 e8 8d 04 08 00 00 00 00 ~ 0x8048de8 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :ecx is defined here via the label transform; this is its entry header. d8 8d 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 65 63 78 00 00 ~ (alignment padding) ~ label :ecx at offset 0x0000000000048e10 is here. 18 8e 04 08 00 00 00 00 48 b8 10 8e 04 08 00 00 00 00 ~ 0x8048e10 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :edx is defined here via the label transform; this is its entry header. 00 8e 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 65 64 78 00 00 ~ (alignment padding) ~ label :edx at offset 0x0000000000048e38 is here. 40 8e 04 08 00 00 00 00 48 b8 38 8e 04 08 00 00 00 00 ~ 0x8048e38 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :ebx is defined here via the label transform; this is its entry header. 28 8e 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 65 62 78 00 00 ~ (alignment padding) ~ label :ebx at offset 0x0000000000048e60 is here. 68 8e 04 08 00 00 00 00 48 b8 60 8e 04 08 00 00 00 00 ~ 0x8048e60 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :esp is defined here via the label transform; this is its entry header. 50 8e 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 65 73 70 00 00 ~ (alignment padding) ~ label :esp at offset 0x0000000000048e88 is here. 90 8e 04 08 00 00 00 00 48 b8 88 8e 04 08 00 00 00 00 ~ 0x8048e88 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :ebp is defined here via the label transform; this is its entry header. 78 8e 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 65 62 70 00 00 ~ (alignment padding) ~ label :ebp at offset 0x0000000000048eb0 is here. b8 8e 04 08 00 00 00 00 48 b8 b0 8e 04 08 00 00 00 00 ~ 0x8048eb0 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :esi is defined here via the label transform; this is its entry header. a0 8e 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 65 73 69 00 00 ~ (alignment padding) ~ label :esi at offset 0x0000000000048ed8 is here. e0 8e 04 08 00 00 00 00 48 b8 d8 8e 04 08 00 00 00 00 ~ 0x8048ed8 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :edi is defined here via the label transform; this is its entry header. c8 8e 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 65 64 69 00 00 ~ (alignment padding) ~ label :edi at offset 0x0000000000048f00 is here. 08 8f 04 08 00 00 00 00 48 b8 00 8f 04 08 00 00 00 00 ~ 0x8048f00 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :ax is defined here via the label transform; this is its entry header. f0 8e 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 61 78 00 00 00 ~ (alignment padding) ~ label :ax at offset 0x0000000000048f28 is here. 30 8f 04 08 00 00 00 00 48 b8 28 8f 04 08 00 00 00 00 ~ 0x8048f28 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :cx is defined here via the label transform; this is its entry header. 18 8f 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 63 78 00 00 00 ~ (alignment padding) ~ label :cx at offset 0x0000000000048f50 is here. 58 8f 04 08 00 00 00 00 48 b8 50 8f 04 08 00 00 00 00 ~ 0x8048f50 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :dx is defined here via the label transform; this is its entry header. 40 8f 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 64 78 00 00 00 ~ (alignment padding) ~ label :dx at offset 0x0000000000048f78 is here. 80 8f 04 08 00 00 00 00 48 b8 78 8f 04 08 00 00 00 00 ~ 0x8048f78 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :bx is defined here via the label transform; this is its entry header. 68 8f 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 62 78 00 00 00 ~ (alignment padding) ~ label :bx at offset 0x0000000000048fa0 is here. a8 8f 04 08 00 00 00 00 48 b8 a0 8f 04 08 00 00 00 00 ~ 0x8048fa0 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :sp is defined here via the label transform; this is its entry header. 90 8f 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 73 70 00 00 00 ~ (alignment padding) ~ label :sp at offset 0x0000000000048fc8 is here. d0 8f 04 08 00 00 00 00 48 b8 c8 8f 04 08 00 00 00 00 ~ 0x8048fc8 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :bp is defined here via the label transform; this is its entry header. b8 8f 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 62 70 00 00 00 ~ (alignment padding) ~ label :bp at offset 0x0000000000048ff0 is here. f8 8f 04 08 00 00 00 00 48 b8 f0 8f 04 08 00 00 00 00 ~ 0x8048ff0 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :si is defined here via the label transform; this is its entry header. e0 8f 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 73 69 00 00 00 ~ (alignment padding) ~ label :si at offset 0x0000000000049018 is here. 20 90 04 08 00 00 00 00 48 b8 18 90 04 08 00 00 00 00 ~ 0x8049018 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :di is defined here via the label transform; this is its entry header. 08 90 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 64 69 00 00 00 ~ (alignment padding) ~ label :di at offset 0x0000000000049040 is here. 48 90 04 08 00 00 00 00 48 b8 40 90 04 08 00 00 00 00 ~ 0x8049040 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :al is defined here via the label transform; this is its entry header. 30 90 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 61 6c 00 00 00 ~ (alignment padding) ~ label :al at offset 0x0000000000049068 is here. 70 90 04 08 00 00 00 00 48 b8 68 90 04 08 00 00 00 00 ~ 0x8049068 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :cl is defined here via the label transform; this is its entry header. 58 90 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 63 6c 00 00 00 ~ (alignment padding) ~ label :cl at offset 0x0000000000049090 is here. 98 90 04 08 00 00 00 00 48 b8 90 90 04 08 00 00 00 00 ~ 0x8049090 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :dl is defined here via the label transform; this is its entry header. 80 90 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 64 6c 00 00 00 ~ (alignment padding) ~ label :dl at offset 0x00000000000490b8 is here. c0 90 04 08 00 00 00 00 48 b8 b8 90 04 08 00 00 00 00 ~ 0x80490b8 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :bl is defined here via the label transform; this is its entry header. a8 90 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 62 6c 00 00 00 ~ (alignment padding) ~ label :bl at offset 0x00000000000490e0 is here. e8 90 04 08 00 00 00 00 48 b8 e0 90 04 08 00 00 00 00 ~ 0x80490e0 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :ah is defined here via the label transform; this is its entry header. d0 90 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 61 68 00 00 00 ~ (alignment padding) ~ label :ah at offset 0x0000000000049108 is here. 10 91 04 08 00 00 00 00 48 b8 08 91 04 08 00 00 00 00 ~ 0x8049108 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :ch is defined here via the label transform; this is its entry header. f8 90 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 63 68 00 00 00 ~ (alignment padding) ~ label :ch at offset 0x0000000000049130 is here. 38 91 04 08 00 00 00 00 48 b8 30 91 04 08 00 00 00 00 ~ 0x8049130 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :dh is defined here via the label transform; this is its entry header. 20 91 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 64 68 00 00 00 ~ (alignment padding) ~ label :dh at offset 0x0000000000049158 is here. 60 91 04 08 00 00 00 00 48 b8 58 91 04 08 00 00 00 00 ~ 0x8049158 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :bh is defined here via the label transform; this is its entry header. 48 91 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 62 68 00 00 00 ~ (alignment padding) ~ label :bh at offset 0x0000000000049180 is here. 88 91 04 08 00 00 00 00 48 b8 80 91 04 08 00 00 00 00 ~ 0x8049180 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :cc-overflow is defined here via the label transform; this is its entry header. 70 91 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 63 63 2d 6f 76 65 72 66 6c 6f 77 00 00 ~ (alignment padding) ~ label :cc-overflow at offset 0x00000000000491b0 is here. b8 91 04 08 00 00 00 00 48 b8 b0 91 04 08 00 00 00 00 ~ 0x80491b0 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :cc-no-overflow is defined here via the label transform; this is its entry header. 98 91 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 63 63 2d 6e 6f 2d 6f 76 65 72 66 6c 6f 77 00 00 00 00 00 00 00 ~ (alignment padding) ~ label :cc-no-overflow at offset 0x00000000000491e8 is here. f0 91 04 08 00 00 00 00 48 b8 e8 91 04 08 00 00 00 00 ~ 0x80491e8 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :cc-below is defined here via the label transform; this is its entry header. c8 91 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 63 63 2d 62 65 6c 6f 77 00 00 00 00 00 ~ (alignment padding) ~ label :cc-below at offset 0x0000000000049218 is here. 20 92 04 08 00 00 00 00 48 b8 18 92 04 08 00 00 00 00 ~ 0x8049218 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :cc-above-equal is defined here via the label transform; this is its entry header. 00 92 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 63 63 2d 61 62 6f 76 65 2d 65 71 75 61 6c 00 00 00 00 00 00 00 ~ (alignment padding) ~ label :cc-above-equal at offset 0x0000000000049250 is here. 58 92 04 08 00 00 00 00 48 b8 50 92 04 08 00 00 00 00 ~ 0x8049250 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :cc-equal is defined here via the label transform; this is its entry header. 30 92 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 63 63 2d 65 71 75 61 6c 00 00 00 00 00 ~ (alignment padding) ~ label :cc-equal at offset 0x0000000000049280 is here. 88 92 04 08 00 00 00 00 48 b8 80 92 04 08 00 00 00 00 ~ 0x8049280 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :cc-not-equal is defined here via the label transform; this is its entry header. 68 92 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 63 63 2d 6e 6f 74 2d 65 71 75 61 6c 00 ~ (alignment padding) ~ label :cc-not-equal at offset 0x00000000000492b0 is here. b8 92 04 08 00 00 00 00 48 b8 b0 92 04 08 00 00 00 00 ~ 0x80492b0 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :cc-below-equal is defined here via the label transform; this is its entry header. 98 92 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 63 63 2d 62 65 6c 6f 77 2d 65 71 75 61 6c 00 00 00 00 00 00 00 ~ (alignment padding) ~ label :cc-below-equal at offset 0x00000000000492e8 is here. f0 92 04 08 00 00 00 00 48 b8 e8 92 04 08 00 00 00 00 ~ 0x80492e8 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :cc-above is defined here via the label transform; this is its entry header. c8 92 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 63 63 2d 61 62 6f 76 65 00 00 00 00 00 ~ (alignment padding) ~ label :cc-above at offset 0x0000000000049318 is here. 20 93 04 08 00 00 00 00 48 b8 18 93 04 08 00 00 00 00 ~ 0x8049318 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :cc-sign is defined here via the label transform; this is its entry header. 00 93 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 63 63 2d 73 69 67 6e 00 00 00 00 00 00 ~ (alignment padding) ~ label :cc-sign at offset 0x0000000000049348 is here. 50 93 04 08 00 00 00 00 48 b8 48 93 04 08 00 00 00 00 ~ 0x8049348 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :cc-not-sign is defined here via the label transform; this is its entry header. 30 93 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 63 63 2d 6e 6f 74 2d 73 69 67 6e 00 00 ~ (alignment padding) ~ label :cc-not-sign at offset 0x0000000000049378 is here. 80 93 04 08 00 00 00 00 48 b8 78 93 04 08 00 00 00 00 ~ 0x8049378 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :cc-even is defined here via the label transform; this is its entry header. 60 93 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 63 63 2d 65 76 65 6e 00 00 00 00 00 00 ~ (alignment padding) ~ label :cc-even at offset 0x00000000000493a8 is here. b0 93 04 08 00 00 00 00 48 b8 a8 93 04 08 00 00 00 00 ~ 0x80493a8 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :cc-odd is defined here via the label transform; this is its entry header. 90 93 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 63 63 2d 6f 64 64 00 00 00 00 00 00 00 ~ (alignment padding) ~ label :cc-odd at offset 0x00000000000493d8 is here. e0 93 04 08 00 00 00 00 48 b8 d8 93 04 08 00 00 00 00 ~ 0x80493d8 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :cc-less is defined here via the label transform; this is its entry header. c0 93 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 63 63 2d 6c 65 73 73 00 00 00 00 00 00 ~ (alignment padding) ~ label :cc-less at offset 0x0000000000049408 is here. 10 94 04 08 00 00 00 00 48 b8 08 94 04 08 00 00 00 00 ~ 0x8049408 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :cc-greater-equal is defined here via the label transform; this is its entry header. f0 93 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 63 63 2d 67 72 65 61 74 65 72 2d 65 71 75 61 6c 00 00 00 00 00 ~ (alignment padding) ~ label :cc-greater-equal at offset 0x0000000000049440 is here. 48 94 04 08 00 00 00 00 48 b8 40 94 04 08 00 00 00 00 ~ 0x8049440 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :cc-less-equal is defined here via the label transform; this is its entry header. 20 94 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 63 63 2d 6c 65 73 73 2d 65 71 75 61 6c 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label :cc-less-equal at offset 0x0000000000049478 is here. 80 94 04 08 00 00 00 00 48 b8 78 94 04 08 00 00 00 00 ~ 0x8049478 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :cc-greater is defined here via the label transform; this is its entry header. 58 94 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 63 63 2d 67 72 65 61 74 65 72 00 00 00 ~ (alignment padding) ~ label :cc-greater at offset 0x00000000000494a8 is here. b0 94 04 08 00 00 00 00 48 b8 a8 94 04 08 00 00 00 00 ~ 0x80494a8 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ reg64 is defined here via the label transform; this is its entry header. 90 94 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 67 36 34 00 ~ (alignment padding) ~ label reg64 at offset 0x00000000000494d0 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 80 67 04 08 00 00 00 00 ~ = (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 30 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) 48 66 04 08 00 00 00 00 90 8b 04 08 00 00 00 00 ~ :rcx (codeword pointer) 80 67 04 08 00 00 00 00 ~ = (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 30 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) 48 66 04 08 00 00 00 00 b8 8b 04 08 00 00 00 00 ~ :rdx (codeword pointer) 80 67 04 08 00 00 00 00 ~ = (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 30 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) 48 66 04 08 00 00 00 00 e0 8b 04 08 00 00 00 00 ~ :rbx (codeword pointer) 80 67 04 08 00 00 00 00 ~ = (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 30 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) 48 66 04 08 00 00 00 00 08 8c 04 08 00 00 00 00 ~ :rsp (codeword pointer) 80 67 04 08 00 00 00 00 ~ = (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 30 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) 48 66 04 08 00 00 00 00 30 8c 04 08 00 00 00 00 ~ :rbp (codeword pointer) 80 67 04 08 00 00 00 00 ~ = (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 30 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) 48 66 04 08 00 00 00 00 58 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) 80 67 04 08 00 00 00 00 ~ = (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 30 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) 48 66 04 08 00 00 00 00 80 8c 04 08 00 00 00 00 ~ :rdi (codeword pointer) 80 67 04 08 00 00 00 00 ~ = (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 30 65 04 08 00 00 00 00 ~ drop (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "Parameter to reg64 is not a reg64." (string literal with null) 50 61 72 61 6d 65 74 65 72 20 74 6f 20 72 65 67 36 34 20 69 73 20 6e 6f 74 20 61 20 72 65 67 36 34 2e 00 00 00 00 00 00 ~ (alignment padding) 28 80 04 08 00 00 00 00 ~ emitstring (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) e0 7e 04 08 00 00 00 00 ~ sys-exit (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ extrareg64 is defined here via the label transform; this is its entry header. c0 94 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 65 78 74 72 61 72 65 67 36 34 00 00 00 00 ~ (alignment padding) ~ label extrareg64 at offset 0x0000000000049848 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) a8 8c 04 08 00 00 00 00 ~ :r8 (codeword pointer) 80 67 04 08 00 00 00 00 ~ = (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 30 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) 48 66 04 08 00 00 00 00 d0 8c 04 08 00 00 00 00 ~ :r9 (codeword pointer) 80 67 04 08 00 00 00 00 ~ = (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 30 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) 48 66 04 08 00 00 00 00 f8 8c 04 08 00 00 00 00 ~ :r10 (codeword pointer) 80 67 04 08 00 00 00 00 ~ = (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 30 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) 48 66 04 08 00 00 00 00 20 8d 04 08 00 00 00 00 ~ :r11 (codeword pointer) 80 67 04 08 00 00 00 00 ~ = (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 30 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) 48 66 04 08 00 00 00 00 48 8d 04 08 00 00 00 00 ~ :r12 (codeword pointer) 80 67 04 08 00 00 00 00 ~ = (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 30 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) 48 66 04 08 00 00 00 00 70 8d 04 08 00 00 00 00 ~ :r13 (codeword pointer) 80 67 04 08 00 00 00 00 ~ = (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 30 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) 48 66 04 08 00 00 00 00 98 8d 04 08 00 00 00 00 ~ :r14 (codeword pointer) 80 67 04 08 00 00 00 00 ~ = (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 30 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) 48 66 04 08 00 00 00 00 c0 8d 04 08 00 00 00 00 ~ :r15 (codeword pointer) 80 67 04 08 00 00 00 00 ~ = (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 30 65 04 08 00 00 00 00 ~ drop (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "Parameter to extrareg64 is not an extrareg64." (string literal with null) 50 61 72 61 6d 65 74 65 72 20 74 6f 20 65 78 74 72 61 72 65 67 36 34 20 69 73 20 6e 6f 74 20 61 6e 20 65 78 74 72 61 72 65 67 36 34 2e 00 00 00 ~ (alignment padding) 28 80 04 08 00 00 00 00 ~ emitstring (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) e0 7e 04 08 00 00 00 00 ~ sys-exit (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ reg32 is defined here via the label transform; this is its entry header. 30 98 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 67 33 32 00 ~ (alignment padding) ~ label reg32 at offset 0x0000000000049bc0 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) e8 8d 04 08 00 00 00 00 ~ :eax (codeword pointer) 80 67 04 08 00 00 00 00 ~ = (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 30 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) 48 66 04 08 00 00 00 00 10 8e 04 08 00 00 00 00 ~ :ecx (codeword pointer) 80 67 04 08 00 00 00 00 ~ = (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 30 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) 48 66 04 08 00 00 00 00 38 8e 04 08 00 00 00 00 ~ :edx (codeword pointer) 80 67 04 08 00 00 00 00 ~ = (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 30 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) 48 66 04 08 00 00 00 00 60 8e 04 08 00 00 00 00 ~ :ebx (codeword pointer) 80 67 04 08 00 00 00 00 ~ = (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 30 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) 48 66 04 08 00 00 00 00 88 8e 04 08 00 00 00 00 ~ :esp (codeword pointer) 80 67 04 08 00 00 00 00 ~ = (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 30 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) 48 66 04 08 00 00 00 00 b0 8e 04 08 00 00 00 00 ~ :ebp (codeword pointer) 80 67 04 08 00 00 00 00 ~ = (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 30 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) 48 66 04 08 00 00 00 00 d8 8e 04 08 00 00 00 00 ~ :esi (codeword pointer) 80 67 04 08 00 00 00 00 ~ = (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 30 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) 48 66 04 08 00 00 00 00 00 8f 04 08 00 00 00 00 ~ :edi (codeword pointer) 80 67 04 08 00 00 00 00 ~ = (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 30 65 04 08 00 00 00 00 ~ drop (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "Parameter to reg32 is not a reg32." (string literal with null) 50 61 72 61 6d 65 74 65 72 20 74 6f 20 72 65 67 33 32 20 69 73 20 6e 6f 74 20 61 20 72 65 67 33 32 2e 00 00 00 00 00 00 ~ (alignment padding) 28 80 04 08 00 00 00 00 ~ emitstring (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) e0 7e 04 08 00 00 00 00 ~ sys-exit (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ reg16 is defined here via the label transform; this is its entry header. b0 9b 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 67 31 36 00 ~ (alignment padding) ~ label reg16 at offset 0x0000000000049f30 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) 28 8f 04 08 00 00 00 00 ~ :ax (codeword pointer) 80 67 04 08 00 00 00 00 ~ = (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 30 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) 48 66 04 08 00 00 00 00 50 8f 04 08 00 00 00 00 ~ :cx (codeword pointer) 80 67 04 08 00 00 00 00 ~ = (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 30 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) 48 66 04 08 00 00 00 00 78 8f 04 08 00 00 00 00 ~ :dx (codeword pointer) 80 67 04 08 00 00 00 00 ~ = (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 30 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) 48 66 04 08 00 00 00 00 a0 8f 04 08 00 00 00 00 ~ :bx (codeword pointer) 80 67 04 08 00 00 00 00 ~ = (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 30 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) 48 66 04 08 00 00 00 00 c8 8f 04 08 00 00 00 00 ~ :sp (codeword pointer) 80 67 04 08 00 00 00 00 ~ = (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 30 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) 48 66 04 08 00 00 00 00 f0 8f 04 08 00 00 00 00 ~ :bp (codeword pointer) 80 67 04 08 00 00 00 00 ~ = (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 30 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) 48 66 04 08 00 00 00 00 18 90 04 08 00 00 00 00 ~ :si (codeword pointer) 80 67 04 08 00 00 00 00 ~ = (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 30 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) 48 66 04 08 00 00 00 00 40 90 04 08 00 00 00 00 ~ :di (codeword pointer) 80 67 04 08 00 00 00 00 ~ = (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 30 65 04 08 00 00 00 00 ~ drop (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "Parameter to reg16 is not a reg16." (string literal with null) 50 61 72 61 6d 65 74 65 72 20 74 6f 20 72 65 67 31 36 20 69 73 20 6e 6f 74 20 61 20 72 65 67 31 36 2e 00 00 00 00 00 00 ~ (alignment padding) 28 80 04 08 00 00 00 00 ~ emitstring (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) e0 7e 04 08 00 00 00 00 ~ sys-exit (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ reg8 is defined here via the label transform; this is its entry header. 20 9f 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 67 38 00 00 ~ (alignment padding) ~ label reg8 at offset 0x000000000004a2a0 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) 68 90 04 08 00 00 00 00 ~ :al (codeword pointer) 80 67 04 08 00 00 00 00 ~ = (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 30 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) 48 66 04 08 00 00 00 00 90 90 04 08 00 00 00 00 ~ :cl (codeword pointer) 80 67 04 08 00 00 00 00 ~ = (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 30 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) 48 66 04 08 00 00 00 00 b8 90 04 08 00 00 00 00 ~ :dl (codeword pointer) 80 67 04 08 00 00 00 00 ~ = (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 30 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) 48 66 04 08 00 00 00 00 e0 90 04 08 00 00 00 00 ~ :bl (codeword pointer) 80 67 04 08 00 00 00 00 ~ = (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 30 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) 48 66 04 08 00 00 00 00 08 91 04 08 00 00 00 00 ~ :ah (codeword pointer) 80 67 04 08 00 00 00 00 ~ = (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 30 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) 48 66 04 08 00 00 00 00 30 91 04 08 00 00 00 00 ~ :ch (codeword pointer) 80 67 04 08 00 00 00 00 ~ = (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 30 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) 48 66 04 08 00 00 00 00 58 91 04 08 00 00 00 00 ~ :dh (codeword pointer) 80 67 04 08 00 00 00 00 ~ = (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 30 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) 48 66 04 08 00 00 00 00 80 91 04 08 00 00 00 00 ~ :bh (codeword pointer) 80 67 04 08 00 00 00 00 ~ = (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 30 65 04 08 00 00 00 00 ~ drop (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "Parameter to reg8 is not a reg8." (string literal with null) 50 61 72 61 6d 65 74 65 72 20 74 6f 20 72 65 67 38 20 69 73 20 6e 6f 74 20 61 20 72 65 67 38 2e 00 00 00 00 00 00 00 00 ~ (alignment padding) 28 80 04 08 00 00 00 00 ~ emitstring (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) e0 7e 04 08 00 00 00 00 ~ sys-exit (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ scalefield is defined here via the label transform; this is its entry header. 90 a2 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 63 61 6c 65 66 69 65 6c 64 00 00 00 00 ~ (alignment padding) ~ label scalefield at offset 0x000000000004a618 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 80 67 04 08 00 00 00 00 ~ = (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 30 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) 48 66 04 08 00 00 00 00 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 80 67 04 08 00 00 00 00 ~ = (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 30 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) 48 66 04 08 00 00 00 00 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 80 67 04 08 00 00 00 00 ~ = (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 30 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) 48 66 04 08 00 00 00 00 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 80 67 04 08 00 00 00 00 ~ = (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 30 65 04 08 00 00 00 00 ~ drop (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "Parameter to scalefield is not 1, 2, 4, or 8." (string literal with null) 50 61 72 61 6d 65 74 65 72 20 74 6f 20 73 63 61 6c 65 66 69 65 6c 64 20 69 73 20 6e 6f 74 20 31 2c 20 32 2c 20 34 2c 20 6f 72 20 38 2e 00 00 00 ~ (alignment padding) 28 80 04 08 00 00 00 00 ~ emitstring (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) e0 7e 04 08 00 00 00 00 ~ sys-exit (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ condition-code is defined here via the label transform; this is its entry header. 00 a6 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 63 6f 6e 64 69 74 69 6f 6e 2d 63 6f 64 65 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label condition-code at offset 0x000000000004a840 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) b0 91 04 08 00 00 00 00 ~ :cc-overflow (codeword pointer) 80 67 04 08 00 00 00 00 ~ = (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 30 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) 48 66 04 08 00 00 00 00 e8 91 04 08 00 00 00 00 ~ :cc-no-overflow (codeword pointer) 80 67 04 08 00 00 00 00 ~ = (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 30 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) 48 66 04 08 00 00 00 00 18 92 04 08 00 00 00 00 ~ :cc-below (codeword pointer) 80 67 04 08 00 00 00 00 ~ = (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 30 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) 48 66 04 08 00 00 00 00 50 92 04 08 00 00 00 00 ~ :cc-above-equal (codeword pointer) 80 67 04 08 00 00 00 00 ~ = (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 30 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) 48 66 04 08 00 00 00 00 80 92 04 08 00 00 00 00 ~ :cc-equal (codeword pointer) 80 67 04 08 00 00 00 00 ~ = (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 30 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) 48 66 04 08 00 00 00 00 b0 92 04 08 00 00 00 00 ~ :cc-not-equal (codeword pointer) 80 67 04 08 00 00 00 00 ~ = (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 30 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) 48 66 04 08 00 00 00 00 e8 92 04 08 00 00 00 00 ~ :cc-below-equal (codeword pointer) 80 67 04 08 00 00 00 00 ~ = (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 30 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) 48 66 04 08 00 00 00 00 18 93 04 08 00 00 00 00 ~ :cc-above (codeword pointer) 80 67 04 08 00 00 00 00 ~ = (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 30 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) 48 66 04 08 00 00 00 00 48 93 04 08 00 00 00 00 ~ :cc-sign (codeword pointer) 80 67 04 08 00 00 00 00 ~ = (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 30 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) 48 66 04 08 00 00 00 00 78 93 04 08 00 00 00 00 ~ :cc-not-sign (codeword pointer) 80 67 04 08 00 00 00 00 ~ = (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 30 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 09 00 00 00 00 00 00 00 ~ 0x9 (integer literal) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) 48 66 04 08 00 00 00 00 a8 93 04 08 00 00 00 00 ~ :cc-even (codeword pointer) 80 67 04 08 00 00 00 00 ~ = (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 30 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) 48 66 04 08 00 00 00 00 d8 93 04 08 00 00 00 00 ~ :cc-odd (codeword pointer) 80 67 04 08 00 00 00 00 ~ = (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 30 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0b 00 00 00 00 00 00 00 ~ 0xb (integer literal) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) 48 66 04 08 00 00 00 00 08 94 04 08 00 00 00 00 ~ :cc-less (codeword pointer) 80 67 04 08 00 00 00 00 ~ = (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 30 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0c 00 00 00 00 00 00 00 ~ 0xc (integer literal) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) 48 66 04 08 00 00 00 00 40 94 04 08 00 00 00 00 ~ :cc-greater-equal (codeword pointer) 80 67 04 08 00 00 00 00 ~ = (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 30 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0d 00 00 00 00 00 00 00 ~ 0xd (integer literal) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) 48 66 04 08 00 00 00 00 78 94 04 08 00 00 00 00 ~ :cc-less-equal (codeword pointer) 80 67 04 08 00 00 00 00 ~ = (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 30 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0e 00 00 00 00 00 00 00 ~ 0xe (integer literal) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) 48 66 04 08 00 00 00 00 a8 94 04 08 00 00 00 00 ~ :cc-greater (codeword pointer) 80 67 04 08 00 00 00 00 ~ = (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 30 65 04 08 00 00 00 00 ~ drop (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0f 00 00 00 00 00 00 00 ~ 0xf (integer literal) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "Parameter to condition-code is not a condition code." (string literal with null) 50 61 72 61 6d 65 74 65 72 20 74 6f 20 63 6f 6e 64 69 74 69 6f 6e 2d 63 6f 64 65 20 69 73 20 6e 6f 74 20 61 20 63 6f 6e 64 69 74 69 6f 6e 20 63 6f 64 65 2e 00 00 00 00 ~ (alignment padding) 28 80 04 08 00 00 00 00 ~ emitstring (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) e0 7e 04 08 00 00 00 00 ~ sys-exit (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rex-0 is defined here via the label transform; this is its entry header. 20 a8 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 78 2d 30 00 ~ (alignment padding) ~ label rex-0 at offset 0x000000000004aec0 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 40 00 00 00 00 00 00 00 ~ 0x40 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rex-w is defined here via the label transform; this is its entry header. b0 ae 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 78 2d 77 00 ~ (alignment padding) ~ label rex-w at offset 0x000000000004aef8 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 48 00 00 00 00 00 00 00 ~ 0x48 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rex-r is defined here via the label transform; this is its entry header. e8 ae 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 78 2d 72 00 ~ (alignment padding) ~ label rex-r at offset 0x000000000004af30 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 44 00 00 00 00 00 00 00 ~ 0x44 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rex-x is defined here via the label transform; this is its entry header. 20 af 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 78 2d 78 00 ~ (alignment padding) ~ label rex-x at offset 0x000000000004af68 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 42 00 00 00 00 00 00 00 ~ 0x42 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rex-b is defined here via the label transform; this is its entry header. 58 af 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 78 2d 62 00 ~ (alignment padding) ~ label rex-b at offset 0x000000000004afa0 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 41 00 00 00 00 00 00 00 ~ 0x41 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rex-wr is defined here via the label transform; this is its entry header. 90 af 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 78 2d 77 72 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label rex-wr at offset 0x000000000004afe0 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 4c 00 00 00 00 00 00 00 ~ 0x4c (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rex-wx is defined here via the label transform; this is its entry header. c8 af 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 78 2d 77 78 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label rex-wx at offset 0x000000000004b020 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 4a 00 00 00 00 00 00 00 ~ 0x4a (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rex-wb is defined here via the label transform; this is its entry header. 08 b0 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 78 2d 77 62 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label rex-wb at offset 0x000000000004b060 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 49 00 00 00 00 00 00 00 ~ 0x49 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rex-rx is defined here via the label transform; this is its entry header. 48 b0 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 78 2d 72 78 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label rex-rx at offset 0x000000000004b0a0 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 46 00 00 00 00 00 00 00 ~ 0x46 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rex-rb is defined here via the label transform; this is its entry header. 88 b0 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 78 2d 72 62 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label rex-rb at offset 0x000000000004b0e0 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 45 00 00 00 00 00 00 00 ~ 0x45 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rex-xb is defined here via the label transform; this is its entry header. c8 b0 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 78 2d 78 62 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label rex-xb at offset 0x000000000004b120 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 43 00 00 00 00 00 00 00 ~ 0x43 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rex-wrx is defined here via the label transform; this is its entry header. 08 b1 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 78 2d 77 72 78 00 00 00 00 00 00 00 ~ (alignment padding) ~ label rex-wrx at offset 0x000000000004b160 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 4e 00 00 00 00 00 00 00 ~ 0x4e (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rex-wrb is defined here via the label transform; this is its entry header. 48 b1 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 78 2d 77 72 62 00 00 00 00 00 00 00 ~ (alignment padding) ~ label rex-wrb at offset 0x000000000004b1a0 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 4d 00 00 00 00 00 00 00 ~ 0x4d (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rex-wxb is defined here via the label transform; this is its entry header. 88 b1 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 78 2d 77 78 62 00 00 00 00 00 00 00 ~ (alignment padding) ~ label rex-wxb at offset 0x000000000004b1e0 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 4b 00 00 00 00 00 00 00 ~ 0x4b (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rex-rxb is defined here via the label transform; this is its entry header. c8 b1 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 78 2d 72 78 62 00 00 00 00 00 00 00 ~ (alignment padding) ~ label rex-rxb at offset 0x000000000004b220 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 47 00 00 00 00 00 00 00 ~ 0x47 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rex-wrxb is defined here via the label transform; this is its entry header. 08 b2 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 78 2d 77 72 78 62 00 00 00 00 00 00 ~ (alignment padding) ~ label rex-wrxb at offset 0x000000000004b260 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 4f 00 00 00 00 00 00 00 ~ 0x4f (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ opcodereg is defined here via the label transform; this is its entry header. 48 b2 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6f 70 63 6f 64 65 72 65 67 00 00 00 00 00 ~ (alignment padding) ~ label opcodereg at offset 0x000000000004b2a0 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) a8 69 04 08 00 00 00 00 ~ | (codeword pointer) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ opcodecc is defined here via the label transform; this is its entry header. 88 b2 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6f 70 63 6f 64 65 63 63 00 00 00 00 00 00 ~ (alignment padding) ~ label opcodecc at offset 0x000000000004b2d8 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) a8 69 04 08 00 00 00 00 ~ | (codeword pointer) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ modrm is defined here via the label transform; this is its entry header. c0 b2 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 64 72 6d 00 ~ (alignment padding) ~ label modrm at offset 0x000000000004b308 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) e0 66 04 08 00 00 00 00 ~ * (codeword pointer) a8 69 04 08 00 00 00 00 ~ | (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 40 00 00 00 00 00 00 00 ~ 0x40 (integer literal) e0 66 04 08 00 00 00 00 ~ * (codeword pointer) a8 69 04 08 00 00 00 00 ~ | (codeword pointer) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ sib is defined here via the label transform; this is its entry header. f8 b2 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 69 62 00 00 00 ~ (alignment padding) ~ label sib at offset 0x000000000004b380 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) e0 66 04 08 00 00 00 00 ~ * (codeword pointer) a8 69 04 08 00 00 00 00 ~ | (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 40 00 00 00 00 00 00 00 ~ 0x40 (integer literal) e0 66 04 08 00 00 00 00 ~ * (codeword pointer) a8 69 04 08 00 00 00 00 ~ | (codeword pointer) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ addressing-reg64 is defined here via the label transform; this is its entry header. 70 b3 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 ~ (alignment padding) ~ label addressing-reg64 at offset 0x000000000004b408 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) d0 94 04 08 00 00 00 00 ~ reg64 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 08 b3 04 08 00 00 00 00 ~ modrm (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ addressing-reg8 is defined here via the label transform; this is its entry header. e8 b3 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 38 00 00 00 00 00 00 00 ~ (alignment padding) ~ label addressing-reg8 at offset 0x000000000004b460 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) a0 a2 04 08 00 00 00 00 ~ reg8 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 08 b3 04 08 00 00 00 00 ~ modrm (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ addressing-indirect-reg64 is defined here via the label transform; this is its entry header. 40 b4 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 61 64 64 72 65 73 73 69 6e 67 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 00 00 00 ~ (alignment padding) ~ label addressing-indirect-reg64 at offset 0x000000000004b4c0 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) 30 8c 04 08 00 00 00 00 ~ :rbp (codeword pointer) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) d0 00 00 00 00 00 00 00 ~ 0xd0 (branch offset) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) 08 8c 04 08 00 00 00 00 ~ :rsp (codeword pointer) 80 67 04 08 00 00 00 00 ~ = (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) d0 94 04 08 00 00 00 00 ~ reg64 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 08 b3 04 08 00 00 00 00 ~ modrm (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 40 00 00 00 00 00 00 00 ~ 0x40 (branch offset) 28 6a 04 08 00 00 00 00 ~ exit (codeword pointer) ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 08 8c 04 08 00 00 00 00 ~ :rsp (codeword pointer) d0 94 04 08 00 00 00 00 ~ reg64 (codeword pointer) 80 b3 04 08 00 00 00 00 ~ sib (codeword pointer) e8 64 04 08 00 00 00 00 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "R/M parameter to addressing-indirect-reg64 is :rbp." (string literal with null) 52 2f 4d 20 70 61 72 61 6d 65 74 65 72 20 74 6f 20 61 64 64 72 65 73 73 69 6e 67 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 20 69 73 20 3a 72 62 70 2e 00 00 00 00 00 ~ (alignment padding) 28 80 04 08 00 00 00 00 ~ emitstring (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) e0 7e 04 08 00 00 00 00 ~ sys-exit (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ addressing-disp8-reg64 is defined here via the label transform; this is its entry header. 98 b4 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 61 64 64 72 65 73 73 69 6e 67 2d 64 69 73 70 38 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label addressing-disp8-reg64 at offset 0x000000000004b660 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) 08 8c 04 08 00 00 00 00 ~ :rsp (codeword pointer) 80 67 04 08 00 00 00 00 ~ = (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) d0 94 04 08 00 00 00 00 ~ reg64 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 08 b3 04 08 00 00 00 00 ~ modrm (codeword pointer) f0 65 04 08 00 00 00 00 ~ 3roll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 40 00 00 00 00 00 00 00 ~ 0x40 (branch offset) 28 6a 04 08 00 00 00 00 ~ swap (codeword pointer) ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 08 8c 04 08 00 00 00 00 ~ :rsp (codeword pointer) d0 94 04 08 00 00 00 00 ~ reg64 (codeword pointer) 80 b3 04 08 00 00 00 00 ~ sib (codeword pointer) 10 65 04 08 00 00 00 00 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ addressing-disp32-reg64 is defined here via the label transform; this is its entry header. 38 b6 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 61 64 64 72 65 73 73 69 6e 67 2d 64 69 73 70 33 32 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) ~ label addressing-disp32-reg64 at offset 0x000000000004b790 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) 08 8c 04 08 00 00 00 00 ~ :rsp (codeword pointer) 80 67 04 08 00 00 00 00 ~ = (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) d0 94 04 08 00 00 00 00 ~ reg64 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 08 b3 04 08 00 00 00 00 ~ modrm (codeword pointer) f0 65 04 08 00 00 00 00 ~ 3roll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 40 00 00 00 00 00 00 00 ~ 0x40 (branch offset) 28 6a 04 08 00 00 00 00 ~ swap (codeword pointer) ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 08 8c 04 08 00 00 00 00 ~ :rsp (codeword pointer) d0 94 04 08 00 00 00 00 ~ reg64 (codeword pointer) 80 b3 04 08 00 00 00 00 ~ sib (codeword pointer) 10 65 04 08 00 00 00 00 b8 71 04 08 00 00 00 00 ~ pack32 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ addressing-indexed-reg64 is defined here via the label transform; this is its entry header. 68 b7 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 61 64 64 72 65 73 73 69 6e 67 2d 69 6e 64 65 78 65 64 2d 72 65 67 36 34 00 00 00 00 00 00 ~ (alignment padding) ~ label addressing-indexed-reg64 at offset 0x000000000004b8c0 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) 30 8c 04 08 00 00 00 00 ~ :rbp (codeword pointer) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) b8 00 00 00 00 00 00 00 ~ 0xb8 (branch offset) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 08 b3 04 08 00 00 00 00 ~ modrm (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) d0 94 04 08 00 00 00 00 ~ reg64 (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) d0 94 04 08 00 00 00 00 ~ reg64 (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 18 a6 04 08 00 00 00 00 ~ scalefield (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 80 b3 04 08 00 00 00 00 ~ sib (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "Base parameter to addressing-indexed-reg64 is :rbp." (string literal with null) 42 61 73 65 20 70 61 72 61 6d 65 74 65 72 20 74 6f 20 61 64 64 72 65 73 73 69 6e 67 2d 69 6e 64 65 78 65 64 2d 72 65 67 36 34 20 69 73 20 3a 72 62 70 2e 00 00 00 00 00 ~ (alignment padding) 28 80 04 08 00 00 00 00 ~ emitstring (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) e0 7e 04 08 00 00 00 00 ~ sys-exit (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ addressing-disp8-indexed-reg64 is defined here via the label transform; this is its entry header. 98 b8 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 61 64 64 72 65 73 73 69 6e 67 2d 64 69 73 70 38 2d 69 6e 64 65 78 65 64 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label addressing-disp8-indexed-reg64 at offset 0x000000000004ba50 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 08 b3 04 08 00 00 00 00 ~ modrm (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) d0 94 04 08 00 00 00 00 ~ reg64 (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) d0 94 04 08 00 00 00 00 ~ reg64 (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 18 a6 04 08 00 00 00 00 ~ scalefield (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 80 b3 04 08 00 00 00 00 ~ sib (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ cld is defined here via the label transform; this is its entry header. 20 ba 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 63 6c 64 00 00 00 ~ (alignment padding) ~ label cld at offset 0x000000000004bb40 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) fc 00 00 00 00 00 00 00 ~ 0xfc (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ std is defined here via the label transform; this is its entry header. 30 bb 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 74 64 00 00 00 ~ (alignment padding) ~ label std at offset 0x000000000004bb78 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) fd 00 00 00 00 00 00 00 ~ 0xfd (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ syscall is defined here via the label transform; this is its entry header. 68 bb 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 79 73 63 61 6c 6c 00 00 00 00 00 00 00 ~ (alignment padding) ~ label syscall at offset 0x000000000004bbb8 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0f 00 00 00 00 00 00 00 ~ 0xf (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ hlt is defined here via the label transform; this is its entry header. a0 bb 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 68 6c 74 00 00 00 ~ (alignment padding) ~ label hlt at offset 0x000000000004bc08 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f4 00 00 00 00 00 00 00 ~ 0xf4 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ push-reg64 is defined here via the label transform; this is its entry header. f8 bb 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 70 75 73 68 2d 72 65 67 36 34 00 00 00 00 ~ (alignment padding) ~ label push-reg64 at offset 0x000000000004bc48 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) d0 94 04 08 00 00 00 00 ~ reg64 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 50 00 00 00 00 00 00 00 ~ 0x50 (integer literal) a0 b2 04 08 00 00 00 00 ~ opcodereg (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ push-extrareg64 is defined here via the label transform; this is its entry header. 30 bc 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 70 75 73 68 2d 65 78 74 72 61 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) ~ label push-extrareg64 at offset 0x000000000004bc98 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) a0 af 04 08 00 00 00 00 ~ rex-b (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 48 98 04 08 00 00 00 00 ~ extrareg64 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 50 00 00 00 00 00 00 00 ~ 0x50 (integer literal) a0 b2 04 08 00 00 00 00 ~ opcodereg (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ pop-reg64 is defined here via the label transform; this is its entry header. 78 bc 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 70 6f 70 2d 72 65 67 36 34 00 00 00 00 00 ~ (alignment padding) ~ label pop-reg64 at offset 0x000000000004bcf8 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) d0 94 04 08 00 00 00 00 ~ reg64 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 58 00 00 00 00 00 00 00 ~ 0x58 (integer literal) a0 b2 04 08 00 00 00 00 ~ opcodereg (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ pop-extrareg64 is defined here via the label transform; this is its entry header. e0 bc 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 70 6f 70 2d 65 78 74 72 61 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label pop-extrareg64 at offset 0x000000000004bd48 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) a0 af 04 08 00 00 00 00 ~ rex-b (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 48 98 04 08 00 00 00 00 ~ extrareg64 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 58 00 00 00 00 00 00 00 ~ 0x58 (integer literal) a0 b2 04 08 00 00 00 00 ~ opcodereg (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ push-imm32-extended64 is defined here via the label transform; this is its entry header. 28 bd 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 70 75 73 68 2d 69 6d 6d 33 32 2d 65 78 74 65 6e 64 65 64 36 34 00 ~ (alignment padding) ~ label push-imm32-extended64 at offset 0x000000000004bdb0 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 68 00 00 00 00 00 00 00 ~ 0x68 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b8 71 04 08 00 00 00 00 ~ pack32 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ lea-reg64-disp8-reg64 is defined here via the label transform; this is its entry header. 90 bd 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 65 61 2d 72 65 67 36 34 2d 64 69 73 70 38 2d 72 65 67 36 34 00 ~ (alignment padding) ~ label lea-reg64-disp8-reg64 at offset 0x000000000004be10 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) f8 ae 04 08 00 00 00 00 ~ rex-w (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 8d 00 00 00 00 00 00 00 ~ 0x8d (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) d0 94 04 08 00 00 00 00 ~ reg64 (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 60 b6 04 08 00 00 00 00 ~ addressing-disp8-reg64 ~ (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ lea-reg64-disp32-reg64 is defined here via the label transform; this is its entry header. f0 bd 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 65 61 2d 72 65 67 36 34 2d 64 69 73 70 33 32 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label lea-reg64-disp32-reg64 at offset 0x000000000004beb0 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) f8 ae 04 08 00 00 00 00 ~ rex-w (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 8d 00 00 00 00 00 00 00 ~ 0x8d (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) d0 94 04 08 00 00 00 00 ~ reg64 (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 90 b7 04 08 00 00 00 00 ~ addressing-disp32-reg64 ~ (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ lea-reg64-indexed-reg64 is defined here via the label transform; this is its entry header. 88 be 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 65 61 2d 72 65 67 36 34 2d 69 6e 64 65 78 65 64 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) ~ label lea-reg64-indexed-reg64 at offset 0x000000000004bf50 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) f8 ae 04 08 00 00 00 00 ~ rex-w (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 8d 00 00 00 00 00 00 00 ~ 0x8d (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) d0 94 04 08 00 00 00 00 ~ reg64 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) c0 b8 04 08 00 00 00 00 ~ addressing-indexed-reg64 ~ (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ lea-reg64-disp8-indexed-reg64 is defined here via the label transform; this is its entry header. 28 bf 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 65 61 2d 72 65 67 36 34 2d 64 69 73 70 38 2d 69 6e 64 65 78 65 64 2d 72 65 67 36 34 00 ~ (alignment padding) ~ label lea-reg64-disp8-indexed-reg64 at offset 0x000000000004c010 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) f8 ae 04 08 00 00 00 00 ~ rex-w (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 8d 00 00 00 00 00 00 00 ~ 0x8d (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) d0 94 04 08 00 00 00 00 ~ reg64 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 ba 04 08 00 00 00 00 ~ addressing-disp8-indexed-reg64 ~ (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ mov-reg64-imm32 is defined here via the label transform; this is its entry header. e8 bf 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 2d 72 65 67 36 34 2d 69 6d 6d 33 32 00 00 00 00 00 00 00 ~ (alignment padding) ~ label mov-reg64-imm32 at offset 0x000000000004c100 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) f0 65 04 08 00 00 00 00 ~ 3roll (codeword pointer) f8 ae 04 08 00 00 00 00 ~ rex-w (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) c7 00 00 00 00 00 00 00 ~ 0xc7 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 08 b4 04 08 00 00 00 00 ~ addressing-reg64 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b8 71 04 08 00 00 00 00 ~ pack32 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ mov-reg64-imm64 is defined here via the label transform; this is its entry header. e0 c0 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 2d 72 65 67 36 34 2d 69 6d 6d 36 34 00 00 00 00 00 00 00 ~ (alignment padding) ~ label mov-reg64-imm64 at offset 0x000000000004c190 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) f0 65 04 08 00 00 00 00 ~ 3roll (codeword pointer) f8 ae 04 08 00 00 00 00 ~ rex-w (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) d0 94 04 08 00 00 00 00 ~ reg64 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) b8 00 00 00 00 00 00 00 ~ 0xb8 (integer literal) a0 b2 04 08 00 00 00 00 ~ opcodereg (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 71 04 08 00 00 00 00 ~ pack64 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ mov-extrareg64-imm64 is defined here via the label transform; this is its entry header. 70 c1 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 2d 65 78 74 72 61 72 65 67 36 34 2d 69 6d 6d 36 34 00 00 ~ (alignment padding) ~ label mov-extrareg64-imm64 at offset 0x000000000004c208 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) f0 65 04 08 00 00 00 00 ~ 3roll (codeword pointer) 60 b0 04 08 00 00 00 00 ~ rex-wb (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 48 98 04 08 00 00 00 00 ~ extrareg64 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) b8 00 00 00 00 00 00 00 ~ 0xb8 (integer literal) a0 b2 04 08 00 00 00 00 ~ opcodereg (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 71 04 08 00 00 00 00 ~ pack64 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ mov-reg64-reg64 is defined here via the label transform; this is its entry header. e8 c1 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 2d 72 65 67 36 34 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) ~ label mov-reg64-reg64 at offset 0x000000000004c280 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) f0 65 04 08 00 00 00 00 ~ 3roll (codeword pointer) f8 ae 04 08 00 00 00 00 ~ rex-w (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 89 00 00 00 00 00 00 00 ~ 0x89 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) d0 94 04 08 00 00 00 00 ~ reg64 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 08 b4 04 08 00 00 00 00 ~ addressing-reg64 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ mov-indirect-reg64-reg64 is defined here via the label transform; this is its entry header. 60 c2 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 2d 72 65 67 36 34 00 00 00 00 00 00 ~ (alignment padding) ~ label mov-indirect-reg64-reg64 at offset 0x000000000004c308 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) f0 65 04 08 00 00 00 00 ~ 3roll (codeword pointer) f8 ae 04 08 00 00 00 00 ~ rex-w (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 89 00 00 00 00 00 00 00 ~ 0x89 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) d0 94 04 08 00 00 00 00 ~ reg64 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) c0 b4 04 08 00 00 00 00 ~ addressing-indirect-reg64 ~ (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ mov-disp8-reg64-reg64 is defined here via the label transform; this is its entry header. e0 c2 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 2d 64 69 73 70 38 2d 72 65 67 36 34 2d 72 65 67 36 34 00 ~ (alignment padding) ~ label mov-disp8-reg64-reg64 at offset 0x000000000004c388 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) f8 ae 04 08 00 00 00 00 ~ rex-w (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 89 00 00 00 00 00 00 00 ~ 0x89 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) f0 65 04 08 00 00 00 00 ~ 3roll (codeword pointer) d0 94 04 08 00 00 00 00 ~ reg64 (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 60 b6 04 08 00 00 00 00 ~ addressing-disp8-reg64 ~ (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ mov-reg64-indirect-reg64 is defined here via the label transform; this is its entry header. 68 c3 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 2d 72 65 67 36 34 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 00 00 00 00 ~ (alignment padding) ~ label mov-reg64-indirect-reg64 at offset 0x000000000004c430 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) f0 65 04 08 00 00 00 00 ~ 3roll (codeword pointer) f8 ae 04 08 00 00 00 00 ~ rex-w (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 8b 00 00 00 00 00 00 00 ~ 0x8b (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) d0 94 04 08 00 00 00 00 ~ reg64 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) c0 b4 04 08 00 00 00 00 ~ addressing-indirect-reg64 ~ (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ mov-reg64-disp8-reg64 is defined here via the label transform; this is its entry header. 08 c4 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 2d 72 65 67 36 34 2d 64 69 73 70 38 2d 72 65 67 36 34 00 ~ (alignment padding) ~ label mov-reg64-disp8-reg64 at offset 0x000000000004c4a8 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) f8 ae 04 08 00 00 00 00 ~ rex-w (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 8b 00 00 00 00 00 00 00 ~ 0x8b (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) d0 94 04 08 00 00 00 00 ~ reg64 (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 60 b6 04 08 00 00 00 00 ~ addressing-disp8-reg64 ~ (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ mov-reg64-disp32-reg64 is defined here via the label transform; this is its entry header. 88 c4 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 2d 72 65 67 36 34 2d 64 69 73 70 33 32 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label mov-reg64-disp32-reg64 at offset 0x000000000004c548 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) f8 ae 04 08 00 00 00 00 ~ rex-w (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 89 00 00 00 00 00 00 00 ~ 0x89 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) f0 65 04 08 00 00 00 00 ~ 3roll (codeword pointer) d0 94 04 08 00 00 00 00 ~ reg64 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) f0 65 04 08 00 00 00 00 ~ 3roll (codeword pointer) 90 b7 04 08 00 00 00 00 ~ addressing-disp32-reg64 ~ (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ mov-reg64-indexed-reg64 is defined here via the label transform; this is its entry header. 20 c5 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 2d 72 65 67 36 34 2d 69 6e 64 65 78 65 64 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) ~ label mov-reg64-indexed-reg64 at offset 0x000000000004c5f8 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) f8 ae 04 08 00 00 00 00 ~ rex-w (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 8b 00 00 00 00 00 00 00 ~ 0x8b (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) d0 94 04 08 00 00 00 00 ~ reg64 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) c0 b8 04 08 00 00 00 00 ~ addressing-indexed-reg64 ~ (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ mov-indexed-reg64-reg64 is defined here via the label transform; this is its entry header. d0 c5 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 2d 69 6e 64 65 78 65 64 2d 72 65 67 36 34 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) ~ label mov-indexed-reg64-reg64 at offset 0x000000000004c6b8 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) f8 ae 04 08 00 00 00 00 ~ rex-w (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 89 00 00 00 00 00 00 00 ~ 0x89 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 94 04 08 00 00 00 00 ~ reg64 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) c0 b8 04 08 00 00 00 00 ~ addressing-indexed-reg64 ~ (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ mov-indirect-reg64-reg32 is defined here via the label transform; this is its entry header. 90 c6 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 2d 72 65 67 33 32 00 00 00 00 00 00 ~ (alignment padding) ~ label mov-indirect-reg64-reg32 at offset 0x000000000004c790 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) f0 65 04 08 00 00 00 00 ~ 3roll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 89 00 00 00 00 00 00 00 ~ 0x89 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) c0 9b 04 08 00 00 00 00 ~ reg32 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) c0 b4 04 08 00 00 00 00 ~ addressing-indirect-reg64 ~ (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ mov-disp8-reg64-reg32 is defined here via the label transform; this is its entry header. 68 c7 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 2d 64 69 73 70 38 2d 72 65 67 36 34 2d 72 65 67 33 32 00 ~ (alignment padding) ~ label mov-disp8-reg64-reg32 at offset 0x000000000004c808 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 89 00 00 00 00 00 00 00 ~ 0x89 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) f0 65 04 08 00 00 00 00 ~ 3roll (codeword pointer) c0 9b 04 08 00 00 00 00 ~ reg32 (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 60 b6 04 08 00 00 00 00 ~ addressing-disp8-reg64 ~ (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ mov-reg32-indirect-reg64 is defined here via the label transform; this is its entry header. e8 c7 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 2d 72 65 67 33 32 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 00 00 00 00 ~ (alignment padding) ~ label mov-reg32-indirect-reg64 at offset 0x000000000004c8a8 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) f0 65 04 08 00 00 00 00 ~ 3roll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 8b 00 00 00 00 00 00 00 ~ 0x8b (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) c0 9b 04 08 00 00 00 00 ~ reg32 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) c0 b4 04 08 00 00 00 00 ~ addressing-indirect-reg64 ~ (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ mov-reg32-disp8-reg64 is defined here via the label transform; this is its entry header. 80 c8 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 2d 72 65 67 33 32 2d 64 69 73 70 38 2d 72 65 67 36 34 00 ~ (alignment padding) ~ label mov-reg32-disp8-reg64 at offset 0x000000000004c918 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 8b 00 00 00 00 00 00 00 ~ 0x8b (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) c0 9b 04 08 00 00 00 00 ~ reg32 (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 60 b6 04 08 00 00 00 00 ~ addressing-disp8-reg64 ~ (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ mov-indirect-reg64-reg16 is defined here via the label transform; this is its entry header. f8 c8 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 2d 72 65 67 31 36 00 00 00 00 00 00 ~ (alignment padding) ~ label mov-indirect-reg64-reg16 at offset 0x000000000004c9b0 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) f0 65 04 08 00 00 00 00 ~ 3roll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 89 00 00 00 00 00 00 00 ~ 0x89 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 30 9f 04 08 00 00 00 00 ~ reg16 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) c0 b4 04 08 00 00 00 00 ~ addressing-indirect-reg64 ~ (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ mov-disp8-reg64-reg16 is defined here via the label transform; this is its entry header. 88 c9 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 2d 64 69 73 70 38 2d 72 65 67 36 34 2d 72 65 67 31 36 00 ~ (alignment padding) ~ label mov-disp8-reg64-reg16 at offset 0x000000000004ca40 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 89 00 00 00 00 00 00 00 ~ 0x89 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) f0 65 04 08 00 00 00 00 ~ 3roll (codeword pointer) 30 9f 04 08 00 00 00 00 ~ reg16 (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 60 b6 04 08 00 00 00 00 ~ addressing-disp8-reg64 ~ (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ mov-reg16-indirect-reg64 is defined here via the label transform; this is its entry header. 20 ca 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 2d 72 65 67 31 36 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 00 00 00 00 ~ (alignment padding) ~ label mov-reg16-indirect-reg64 at offset 0x000000000004caf8 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) f0 65 04 08 00 00 00 00 ~ 3roll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 8b 00 00 00 00 00 00 00 ~ 0x8b (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 30 9f 04 08 00 00 00 00 ~ reg16 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) c0 b4 04 08 00 00 00 00 ~ addressing-indirect-reg64 ~ (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ mov-reg16-disp8-reg64 is defined here via the label transform; this is its entry header. d0 ca 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 2d 72 65 67 31 36 2d 64 69 73 70 38 2d 72 65 67 36 34 00 ~ (alignment padding) ~ label mov-reg16-disp8-reg64 at offset 0x000000000004cb80 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 8b 00 00 00 00 00 00 00 ~ 0x8b (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 30 9f 04 08 00 00 00 00 ~ reg16 (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 60 b6 04 08 00 00 00 00 ~ addressing-disp8-reg64 ~ (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ mov-indirect-reg64-reg8 is defined here via the label transform; this is its entry header. 60 cb 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 2d 72 65 67 38 00 00 00 00 00 00 00 ~ (alignment padding) ~ label mov-indirect-reg64-reg8 at offset 0x000000000004cc30 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) f0 65 04 08 00 00 00 00 ~ 3roll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 88 00 00 00 00 00 00 00 ~ 0x88 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) a0 a2 04 08 00 00 00 00 ~ reg8 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) c0 b4 04 08 00 00 00 00 ~ addressing-indirect-reg64 ~ (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ mov-disp8-reg64-reg8 is defined here via the label transform; this is its entry header. 08 cc 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 2d 64 69 73 70 38 2d 72 65 67 36 34 2d 72 65 67 38 00 00 ~ (alignment padding) ~ label mov-disp8-reg64-reg8 at offset 0x000000000004cca8 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 88 00 00 00 00 00 00 00 ~ 0x88 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) f0 65 04 08 00 00 00 00 ~ 3roll (codeword pointer) a0 a2 04 08 00 00 00 00 ~ reg8 (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 60 b6 04 08 00 00 00 00 ~ addressing-disp8-reg64 ~ (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ mov-reg8-indirect-reg64 is defined here via the label transform; this is its entry header. 88 cc 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 2d 72 65 67 38 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) ~ label mov-reg8-indirect-reg64 at offset 0x000000000004cd48 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) f0 65 04 08 00 00 00 00 ~ 3roll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 8a 00 00 00 00 00 00 00 ~ 0x8a (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) a0 a2 04 08 00 00 00 00 ~ reg8 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) c0 b4 04 08 00 00 00 00 ~ addressing-indirect-reg64 ~ (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ mov-reg8-disp8-reg64 is defined here via the label transform; this is its entry header. 20 cd 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 2d 72 65 67 38 2d 64 69 73 70 38 2d 72 65 67 36 34 00 00 ~ (alignment padding) ~ label mov-reg8-disp8-reg64 at offset 0x000000000004cdb8 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 8a 00 00 00 00 00 00 00 ~ 0x8a (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) a0 a2 04 08 00 00 00 00 ~ reg8 (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 60 b6 04 08 00 00 00 00 ~ addressing-disp8-reg64 ~ (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ mov-reg8-reg8 is defined here via the label transform; this is its entry header. 98 cd 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 2d 72 65 67 38 2d 72 65 67 38 00 ~ (alignment padding) ~ label mov-reg8-reg8 at offset 0x000000000004ce40 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) f0 65 04 08 00 00 00 00 ~ 3roll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 88 00 00 00 00 00 00 00 ~ 0x88 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) a0 a2 04 08 00 00 00 00 ~ reg8 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 60 b4 04 08 00 00 00 00 ~ addressing-reg8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ movs8 is defined here via the label transform; this is its entry header. 28 ce 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 73 38 00 ~ (alignment padding) ~ label movs8 at offset 0x000000000004cea8 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a4 00 00 00 00 00 00 00 ~ 0xa4 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ movs16 is defined here via the label transform; this is its entry header. 98 ce 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 73 31 36 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label movs16 at offset 0x000000000004cee8 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a5 00 00 00 00 00 00 00 ~ 0xa5 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ movs32 is defined here via the label transform; this is its entry header. d0 ce 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 73 33 32 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label movs32 at offset 0x000000000004cf40 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a5 00 00 00 00 00 00 00 ~ 0xa5 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ movs64 is defined here via the label transform; this is its entry header. 28 cf 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 73 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label movs64 at offset 0x000000000004cf80 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) f8 ae 04 08 00 00 00 00 ~ rex-w (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a5 00 00 00 00 00 00 00 ~ 0xa5 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rep-movs8 is defined here via the label transform; this is its entry header. 68 cf 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 2d 6d 6f 76 73 38 00 00 00 00 00 ~ (alignment padding) ~ label rep-movs8 at offset 0x000000000004cfc8 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a4 00 00 00 00 00 00 00 ~ 0xa4 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rep-movs16 is defined here via the label transform; this is its entry header. b0 cf 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 2d 6d 6f 76 73 31 36 00 00 00 00 ~ (alignment padding) ~ label rep-movs16 at offset 0x000000000004d020 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a5 00 00 00 00 00 00 00 ~ 0xa5 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rep-movs32 is defined here via the label transform; this is its entry header. 08 d0 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 2d 6d 6f 76 73 33 32 00 00 00 00 ~ (alignment padding) ~ label rep-movs32 at offset 0x000000000004d090 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a5 00 00 00 00 00 00 00 ~ 0xa5 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rep-movs64 is defined here via the label transform; this is its entry header. 78 d0 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 2d 6d 6f 76 73 36 34 00 00 00 00 ~ (alignment padding) ~ label rep-movs64 at offset 0x000000000004d0e8 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) f8 ae 04 08 00 00 00 00 ~ rex-w (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a5 00 00 00 00 00 00 00 ~ 0xa5 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ lods8 is defined here via the label transform; this is its entry header. d0 d0 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 64 73 38 00 ~ (alignment padding) ~ label lods8 at offset 0x000000000004d140 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ac 00 00 00 00 00 00 00 ~ 0xac (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ lods16 is defined here via the label transform; this is its entry header. 30 d1 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 64 73 31 36 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label lods16 at offset 0x000000000004d180 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ad 00 00 00 00 00 00 00 ~ 0xad (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ lods32 is defined here via the label transform; this is its entry header. 68 d1 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 64 73 33 32 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label lods32 at offset 0x000000000004d1d8 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ad 00 00 00 00 00 00 00 ~ 0xad (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ lods64 is defined here via the label transform; this is its entry header. c0 d1 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 64 73 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label lods64 at offset 0x000000000004d218 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) f8 ae 04 08 00 00 00 00 ~ rex-w (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ad 00 00 00 00 00 00 00 ~ 0xad (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rep-lods8 is defined here via the label transform; this is its entry header. 00 d2 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 2d 6c 6f 64 73 38 00 00 00 00 00 ~ (alignment padding) ~ label rep-lods8 at offset 0x000000000004d260 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ac 00 00 00 00 00 00 00 ~ 0xac (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rep-lods16 is defined here via the label transform; this is its entry header. 48 d2 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 2d 6c 6f 64 73 31 36 00 00 00 00 ~ (alignment padding) ~ label rep-lods16 at offset 0x000000000004d2b8 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ad 00 00 00 00 00 00 00 ~ 0xad (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rep-lods32 is defined here via the label transform; this is its entry header. a0 d2 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 2d 6c 6f 64 73 33 32 00 00 00 00 ~ (alignment padding) ~ label rep-lods32 at offset 0x000000000004d328 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ad 00 00 00 00 00 00 00 ~ 0xad (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rep-lods64 is defined here via the label transform; this is its entry header. 10 d3 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 2d 6c 6f 64 73 36 34 00 00 00 00 ~ (alignment padding) ~ label rep-lods64 at offset 0x000000000004d380 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) f8 ae 04 08 00 00 00 00 ~ rex-w (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ad 00 00 00 00 00 00 00 ~ 0xad (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ stos8 is defined here via the label transform; this is its entry header. 68 d3 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 74 6f 73 38 00 ~ (alignment padding) ~ label stos8 at offset 0x000000000004d3d8 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) aa 00 00 00 00 00 00 00 ~ 0xaa (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ stos16 is defined here via the label transform; this is its entry header. c8 d3 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 74 6f 73 31 36 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label stos16 at offset 0x000000000004d418 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ab 00 00 00 00 00 00 00 ~ 0xab (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ stos32 is defined here via the label transform; this is its entry header. 00 d4 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 74 6f 73 33 32 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label stos32 at offset 0x000000000004d470 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ab 00 00 00 00 00 00 00 ~ 0xab (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ stos64 is defined here via the label transform; this is its entry header. 58 d4 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 74 6f 73 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label stos64 at offset 0x000000000004d4b0 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) f8 ae 04 08 00 00 00 00 ~ rex-w (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ab 00 00 00 00 00 00 00 ~ 0xab (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rep-stos8 is defined here via the label transform; this is its entry header. 98 d4 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 2d 73 74 6f 73 38 00 00 00 00 00 ~ (alignment padding) ~ label rep-stos8 at offset 0x000000000004d4f8 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) aa 00 00 00 00 00 00 00 ~ 0xaa (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rep-stos16 is defined here via the label transform; this is its entry header. e0 d4 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 2d 73 74 6f 73 31 36 00 00 00 00 ~ (alignment padding) ~ label rep-stos16 at offset 0x000000000004d550 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ab 00 00 00 00 00 00 00 ~ 0xab (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rep-stos32 is defined here via the label transform; this is its entry header. 38 d5 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 2d 73 74 6f 73 33 32 00 00 00 00 ~ (alignment padding) ~ label rep-stos32 at offset 0x000000000004d5c0 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ab 00 00 00 00 00 00 00 ~ 0xab (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rep-stos64 is defined here via the label transform; this is its entry header. a8 d5 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 2d 73 74 6f 73 36 34 00 00 00 00 ~ (alignment padding) ~ label rep-stos64 at offset 0x000000000004d618 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) f8 ae 04 08 00 00 00 00 ~ rex-w (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ab 00 00 00 00 00 00 00 ~ 0xab (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ cmps8 is defined here via the label transform; this is its entry header. 00 d6 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 63 6d 70 73 38 00 ~ (alignment padding) ~ label cmps8 at offset 0x000000000004d670 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a6 00 00 00 00 00 00 00 ~ 0xa6 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ cmps16 is defined here via the label transform; this is its entry header. 60 d6 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 63 6d 70 73 31 36 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label cmps16 at offset 0x000000000004d6b0 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a7 00 00 00 00 00 00 00 ~ 0xa7 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ cmps32 is defined here via the label transform; this is its entry header. 98 d6 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 63 6d 70 73 33 32 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label cmps32 at offset 0x000000000004d708 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a7 00 00 00 00 00 00 00 ~ 0xa7 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ cmps64 is defined here via the label transform; this is its entry header. f0 d6 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 63 6d 70 73 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label cmps64 at offset 0x000000000004d748 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) f8 ae 04 08 00 00 00 00 ~ rex-w (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a7 00 00 00 00 00 00 00 ~ 0xa7 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ repz-cmps8 is defined here via the label transform; this is its entry header. 30 d7 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 7a 2d 63 6d 70 73 38 00 00 00 00 ~ (alignment padding) ~ label repz-cmps8 at offset 0x000000000004d790 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a6 00 00 00 00 00 00 00 ~ 0xa6 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ repz-cmps16 is defined here via the label transform; this is its entry header. 78 d7 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 7a 2d 63 6d 70 73 31 36 00 00 00 ~ (alignment padding) ~ label repz-cmps16 at offset 0x000000000004d7e8 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a7 00 00 00 00 00 00 00 ~ 0xa7 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ repz-cmps32 is defined here via the label transform; this is its entry header. d0 d7 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 7a 2d 63 6d 70 73 33 32 00 00 00 ~ (alignment padding) ~ label repz-cmps32 at offset 0x000000000004d858 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a7 00 00 00 00 00 00 00 ~ 0xa7 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ repz-cmps64 is defined here via the label transform; this is its entry header. 40 d8 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 7a 2d 63 6d 70 73 36 34 00 00 00 ~ (alignment padding) ~ label repz-cmps64 at offset 0x000000000004d8b0 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) f8 ae 04 08 00 00 00 00 ~ rex-w (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a7 00 00 00 00 00 00 00 ~ 0xa7 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ repnz-cmps8 is defined here via the label transform; this is its entry header. 98 d8 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 6e 7a 2d 63 6d 70 73 38 00 00 00 ~ (alignment padding) ~ label repnz-cmps8 at offset 0x000000000004d910 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f2 00 00 00 00 00 00 00 ~ 0xf2 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a6 00 00 00 00 00 00 00 ~ 0xa6 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ repnz-cmps16 is defined here via the label transform; this is its entry header. f8 d8 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 6e 7a 2d 63 6d 70 73 31 36 00 00 ~ (alignment padding) ~ label repnz-cmps16 at offset 0x000000000004d968 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f2 00 00 00 00 00 00 00 ~ 0xf2 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a7 00 00 00 00 00 00 00 ~ 0xa7 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ repnz-cmps32 is defined here via the label transform; this is its entry header. 50 d9 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 6e 7a 2d 63 6d 70 73 33 32 00 00 ~ (alignment padding) ~ label repnz-cmps32 at offset 0x000000000004d9d8 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f2 00 00 00 00 00 00 00 ~ 0xf2 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a7 00 00 00 00 00 00 00 ~ 0xa7 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ repnz-cmps64 is defined here via the label transform; this is its entry header. c0 d9 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 6e 7a 2d 63 6d 70 73 36 34 00 00 ~ (alignment padding) ~ label repnz-cmps64 at offset 0x000000000004da30 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f2 00 00 00 00 00 00 00 ~ 0xf2 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) f8 ae 04 08 00 00 00 00 ~ rex-w (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a7 00 00 00 00 00 00 00 ~ 0xa7 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ scas8 is defined here via the label transform; this is its entry header. 18 da 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 63 61 73 38 00 ~ (alignment padding) ~ label scas8 at offset 0x000000000004da88 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a8 00 00 00 00 00 00 00 ~ 0xa8 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ scas16 is defined here via the label transform; this is its entry header. 78 da 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 63 61 73 31 36 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label scas16 at offset 0x000000000004dac8 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) af 00 00 00 00 00 00 00 ~ 0xaf (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ scas32 is defined here via the label transform; this is its entry header. b0 da 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 63 61 73 33 32 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label scas32 at offset 0x000000000004db20 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) af 00 00 00 00 00 00 00 ~ 0xaf (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ scas64 is defined here via the label transform; this is its entry header. 08 db 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 63 61 73 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label scas64 at offset 0x000000000004db60 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) f8 ae 04 08 00 00 00 00 ~ rex-w (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) af 00 00 00 00 00 00 00 ~ 0xaf (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ repz-scas8 is defined here via the label transform; this is its entry header. 48 db 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 7a 2d 73 63 61 73 38 00 00 00 00 ~ (alignment padding) ~ label repz-scas8 at offset 0x000000000004dba8 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ae 00 00 00 00 00 00 00 ~ 0xae (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ repz-scas16 is defined here via the label transform; this is its entry header. 90 db 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 7a 2d 73 63 61 73 31 36 00 00 00 ~ (alignment padding) ~ label repz-scas16 at offset 0x000000000004dc00 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) af 00 00 00 00 00 00 00 ~ 0xaf (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ repz-scas32 is defined here via the label transform; this is its entry header. e8 db 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 7a 2d 73 63 61 73 33 32 00 00 00 ~ (alignment padding) ~ label repz-scas32 at offset 0x000000000004dc70 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) af 00 00 00 00 00 00 00 ~ 0xaf (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ repz-scas64 is defined here via the label transform; this is its entry header. 58 dc 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 7a 2d 73 63 61 73 36 34 00 00 00 ~ (alignment padding) ~ label repz-scas64 at offset 0x000000000004dcc8 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) f8 ae 04 08 00 00 00 00 ~ rex-w (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) af 00 00 00 00 00 00 00 ~ 0xaf (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ repnz-scas8 is defined here via the label transform; this is its entry header. b0 dc 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 6e 7a 2d 73 63 61 73 38 00 00 00 ~ (alignment padding) ~ label repnz-scas8 at offset 0x000000000004dd28 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f2 00 00 00 00 00 00 00 ~ 0xf2 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ae 00 00 00 00 00 00 00 ~ 0xae (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ repnz-scas16 is defined here via the label transform; this is its entry header. 10 dd 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 6e 7a 2d 73 63 61 73 31 36 00 00 ~ (alignment padding) ~ label repnz-scas16 at offset 0x000000000004dd80 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f2 00 00 00 00 00 00 00 ~ 0xf2 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) af 00 00 00 00 00 00 00 ~ 0xaf (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ repnz-scas32 is defined here via the label transform; this is its entry header. 68 dd 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 6e 7a 2d 73 63 61 73 33 32 00 00 ~ (alignment padding) ~ label repnz-scas32 at offset 0x000000000004ddf0 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f2 00 00 00 00 00 00 00 ~ 0xf2 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) af 00 00 00 00 00 00 00 ~ 0xaf (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ repnz-scas64 is defined here via the label transform; this is its entry header. d8 dd 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 6e 7a 2d 73 63 61 73 36 34 00 00 ~ (alignment padding) ~ label repnz-scas64 at offset 0x000000000004de48 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f2 00 00 00 00 00 00 00 ~ 0xf2 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) f8 ae 04 08 00 00 00 00 ~ rex-w (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) af 00 00 00 00 00 00 00 ~ 0xaf (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ add-reg64-reg64 is defined here via the label transform; this is its entry header. 30 de 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 61 64 64 2d 72 65 67 36 34 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) ~ label add-reg64-reg64 at offset 0x000000000004deb0 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) f0 65 04 08 00 00 00 00 ~ 3roll (codeword pointer) f8 ae 04 08 00 00 00 00 ~ rex-w (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) d0 94 04 08 00 00 00 00 ~ reg64 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 08 b4 04 08 00 00 00 00 ~ addressing-reg64 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ add-indirect-reg64-reg64 is defined here via the label transform; this is its entry header. 90 de 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 61 64 64 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 2d 72 65 67 36 34 00 00 00 00 00 00 ~ (alignment padding) ~ label add-indirect-reg64-reg64 at offset 0x000000000004df38 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) f0 65 04 08 00 00 00 00 ~ 3roll (codeword pointer) f8 ae 04 08 00 00 00 00 ~ rex-w (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) d0 94 04 08 00 00 00 00 ~ reg64 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) c0 b4 04 08 00 00 00 00 ~ addressing-indirect-reg64 ~ (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ add-reg64-indirect-reg64 is defined here via the label transform; this is its entry header. 10 df 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 61 64 64 2d 72 65 67 36 34 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 00 00 00 00 ~ (alignment padding) ~ label add-reg64-indirect-reg64 at offset 0x000000000004dfc0 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) f0 65 04 08 00 00 00 00 ~ 3roll (codeword pointer) f8 ae 04 08 00 00 00 00 ~ rex-w (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) d0 94 04 08 00 00 00 00 ~ reg64 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) c0 b4 04 08 00 00 00 00 ~ addressing-indirect-reg64 ~ (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ add-reg64-imm8 is defined here via the label transform; this is its entry header. 98 df 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 61 64 64 2d 72 65 67 36 34 2d 69 6d 6d 38 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label add-reg64-imm8 at offset 0x000000000004e038 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) f0 65 04 08 00 00 00 00 ~ 3roll (codeword pointer) f8 ae 04 08 00 00 00 00 ~ rex-w (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 83 00 00 00 00 00 00 00 ~ 0x83 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 08 b4 04 08 00 00 00 00 ~ addressing-reg64 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ sub-reg64-reg64 is defined here via the label transform; this is its entry header. 18 e0 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 75 62 2d 72 65 67 36 34 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) ~ label sub-reg64-reg64 at offset 0x000000000004e0c8 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) f0 65 04 08 00 00 00 00 ~ 3roll (codeword pointer) f8 ae 04 08 00 00 00 00 ~ rex-w (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 2b 00 00 00 00 00 00 00 ~ 0x2b (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) d0 94 04 08 00 00 00 00 ~ reg64 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 08 b4 04 08 00 00 00 00 ~ addressing-reg64 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ sub-indirect-reg64-reg64 is defined here via the label transform; this is its entry header. a8 e0 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 75 62 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 2d 72 65 67 36 34 00 00 00 00 00 00 ~ (alignment padding) ~ label sub-indirect-reg64-reg64 at offset 0x000000000004e148 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) f0 65 04 08 00 00 00 00 ~ 3roll (codeword pointer) f8 ae 04 08 00 00 00 00 ~ rex-w (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 2b 00 00 00 00 00 00 00 ~ 0x2b (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) d0 94 04 08 00 00 00 00 ~ reg64 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) c0 b4 04 08 00 00 00 00 ~ addressing-indirect-reg64 ~ (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ sub-reg64-imm8 is defined here via the label transform; this is its entry header. 20 e1 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 75 62 2d 72 65 67 36 34 2d 69 6d 6d 38 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label sub-reg64-imm8 at offset 0x000000000004e1c8 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) f0 65 04 08 00 00 00 00 ~ 3roll (codeword pointer) f8 ae 04 08 00 00 00 00 ~ rex-w (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 83 00 00 00 00 00 00 00 ~ 0x83 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 08 b4 04 08 00 00 00 00 ~ addressing-reg64 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ sbb-reg64-imm8 is defined here via the label transform; this is its entry header. a8 e1 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 62 62 2d 72 65 67 36 34 2d 69 6d 6d 38 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label sbb-reg64-imm8 at offset 0x000000000004e258 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) f0 65 04 08 00 00 00 00 ~ 3roll (codeword pointer) f8 ae 04 08 00 00 00 00 ~ rex-w (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 83 00 00 00 00 00 00 00 ~ 0x83 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 08 b4 04 08 00 00 00 00 ~ addressing-reg64 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ mul-reg64 is defined here via the label transform; this is its entry header. 38 e2 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 75 6c 2d 72 65 67 36 34 00 00 00 00 00 ~ (alignment padding) ~ label mul-reg64 at offset 0x000000000004e2e0 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) f8 ae 04 08 00 00 00 00 ~ rex-w (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f7 00 00 00 00 00 00 00 ~ 0xf7 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 08 b4 04 08 00 00 00 00 ~ addressing-reg64 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ divmod-reg64 is defined here via the label transform; this is its entry header. c8 e2 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 64 69 76 6d 6f 64 2d 72 65 67 36 34 00 00 ~ (alignment padding) ~ label divmod-reg64 at offset 0x000000000004e358 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) f8 ae 04 08 00 00 00 00 ~ rex-w (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f7 00 00 00 00 00 00 00 ~ 0xf7 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 08 b4 04 08 00 00 00 00 ~ addressing-reg64 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ idivmod-reg64 is defined here via the label transform; this is its entry header. 40 e3 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 69 64 69 76 6d 6f 64 2d 72 65 67 36 34 00 ~ (alignment padding) ~ label idivmod-reg64 at offset 0x000000000004e3d0 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) f8 ae 04 08 00 00 00 00 ~ rex-w (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f7 00 00 00 00 00 00 00 ~ 0xf7 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 08 b4 04 08 00 00 00 00 ~ addressing-reg64 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ inc-reg64 is defined here via the label transform; this is its entry header. b8 e3 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 69 6e 63 2d 72 65 67 36 34 00 00 00 00 00 ~ (alignment padding) ~ label inc-reg64 at offset 0x000000000004e448 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) f8 ae 04 08 00 00 00 00 ~ rex-w (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ff 00 00 00 00 00 00 00 ~ 0xff (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 08 b4 04 08 00 00 00 00 ~ addressing-reg64 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ dec-reg64 is defined here via the label transform; this is its entry header. 30 e4 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 64 65 63 2d 72 65 67 36 34 00 00 00 00 00 ~ (alignment padding) ~ label dec-reg64 at offset 0x000000000004e4c0 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) f8 ae 04 08 00 00 00 00 ~ rex-w (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ff 00 00 00 00 00 00 00 ~ 0xff (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 08 b4 04 08 00 00 00 00 ~ addressing-reg64 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ and-reg64-reg64 is defined here via the label transform; this is its entry header. a8 e4 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 61 6e 64 2d 72 65 67 36 34 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) ~ label and-reg64-reg64 at offset 0x000000000004e540 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) f0 65 04 08 00 00 00 00 ~ 3roll (codeword pointer) f8 ae 04 08 00 00 00 00 ~ rex-w (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 23 00 00 00 00 00 00 00 ~ 0x23 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) d0 94 04 08 00 00 00 00 ~ reg64 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 08 b4 04 08 00 00 00 00 ~ addressing-reg64 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ and-reg64-imm8 is defined here via the label transform; this is its entry header. 20 e5 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 61 6e 64 2d 72 65 67 36 34 2d 69 6d 6d 38 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label and-reg64-imm8 at offset 0x000000000004e5b8 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) f0 65 04 08 00 00 00 00 ~ 3roll (codeword pointer) f8 ae 04 08 00 00 00 00 ~ rex-w (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 83 00 00 00 00 00 00 00 ~ 0x83 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 08 b4 04 08 00 00 00 00 ~ addressing-reg64 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ or-reg64-reg64 is defined here via the label transform; this is its entry header. 98 e5 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6f 72 2d 72 65 67 36 34 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label or-reg64-reg64 at offset 0x000000000004e648 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) f0 65 04 08 00 00 00 00 ~ 3roll (codeword pointer) f8 ae 04 08 00 00 00 00 ~ rex-w (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0b 00 00 00 00 00 00 00 ~ 0xb (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) d0 94 04 08 00 00 00 00 ~ reg64 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 08 b4 04 08 00 00 00 00 ~ addressing-reg64 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ or-reg64-imm8 is defined here via the label transform; this is its entry header. 28 e6 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6f 72 2d 72 65 67 36 34 2d 69 6d 6d 38 00 ~ (alignment padding) ~ label or-reg64-imm8 at offset 0x000000000004e6b8 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) f0 65 04 08 00 00 00 00 ~ 3roll (codeword pointer) f8 ae 04 08 00 00 00 00 ~ rex-w (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 83 00 00 00 00 00 00 00 ~ 0x83 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 08 b4 04 08 00 00 00 00 ~ addressing-reg64 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ xor-reg64-reg64 is defined here via the label transform; this is its entry header. a0 e6 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 78 6f 72 2d 72 65 67 36 34 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) ~ label xor-reg64-reg64 at offset 0x000000000004e748 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) f0 65 04 08 00 00 00 00 ~ 3roll (codeword pointer) f8 ae 04 08 00 00 00 00 ~ rex-w (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 33 00 00 00 00 00 00 00 ~ 0x33 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) d0 94 04 08 00 00 00 00 ~ reg64 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 08 b4 04 08 00 00 00 00 ~ addressing-reg64 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ not-reg64 is defined here via the label transform; this is its entry header. 28 e7 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6e 6f 74 2d 72 65 67 36 34 00 00 00 00 00 ~ (alignment padding) ~ label not-reg64 at offset 0x000000000004e7b8 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) f8 ae 04 08 00 00 00 00 ~ rex-w (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f7 00 00 00 00 00 00 00 ~ 0xf7 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 08 b4 04 08 00 00 00 00 ~ addressing-reg64 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rol-reg64-imm8 is defined here via the label transform; this is its entry header. a0 e7 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 6f 6c 2d 72 65 67 36 34 2d 69 6d 6d 38 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label rol-reg64-imm8 at offset 0x000000000004e838 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) f0 65 04 08 00 00 00 00 ~ 3roll (codeword pointer) f8 ae 04 08 00 00 00 00 ~ rex-w (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) c1 00 00 00 00 00 00 00 ~ 0xc1 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 08 b4 04 08 00 00 00 00 ~ addressing-reg64 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rol-reg8-imm8 is defined here via the label transform; this is its entry header. 18 e8 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 6f 6c 2d 72 65 67 38 2d 69 6d 6d 38 00 ~ (alignment padding) ~ label rol-reg8-imm8 at offset 0x000000000004e8c0 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) f0 65 04 08 00 00 00 00 ~ 3roll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) c0 00 00 00 00 00 00 00 ~ 0xc0 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 60 b4 04 08 00 00 00 00 ~ addressing-reg8 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ ror-reg64-imm8 is defined here via the label transform; this is its entry header. a8 e8 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 6f 72 2d 72 65 67 36 34 2d 69 6d 6d 38 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label ror-reg64-imm8 at offset 0x000000000004e948 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) f0 65 04 08 00 00 00 00 ~ 3roll (codeword pointer) f8 ae 04 08 00 00 00 00 ~ rex-w (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) c1 00 00 00 00 00 00 00 ~ 0xc1 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 08 b4 04 08 00 00 00 00 ~ addressing-reg64 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ ror-reg8-imm8 is defined here via the label transform; this is its entry header. 28 e9 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 6f 72 2d 72 65 67 38 2d 69 6d 6d 38 00 ~ (alignment padding) ~ label ror-reg8-imm8 at offset 0x000000000004e9d0 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) f0 65 04 08 00 00 00 00 ~ 3roll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) c0 00 00 00 00 00 00 00 ~ 0xc0 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 08 b4 04 08 00 00 00 00 ~ addressing-reg64 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ cmp-reg64-reg64 is defined here via the label transform; this is its entry header. b8 e9 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 63 6d 70 2d 72 65 67 36 34 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) ~ label cmp-reg64-reg64 at offset 0x000000000004ea58 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) f0 65 04 08 00 00 00 00 ~ 3roll (codeword pointer) f8 ae 04 08 00 00 00 00 ~ rex-w (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 3b 00 00 00 00 00 00 00 ~ 0x3b (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) d0 94 04 08 00 00 00 00 ~ reg64 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 08 b4 04 08 00 00 00 00 ~ addressing-reg64 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ cmp-reg64-imm8 is defined here via the label transform; this is its entry header. 38 ea 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 63 6d 70 2d 72 65 67 36 34 2d 69 6d 6d 38 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label cmp-reg64-imm8 at offset 0x000000000004ead0 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) f0 65 04 08 00 00 00 00 ~ 3roll (codeword pointer) f8 ae 04 08 00 00 00 00 ~ rex-w (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 83 00 00 00 00 00 00 00 ~ 0x83 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 08 b4 04 08 00 00 00 00 ~ addressing-reg64 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ test-reg64-reg64 is defined here via the label transform; this is its entry header. b0 ea 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 74 65 73 74 2d 72 65 67 36 34 2d 72 65 67 36 34 00 00 00 00 00 00 ~ (alignment padding) ~ label test-reg64-reg64 at offset 0x000000000004eb60 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) f0 65 04 08 00 00 00 00 ~ 3roll (codeword pointer) f8 ae 04 08 00 00 00 00 ~ rex-w (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 85 00 00 00 00 00 00 00 ~ 0x85 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) d0 94 04 08 00 00 00 00 ~ reg64 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 08 b4 04 08 00 00 00 00 ~ addressing-reg64 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ set-reg8-cc is defined here via the label transform; this is its entry header. 40 eb 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 65 74 2d 72 65 67 38 2d 63 63 00 00 00 ~ (alignment padding) ~ label set-reg8-cc at offset 0x000000000004ebd8 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) f0 65 04 08 00 00 00 00 ~ 3roll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0f 00 00 00 00 00 00 00 ~ 0xf (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) f0 65 04 08 00 00 00 00 ~ 3roll (codeword pointer) 40 a8 04 08 00 00 00 00 ~ condition-code (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 90 00 00 00 00 00 00 00 ~ 0x90 (integer literal) d8 b2 04 08 00 00 00 00 ~ opcodecc (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) a0 a2 04 08 00 00 00 00 ~ reg8 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f0 65 04 08 00 00 00 00 ~ 3roll (codeword pointer) 08 b3 04 08 00 00 00 00 ~ modrm (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ jmp-cc-rel-imm8 is defined here via the label transform; this is its entry header. c0 eb 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6a 6d 70 2d 63 63 2d 72 65 6c 2d 69 6d 6d 38 00 00 00 00 00 00 00 ~ (alignment padding) ~ label jmp-cc-rel-imm8 at offset 0x000000000004ec90 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) f0 65 04 08 00 00 00 00 ~ 3roll (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 a8 04 08 00 00 00 00 ~ condition-code (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 70 00 00 00 00 00 00 00 ~ 0x70 (integer literal) d8 b2 04 08 00 00 00 00 ~ opcodecc (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ jmp-cc-rel-imm32 is defined here via the label transform; this is its entry header. 70 ec 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6a 6d 70 2d 63 63 2d 72 65 6c 2d 69 6d 6d 33 32 00 00 00 00 00 00 ~ (alignment padding) ~ label jmp-cc-rel-imm32 at offset 0x000000000004ed00 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) f0 65 04 08 00 00 00 00 ~ 3roll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0f 00 00 00 00 00 00 00 ~ 0xf (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 a8 04 08 00 00 00 00 ~ condition-code (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 70 00 00 00 00 00 00 00 ~ 0x70 (integer literal) d8 b2 04 08 00 00 00 00 ~ opcodecc (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b8 71 04 08 00 00 00 00 ~ pack32 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ jmp-abs-indirect-reg64 is defined here via the label transform; this is its entry header. e0 ec 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6a 6d 70 2d 61 62 73 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label jmp-abs-indirect-reg64 at offset 0x000000000004ed90 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ff 00 00 00 00 00 00 00 ~ 0xff (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) c0 b4 04 08 00 00 00 00 ~ addressing-indirect-reg64 ~ (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ jmp-rel-imm8 is defined here via the label transform; this is its entry header. 68 ed 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6a 6d 70 2d 72 65 6c 2d 69 6d 6d 38 00 00 ~ (alignment padding) ~ label jmp-rel-imm8 at offset 0x000000000004ee00 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) eb 00 00 00 00 00 00 00 ~ 0xeb (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ jmp-rel-imm32 is defined here via the label transform; this is its entry header. e8 ed 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6a 6d 70 2d 72 65 6c 2d 69 6d 6d 33 32 00 ~ (alignment padding) ~ label jmp-rel-imm32 at offset 0x000000000004ee58 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) e9 00 00 00 00 00 00 00 ~ 0xe9 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b8 71 04 08 00 00 00 00 ~ pack32 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ call-rel-imm32 is defined here via the label transform; this is its entry header. 40 ee 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 63 61 6c 6c 2d 72 65 6c 2d 69 6d 6d 33 32 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label call-rel-imm32 at offset 0x000000000004eeb8 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) e8 00 00 00 00 00 00 00 ~ 0xe8 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b8 71 04 08 00 00 00 00 ~ pack32 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ ret is defined here via the label transform; this is its entry header. 98 ee 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 74 00 00 00 ~ (alignment padding) ~ label ret at offset 0x000000000004ef08 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) c3 00 00 00 00 00 00 00 ~ 0xc3 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ pack-next is defined here via the label transform; this is its entry header. f8 ee 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 70 61 63 6b 2d 6e 65 78 74 00 00 00 00 00 ~ (alignment padding) ~ label pack-next at offset 0x000000000004ef48 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 18 d2 04 08 00 00 00 00 ~ lods64 (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 90 ed 04 08 00 00 00 00 ~ jmp-abs-indirect-reg64 ~ (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ pack-beforenext is defined here via the label transform; this is its entry header. 30 ef 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 70 61 63 6b 2d 62 65 66 6f 72 65 6e 65 78 74 00 00 00 00 00 00 00 ~ (alignment padding) ~ label pack-beforenext at offset 0x000000000004ef90 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 90 c1 04 08 00 00 00 00 ~ mov-reg64-imm64 (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 90 ed 04 08 00 00 00 00 ~ jmp-abs-indirect-reg64 ~ (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ pack-pushcontrol is defined here via the label transform; this is its entry header. 70 ef 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 70 61 63 6b 2d 70 75 73 68 63 6f 6e 74 72 6f 6c 00 00 00 00 00 00 ~ (alignment padding) ~ label pack-pushcontrol at offset 0x000000000004efe0 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 30 8c 04 08 00 00 00 00 ~ :rbp (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f8 ff ff ff ff ff ff ff ~ 0xfffffffffffffff8 (integer literal) 30 8c 04 08 00 00 00 00 ~ :rbp (codeword pointer) 10 be 04 08 00 00 00 00 ~ lea-reg64-disp8-reg64 ~ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 30 8c 04 08 00 00 00 00 ~ :rbp (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 88 c3 04 08 00 00 00 00 ~ mov-disp8-reg64-reg64 ~ (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ pack-popcontrol is defined here via the label transform; this is its entry header. c0 ef 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 70 61 63 6b 2d 70 6f 70 63 6f 6e 74 72 6f 6c 00 00 00 00 00 00 00 ~ (alignment padding) ~ label pack-popcontrol at offset 0x000000000004f068 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 30 8c 04 08 00 00 00 00 ~ :rbp (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f0 65 04 08 00 00 00 00 ~ 3roll (codeword pointer) a8 c4 04 08 00 00 00 00 ~ mov-reg64-disp8-reg64 ~ (codeword pointer) 30 8c 04 08 00 00 00 00 ~ :rbp (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 30 8c 04 08 00 00 00 00 ~ :rbp (codeword pointer) 10 be 04 08 00 00 00 00 ~ lea-reg64-disp8-reg64 ~ (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ log-offset is defined here via the label transform; this is its entry header. 48 f0 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 67 2d 6f 66 66 73 65 74 00 00 00 00 ~ (alignment padding) ~ label log-offset at offset 0x000000000004f0e0 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 01 00 00 00 00 00 ~ 0x10000 (integer literal) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ log-load-log is defined here via the label transform; this is its entry header. c8 f0 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 67 2d 6c 6f 61 64 2d 6c 6f 67 00 00 ~ (alignment padding) ~ label log-load-log at offset 0x000000000004f118 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) e0 f0 04 08 00 00 00 00 ~ log-offset (codeword pointer) 90 66 04 08 00 00 00 00 ~ + (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ log-load-s0 is defined here via the label transform; this is its entry header. 00 f1 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 67 2d 6c 6f 61 64 2d 73 30 00 00 00 ~ (alignment padding) ~ label log-load-s0 at offset 0x000000000004f158 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) e0 f0 04 08 00 00 00 00 ~ log-offset (codeword pointer) 90 66 04 08 00 00 00 00 ~ + (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 90 66 04 08 00 00 00 00 ~ + (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ log-load-r0 is defined here via the label transform; this is its entry header. 40 f1 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 67 2d 6c 6f 61 64 2d 72 30 00 00 00 ~ (alignment padding) ~ label log-load-r0 at offset 0x000000000004f1b0 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) e0 f0 04 08 00 00 00 00 ~ log-offset (codeword pointer) 90 66 04 08 00 00 00 00 ~ + (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) e0 66 04 08 00 00 00 00 ~ * (codeword pointer) 90 66 04 08 00 00 00 00 ~ + (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ log-load-latest is defined here via the label transform; this is its entry header. 98 f1 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 67 2d 6c 6f 61 64 2d 6c 61 74 65 73 74 00 00 00 00 00 00 00 ~ (alignment padding) ~ label log-load-latest at offset 0x000000000004f228 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) e0 f0 04 08 00 00 00 00 ~ log-offset (codeword pointer) 90 66 04 08 00 00 00 00 ~ + (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) e0 66 04 08 00 00 00 00 ~ * (codeword pointer) 90 66 04 08 00 00 00 00 ~ + (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ log-load-here is defined here via the label transform; this is its entry header. 08 f2 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 ~ (alignment padding) ~ label log-load-here at offset 0x000000000004f298 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) e0 f0 04 08 00 00 00 00 ~ log-offset (codeword pointer) 90 66 04 08 00 00 00 00 ~ + (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) e0 66 04 08 00 00 00 00 ~ * (codeword pointer) 90 66 04 08 00 00 00 00 ~ + (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ log-load-find is defined here via the label transform; this is its entry header. 80 f2 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 67 2d 6c 6f 61 64 2d 66 69 6e 64 00 ~ (alignment padding) ~ label log-load-find at offset 0x000000000004f308 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 f2 04 08 00 00 00 00 ~ log-load-latest (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) e8 7b 04 08 00 00 00 00 ~ find-in (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ log-load-find-execution-token is defined here via the label transform; this is its entry header. f0 f2 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 67 2d 6c 6f 61 64 2d 66 69 6e 64 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 ~ (alignment padding) ~ label log-load-find-execution-token at offset 0x000000000004f378 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 08 f3 04 08 00 00 00 00 ~ log-load-find (codeword pointer) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ != (codeword pointer) 80 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 30 00 00 00 00 00 00 00 ~ 0x30 (branch offset) f0 65 04 08 00 00 00 00 ~ 3roll (codeword pointer) 30 65 04 08 00 00 00 00 ~ drop (codeword pointer) e8 6e 04 08 00 00 00 00 ~ entry-to-execution-token ~ (codeword pointer) 58 6e 04 08 00 00 00 00 ~ branch (codeword pointer) 58 00 00 00 00 00 00 00 ~ 0x58 (branch offset) 30 65 04 08 00 00 00 00 ~ drop (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "No such word: " (string literal with null) 4e 6f 20 73 75 63 68 20 77 6f 72 64 3a 20 00 00 ~ (alignment padding) 28 80 04 08 00 00 00 00 ~ emitstring (codeword pointer) 28 80 04 08 00 00 00 00 ~ emitstring (codeword pointer) d0 80 04 08 00 00 00 00 ~ newline (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ log-load-create is defined here via the label transform; this is its entry header. 50 f3 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 67 2d 6c 6f 61 64 2d 63 72 65 61 74 65 00 00 00 00 00 00 00 ~ (alignment padding) ~ label log-load-create at offset 0x000000000004f468 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) 30 6d 04 08 00 00 00 00 ~ stringlen (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 90 66 04 08 00 00 00 00 ~ + (codeword pointer) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 40 78 04 08 00 00 00 00 ~ pick (codeword pointer) 98 f2 04 08 00 00 00 00 ~ log-load-here (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 30 65 04 08 00 00 00 00 ~ drop (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) 90 66 04 08 00 00 00 00 ~ + (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6c 04 08 00 00 00 00 ~ memmove (codeword pointer) 08 78 04 08 00 00 00 00 ~ over (codeword pointer) 98 f2 04 08 00 00 00 00 ~ log-load-here (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 30 65 04 08 00 00 00 00 ~ drop (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 40 78 04 08 00 00 00 00 ~ pick (codeword pointer) 28 f2 04 08 00 00 00 00 ~ log-load-latest (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 30 65 04 08 00 00 00 00 ~ drop (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 58 71 04 08 00 00 00 00 ~ pack64 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 70 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 90 66 04 08 00 00 00 00 ~ + (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 30 74 04 08 00 00 00 00 ~ packalign (codeword pointer) 08 78 04 08 00 00 00 00 ~ over (codeword pointer) 98 f2 04 08 00 00 00 00 ~ log-load-here (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 30 65 04 08 00 00 00 00 ~ drop (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 40 78 04 08 00 00 00 00 ~ pick (codeword pointer) 28 f2 04 08 00 00 00 00 ~ log-load-latest (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 30 65 04 08 00 00 00 00 ~ drop (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 08 78 04 08 00 00 00 00 ~ over (codeword pointer) 98 f2 04 08 00 00 00 00 ~ log-load-here (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 30 65 04 08 00 00 00 00 ~ drop (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ log-load-self-codeword is defined here via the label transform; this is its entry header. 48 f4 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 67 2d 6c 6f 61 64 2d 73 65 6c 66 2d 63 6f 64 65 77 6f 72 64 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label log-load-self-codeword at offset 0x000000000004f678 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 98 f2 04 08 00 00 00 00 ~ log-load-here (codeword pointer) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 90 66 04 08 00 00 00 00 ~ + (codeword pointer) 58 71 04 08 00 00 00 00 ~ pack64 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ log-load-comma is defined here via the label transform; this is its entry header. 50 f6 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label log-load-comma at offset 0x000000000004f6f8 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 98 f2 04 08 00 00 00 00 ~ log-load-here (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 71 04 08 00 00 00 00 ~ pack64 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 98 f2 04 08 00 00 00 00 ~ log-load-here (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ log-load-semicolon-assembly is defined here via the label transform; this is its entry header. d8 f6 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 67 2d 6c 6f 61 64 2d 73 65 6d 69 63 6f 6c 6f 6e 2d 61 73 73 65 6d 62 6c 79 00 00 00 ~ (alignment padding) ~ label log-load-semicolon-assembly at offset 0x000000000004f790 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 98 f2 04 08 00 00 00 00 ~ log-load-here (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 48 ef 04 08 00 00 00 00 ~ pack-next (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 30 74 04 08 00 00 00 00 ~ packalign (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 98 f2 04 08 00 00 00 00 ~ log-load-here (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 28 f2 04 08 00 00 00 00 ~ log-load-latest (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) e8 6e 04 08 00 00 00 00 ~ entry-to-execution-token ~ (codeword pointer) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 90 66 04 08 00 00 00 00 ~ + (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ log-load-variable is defined here via the label transform; this is its entry header. 68 f7 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 67 2d 6c 6f 61 64 2d 76 61 72 69 61 62 6c 65 00 00 00 00 00 ~ (alignment padding) ~ label log-load-variable at offset 0x000000000004f860 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) f0 65 04 08 00 00 00 00 ~ 3roll (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 98 f2 04 08 00 00 00 00 ~ log-load-here (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 90 66 04 08 00 00 00 00 ~ + (codeword pointer) 58 71 04 08 00 00 00 00 ~ pack64 (codeword pointer) f0 65 04 08 00 00 00 00 ~ 3roll (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 90 c1 04 08 00 00 00 00 ~ mov-reg64-imm64 (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 48 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 48 ef 04 08 00 00 00 00 ~ pack-next (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 30 74 04 08 00 00 00 00 ~ packalign (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ log-load-keyword is defined here via the label transform; this is its entry header. 40 f8 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 67 2d 6c 6f 61 64 2d 6b 65 79 77 6f 72 64 00 00 00 00 00 00 ~ (alignment padding) ~ label log-load-keyword at offset 0x000000000004f950 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 68 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 98 f2 04 08 00 00 00 00 ~ log-load-here (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 90 66 04 08 00 00 00 00 ~ + (codeword pointer) 58 71 04 08 00 00 00 00 ~ pack64 (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 90 c1 04 08 00 00 00 00 ~ mov-reg64-imm64 (codeword pointer) 68 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 48 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 48 ef 04 08 00 00 00 00 ~ pack-next (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 30 74 04 08 00 00 00 00 ~ packalign (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 98 f2 04 08 00 00 00 00 ~ log-load-here (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ log-load-comma-string is defined here via the label transform; this is its entry header. 30 f9 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 2d 73 74 72 69 6e 67 00 ~ (alignment padding) ~ label log-load-comma-string at offset 0x000000000004fa38 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 98 f2 04 08 00 00 00 00 ~ log-load-here (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) f0 65 04 08 00 00 00 00 ~ 3roll (codeword pointer) d0 72 04 08 00 00 00 00 ~ packstring (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 30 74 04 08 00 00 00 00 ~ packalign (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 98 f2 04 08 00 00 00 00 ~ log-load-here (codeword pointer) f0 65 04 08 00 00 00 00 ~ 3roll (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ log-load-left-curly-brace is defined here via the label transform; this is its entry header. 18 fa 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 67 2d 6c 6f 61 64 2d 6c 65 66 74 2d 63 75 72 6c 79 2d 62 72 61 63 65 00 00 00 00 00 ~ (alignment padding) ~ label log-load-left-curly-brace at offset 0x000000000004fad8 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 98 f2 04 08 00 00 00 00 ~ log-load-here (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ log-load-right-curly-brace is defined here via the label transform; this is its entry header. b0 fa 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 67 2d 6c 6f 61 64 2d 72 69 67 68 74 2d 63 75 72 6c 79 2d 62 72 61 63 65 00 00 00 00 ~ (alignment padding) ~ label log-load-right-curly-brace at offset 0x000000000004fb28 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) f0 65 04 08 00 00 00 00 ~ 3roll (codeword pointer) 98 f2 04 08 00 00 00 00 ~ log-load-here (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) b8 66 04 08 00 00 00 00 ~ - (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ log-load-if is defined here via the label transform; this is its entry header. 00 fb 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 67 2d 6c 6f 61 64 2d 69 66 00 00 00 ~ (alignment padding) ~ label log-load-if at offset 0x000000000004fba0 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 68 66 04 08 00 00 00 00 ~ 2dup (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) e0 66 04 08 00 00 00 00 ~ * (codeword pointer) 90 66 04 08 00 00 00 00 ~ + (codeword pointer) f0 65 04 08 00 00 00 00 ~ 3roll (codeword pointer) e0 6c 04 08 00 00 00 00 ~ memmove (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) f0 65 04 08 00 00 00 00 ~ 3roll (codeword pointer) 98 f2 04 08 00 00 00 00 ~ log-load-here (codeword pointer) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 08 f3 04 08 00 00 00 00 ~ log-load-find (codeword pointer) e8 6e 04 08 00 00 00 00 ~ entry-to-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) 08 f3 04 08 00 00 00 00 ~ log-load-find (codeword pointer) e8 6e 04 08 00 00 00 00 ~ entry-to-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "0branch" (string literal with null) 30 62 72 61 6e 63 68 00 ~ (alignment padding) 08 f3 04 08 00 00 00 00 ~ log-load-find (codeword pointer) e8 6e 04 08 00 00 00 00 ~ entry-to-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 90 66 04 08 00 00 00 00 ~ + (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 30 65 04 08 00 00 00 00 ~ drop (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) e0 66 04 08 00 00 00 00 ~ * (codeword pointer) 90 66 04 08 00 00 00 00 ~ + (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 98 f2 04 08 00 00 00 00 ~ log-load-here (codeword pointer) f0 65 04 08 00 00 00 00 ~ 3roll (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ log-load-unless is defined here via the label transform; this is its entry header. 88 fb 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 67 2d 6c 6f 61 64 2d 75 6e 6c 65 73 73 00 00 00 00 00 00 00 ~ (alignment padding) ~ label log-load-unless at offset 0x000000000004fdc0 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 68 66 04 08 00 00 00 00 ~ 2dup (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) e0 66 04 08 00 00 00 00 ~ * (codeword pointer) 90 66 04 08 00 00 00 00 ~ + (codeword pointer) f0 65 04 08 00 00 00 00 ~ 3roll (codeword pointer) e0 6c 04 08 00 00 00 00 ~ memmove (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) f0 65 04 08 00 00 00 00 ~ 3roll (codeword pointer) 98 f2 04 08 00 00 00 00 ~ log-load-here (codeword pointer) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 08 f3 04 08 00 00 00 00 ~ log-load-find (codeword pointer) e8 6e 04 08 00 00 00 00 ~ entry-to-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 08 f3 04 08 00 00 00 00 ~ log-load-find (codeword pointer) e8 6e 04 08 00 00 00 00 ~ entry-to-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "0branch" (string literal with null) 30 62 72 61 6e 63 68 00 ~ (alignment padding) 08 f3 04 08 00 00 00 00 ~ log-load-find (codeword pointer) e8 6e 04 08 00 00 00 00 ~ entry-to-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 90 66 04 08 00 00 00 00 ~ + (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 30 65 04 08 00 00 00 00 ~ drop (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) e0 66 04 08 00 00 00 00 ~ * (codeword pointer) 90 66 04 08 00 00 00 00 ~ + (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 98 f2 04 08 00 00 00 00 ~ log-load-here (codeword pointer) f0 65 04 08 00 00 00 00 ~ 3roll (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ log-load-if-else is defined here via the label transform; this is its entry header. a0 fd 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 67 2d 6c 6f 61 64 2d 69 66 2d 65 6c 73 65 00 00 00 00 00 00 ~ (alignment padding) ~ label log-load-if-else at offset 0x000000000004ffe0 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 68 66 04 08 00 00 00 00 ~ 2dup (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) e0 66 04 08 00 00 00 00 ~ * (codeword pointer) 90 66 04 08 00 00 00 00 ~ + (codeword pointer) f0 65 04 08 00 00 00 00 ~ 3roll (codeword pointer) e0 6c 04 08 00 00 00 00 ~ memmove (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 40 78 04 08 00 00 00 00 ~ pick (codeword pointer) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) e0 66 04 08 00 00 00 00 ~ * (codeword pointer) 90 66 04 08 00 00 00 00 ~ + (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 78 04 08 00 00 00 00 ~ pick (codeword pointer) e0 6c 04 08 00 00 00 00 ~ memmove (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 98 f2 04 08 00 00 00 00 ~ log-load-here (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 98 f2 04 08 00 00 00 00 ~ log-load-here (codeword pointer) f0 65 04 08 00 00 00 00 ~ 3roll (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 08 f3 04 08 00 00 00 00 ~ log-load-find (codeword pointer) e8 6e 04 08 00 00 00 00 ~ entry-to-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) 08 f3 04 08 00 00 00 00 ~ log-load-find (codeword pointer) e8 6e 04 08 00 00 00 00 ~ entry-to-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "0branch" (string literal with null) 30 62 72 61 6e 63 68 00 ~ (alignment padding) 08 f3 04 08 00 00 00 00 ~ log-load-find (codeword pointer) e8 6e 04 08 00 00 00 00 ~ entry-to-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) e0 66 04 08 00 00 00 00 ~ * (codeword pointer) 90 66 04 08 00 00 00 00 ~ + (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) e0 66 04 08 00 00 00 00 ~ * (codeword pointer) 90 66 04 08 00 00 00 00 ~ + (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 98 f2 04 08 00 00 00 00 ~ log-load-here (codeword pointer) f0 65 04 08 00 00 00 00 ~ 3roll (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "branch" (string literal with null) 62 72 61 6e 63 68 00 00 ~ (alignment padding) 08 f3 04 08 00 00 00 00 ~ log-load-find (codeword pointer) e8 6e 04 08 00 00 00 00 ~ entry-to-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 90 66 04 08 00 00 00 00 ~ + (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 30 65 04 08 00 00 00 00 ~ drop (codeword pointer) 30 65 04 08 00 00 00 00 ~ drop (codeword pointer) 30 65 04 08 00 00 00 00 ~ drop (codeword pointer) 98 f2 04 08 00 00 00 00 ~ log-load-here (codeword pointer) f0 65 04 08 00 00 00 00 ~ 3roll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) e0 66 04 08 00 00 00 00 ~ * (codeword pointer) 90 66 04 08 00 00 00 00 ~ + (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ log-load-forever is defined here via the label transform; this is its entry header. c0 ff 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 67 2d 6c 6f 61 64 2d 66 6f 72 65 76 65 72 00 00 00 00 00 00 ~ (alignment padding) ~ label log-load-forever at offset 0x00000000000503e0 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "branch" (string literal with null) 62 72 61 6e 63 68 00 00 ~ (alignment padding) 08 f3 04 08 00 00 00 00 ~ log-load-find (codeword pointer) e8 6e 04 08 00 00 00 00 ~ entry-to-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 90 66 04 08 00 00 00 00 ~ + (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ff ff ff ff ff ff ff ff ~ 0xffffffffffffffff (integer literal) e0 66 04 08 00 00 00 00 ~ * (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 30 65 04 08 00 00 00 00 ~ drop (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ log-load-while is defined here via the label transform; this is its entry header. c0 03 05 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 67 2d 6c 6f 61 64 2d 77 68 69 6c 65 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label log-load-while at offset 0x0000000000050488 is here. 98 64 04 08 00 00 00 00 ~ (docol codeword) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 68 66 04 08 00 00 00 00 ~ 2dup (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) e0 66 04 08 00 00 00 00 ~ * (codeword pointer) 90 66 04 08 00 00 00 00 ~ + (codeword pointer) f0 65 04 08 00 00 00 00 ~ 3roll (codeword pointer) e0 6c 04 08 00 00 00 00 ~ memmove (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 98 f2 04 08 00 00 00 00 ~ log-load-here (codeword pointer) b0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 98 f2 04 08 00 00 00 00 ~ log-load-here (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 08 f3 04 08 00 00 00 00 ~ log-load-find (codeword pointer) e8 6e 04 08 00 00 00 00 ~ entry-to-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) 08 f3 04 08 00 00 00 00 ~ log-load-find (codeword pointer) e8 6e 04 08 00 00 00 00 ~ entry-to-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "0branch" (string literal with null) 30 62 72 61 6e 63 68 00 ~ (alignment padding) 08 f3 04 08 00 00 00 00 ~ log-load-find (codeword pointer) e8 6e 04 08 00 00 00 00 ~ entry-to-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 48 66 04 08 00 00 00 00 ~ dup (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) e0 66 04 08 00 00 00 00 ~ * (codeword pointer) 90 66 04 08 00 00 00 00 ~ + (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 98 f2 04 08 00 00 00 00 ~ log-load-here (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) e0 66 04 08 00 00 00 00 ~ * (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 70 65 04 08 00 00 00 00 ~ roll (codeword pointer) 90 66 04 08 00 00 00 00 ~ + (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 88 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 50 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "branch" (string literal with null) 62 72 61 6e 63 68 00 00 ~ (alignment padding) 08 f3 04 08 00 00 00 00 ~ log-load-find (codeword pointer) e8 6e 04 08 00 00 00 00 ~ entry-to-execution-token ~ (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) b0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) e0 66 04 08 00 00 00 00 ~ * (codeword pointer) 90 66 04 08 00 00 00 00 ~ + (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 30 65 04 08 00 00 00 00 ~ drop (codeword pointer) 90 66 04 08 00 00 00 00 ~ + (codeword pointer) 10 65 04 08 00 00 00 00 ~ swap (codeword pointer) 30 65 04 08 00 00 00 00 ~ drop (codeword pointer) 28 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ff ff ff ff ff ff ff ff ~ 0xffffffffffffffff (integer literal) e0 66 04 08 00 00 00 00 ~ * (codeword pointer) f8 f6 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) e8 64 04 08 00 00 00 00 ~ exit (codeword pointer) ~ label total-size at offset 0x0000000000050790 is here. ~ This is the end of the hex dump. Thanks for reading!