* bug#20297: compiling emasc 24.5 (src/Makefile and RUN_TEMACS)
@ 2015-04-10 20:36 Дилян Палаузов
2015-04-12 22:58 ` bug#20297: compiling emacs " Paul Eggert
0 siblings, 1 reply; 5+ messages in thread
From: Дилян Палаузов @ 2015-04-10 20:36 UTC (permalink / raw)
To: 20297
Hello,
I have problems to compile emacs 24.5:
$ ./configure --with-kerberos5 --with-wide-int --without-x
[lots of output]
$ make
[lots of output]
[ -r "src/config.in" ] || ( cd . && autoheader )
cd lib && make all \
CC='gcc -std=gnu99' CFLAGS='-pipe -O3 -fno-fat-lto-objects -flto
-mssse3' CPPFLAGS='' \
LDFLAGS='-Wl,-O1 -Wl,-z,relro -Wl,-S' MAKE='make'
make[1]: Entering directory '/mnt/new/src/emacs-24.5/lib'
make all-am
make[2]: Entering directory '/mnt/new/src/emacs-24.5/lib'
make[2]: Nothing to be done for 'all-am'.
make[2]: Leaving directory '/mnt/new/src/emacs-24.5/lib'
make[1]: Leaving directory '/mnt/new/src/emacs-24.5/lib'
cd lib-src && make all \
CC='gcc -std=gnu99' CFLAGS='-pipe -O3 -fno-fat-lto-objects -flto
-mssse3' CPPFLAGS='' \
LDFLAGS='-Wl,-O1 -Wl,-z,relro -Wl,-S' MAKE='make'
make[1]: Entering directory '/mnt/new/src/emacs-24.5/lib-src'
make[1]: Nothing to be done for 'all'.
make[1]: Leaving directory '/mnt/new/src/emacs-24.5/lib-src'
dirstate='.git/logs/HEAD'; \
vcswitness='$(srcdir)/../'$dirstate; \
[ -r "./$dirstate" ] || vcswitness=''; \
cd src || exit; \
boot=bootstrap-emacs; \
[ ! -x "$boot" ] || boot=''; \
make all \
CC='gcc -std=gnu99' CFLAGS='-pipe -O3 -fno-fat-lto-objects -flto
-mssse3' CPPFLAGS='' \
LDFLAGS='-Wl,-O1 -Wl,-z,relro -Wl,-S' MAKE='make'
BOOTSTRAPEMACS="$boot" \
VCSWITNESS="$vcswitness"
make[1]: Entering directory '/mnt/new/src/emacs-24.5/src'
cd ../lisp; make -w update-subdirs
make[2]: Entering directory '/mnt/new/src/emacs-24.5/lisp'
for file in `find . -type d -print`; do case $file in .*/cedet* |
.*/leim* ) ;; *) wins="$wins${wins:+ }$file" ;; esac; done; \
for file in $wins; do \
./../build-aux/update-subdirs $file; \
done;
make[2]: Leaving directory '/mnt/new/src/emacs-24.5/lisp'
if test "no" = "yes"; then \
rm -f bootstrap-emacs; \
ln temacs bootstrap-emacs; \
else \
./temacs --batch --load loadup bootstrap || exit 1; \
test "X" = X || -zex emacs; \
mv -f emacs bootstrap-emacs; \
fi
Loading loadup.el (source)...
Using load-path (/src/emacs-24.5/lisp /src/emacs-24.5/lisp/emacs-lisp
/src/emacs-24.5/lisp/language /src/emacs-24.5/lisp/international
/src/emacs-24.5/lisp/textmodes /src/emacs-24.5/lisp/vc)
Loading emacs-lisp/byte-run...
Loading emacs-lisp/backquote...
Loading subr...
Loading version...
Loading widget...
Loading custom...
Loading emacs-lisp/map-ynp...
Loading international/mule...
Loading international/mule-conf...
Loading env...
Loading format...
Loading bindings...
Loading cus-start...
Loading window...
Loading files...
Loading emacs-lisp/macroexp...
Loading cus-face...
Loading faces...
Loading button...
Loading startup...
Loading /src/emacs-24.5/lisp/loaddefs.el (source)...
/bin/sh: line 7: 9864 Illegal instruction ./temacs --batch --load
loadup bootstrap
Makefile:815: recipe for target 'bootstrap-emacs' failed
make[1]: *** [bootstrap-emacs] Error 1
make[1]: Leaving directory '/mnt/new/src/emacs-24.5/src'
Makefile:387: recipe for target 'src' failed
make: *** [src] Error 2
The problem is the variable RUN_TEMACS in src/Makefile(.in), which is
"./temacs", but shall be the path to temacs, relative to the build-root.
When I compiled the previous version of emacs, at the time it was
released, I do not remember to have had such problem.
Thanks in advance for proceeding this.
Greetings
Dilian
^ permalink raw reply [flat|nested] 5+ messages in thread
* bug#20297: compiling emacs 24.5 (src/Makefile and RUN_TEMACS)
2015-04-10 20:36 bug#20297: compiling emasc 24.5 (src/Makefile and RUN_TEMACS) Дилян Палаузов
@ 2015-04-12 22:58 ` Paul Eggert
2015-04-13 11:05 ` Дилян Палаузов
0 siblings, 1 reply; 5+ messages in thread
From: Paul Eggert @ 2015-04-12 22:58 UTC (permalink / raw)
To: Dilyan Palauzov; +Cc: 20297
I don't observe this problem on Fedora 21 x86-64, when configuring similar to
the way you did:
./configure CFLAGS='-m32' --with-kerberos5 --with-wide-int --without-x
Could you give more details about your platform? In particular, I'm puzzled
about the "CFLAGS='-pipe -O3 -fno-fat-lto-objects -flto -mssse3'" and the
"LDFLAGS='-Wl,-O1 -Wl,-z,relro -Wl,-S'" settings, if all you ran was
"./configure --with-kerberos5 --with-wide-int --without-x" and "make". As far
as I can see, the Emacs 24.5 source code does not specify -pipe, or -O3, or
-mssse3, or -flto and -ffat-lto-objects (unless you configure with
--enable-link-time-optimization), or -Wl,-z,relro, etc. If your build system is
specifying those options, I suggest bypassing it and building Emacs without the
extra options; then you can turn the options on one at a time and see which one
is causing your problem.
> The problem is the variable RUN_TEMACS in src/Makefile(.in), which is
> "./temacs", but shall be the path to temacs, relative to the build-root.
I don't see why this is the problem. Your build is trying to run ./temacs and
./temacs is dumping core with an illegal instruction. This sounds like a bug,
regardless of how temacs was invoked.
Also, can you build the Emacs master branch? Please try:
git clone git://git.savannah.gnu.org/emacs.git
cd emacs
./autogen.sh
./configure
make
If this works for you, then your bug is probably fixed already in Emacs 25.
^ permalink raw reply [flat|nested] 5+ messages in thread
* bug#20297: compiling emacs 24.5 (src/Makefile and RUN_TEMACS)
2015-04-12 22:58 ` bug#20297: compiling emacs " Paul Eggert
@ 2015-04-13 11:05 ` Дилян Палаузов
2015-04-13 11:42 ` Дилян Палаузов
0 siblings, 1 reply; 5+ messages in thread
From: Дилян Палаузов @ 2015-04-13 11:05 UTC (permalink / raw)
To: Paul Eggert; +Cc: 20297
Hello,
you are right that the change in the Makefile, which I mentioned earlier
does not help. temacs crashes with following backtrace. I have gdb 7.9
and gcc 4.9.2 . CFLAGS = -pipe -O3 -g -mssse3, LDFLAGS=-Wl,-O1
-Wl,-z,relro .These come from /usr/local/etc/config.site and are always
added when I run ./configure .
root@ # gdb src/temacs /tmp/core.temacs.32418
Reading symbols from src/temacs...done.
[New LWP 32418]
warning: Could not load shared library symbols for linux-vdso.so.1.
Do you need "set solib-search-path" or "set sysroot"?
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib64/libthread_db.so.1".
Core was generated by `./temacs --batch --load loadup bootstrap'.
Program terminated with signal SIGILL, Illegal instruction.
#0 0x000000000050cacc in boyer_moore (n=n@entry=1,
base_pat=base_pat@entry=0x7ffffffecab0 "coding:", len_byte=7,
trt=trt@entry=12131613, inverse_trt=inverse_trt@entry=12136069,
pos_byte=pos_byte@entry=1, lim_byte=1025, char_base=0) at search.c:1805
1805 simple_translate[i] = i;
gobject.pyc: gdb was not built with custom backtrace support, disabling.
gdb /mnt/new/src/emacs-24.5 bt f
#0 0x000000000050cacc in boyer_moore (n=n@entry=1,
base_pat=base_pat@entry=0x7ffffffecab0 "coding:", len_byte=7,
trt=trt@entry=12131613, inverse_trt=inverse_trt@entry=12136069,
pos_byte=pos_byte@entry=1, lim_byte=1025, char_base=0) at search.c:1805
direction = <optimized out>
dirlen = 7
limit = <optimized out>
stride_for_teases = 0
BM_tab = {7 <repeats 256 times>}
cursor = <optimized out>
p_limit = <optimized out>
i = <optimized out>
j = <optimized out>
pat = <optimized out>
pat_end = 0x7ffffffecab7 ""
multibyte = false
simple_translate = '\000' <repeats 48 times>,
"\320\000\000\000\000\000\000\000@V$\366\377\177\000\000\020\004\000\000\000\000\000\000\000\004\000\000\000\000\000\000
l\302\000\000\000\000\000\070\361\263\000\000\000\000\000\360\357\263\000\000\000\000\000\227\201\361\365\377\177\000\000\000\000\000\000\000\000\000\000@\000\000\000\000\000\000\000\320\r\323\000\000\000\000\000`\000\000\000\000\000\000\000\060\004",
'\000' <repeats 14 times>, "\002", '\000' <repeats 23 times>,
"A\000\000\000@\000\000\000]\000\000\000n\000\000\000w\000\000\000|\000\000\000\340\025\315\000\000\000\000\000@V$\366\377\177\000\000\000\000\000\000\001\000\000\000\020\262\277\000\000\000\000\000\260l\302\000\000\000\000\000@\370\263\000\000\000\000"
translate_prev_byte1 = 0
translate_prev_byte2 = 0
translate_prev_byte3 = 0
#1 0x000000000050f8e2 in search_buffer (string=string@entry=12554161,
pos=1, pos_byte=1, lim=lim@entry=1025, lim_byte=lim_byte@entry=1025,
n=1, trt=12131613, inverse_trt=12136069, posix=false, RE=0) at search.c:1507
raw_pattern = <optimized out>
pat = 0x7ffffffecab0 "coding:"
patbuf = 0x7ffffffecab0 "coding:"
multibyte = <optimized out>
raw_pattern_size = 7
raw_pattern_size_byte = <optimized out>
base_pat = <optimized out>
char_base = <optimized out>
boyer_moore_ok = <optimized out>
len = -1
len_byte = <optimized out>
#2 0x000000000050fae7 in search_command (RE=0, posix=false,
direction=1, count=<optimized out>, noerror=12123042, bound=<optimized
out>, string=12554161) at search.c:1067
np = <optimized out>
lim = 1025
lim_byte = 1025
n = <optimized out>
#3 Fsearch_forward (string=12554161, bound=<optimized out>,
noerror=12123042, count=<optimized out>) at search.c:2207
No locals.
#4 0x000000000054c0d8 in Ffuncall (nargs=4,
args=args@entry=0x7ffffffeccc8) at eval.c:2822
fun = 8508901
original_fun = <optimized out>
numargs = <optimized out>
val = <optimized out>
internal_args = 0x7ffffffecc10
i = <optimized out>
#5 0x00000000005919a3 in exec_byte_code (bytestr=<optimized out>,
vector=12678861, maxdepth=<optimized out>, args_template=<optimized
out>, nargs=nargs@entry=0, args=args@entry=0x0) at bytecode.c:916
targets = {0x591b40 <exec_byte_code+1232>, 0x5932a8
<exec_byte_code+7224>, 0x5932b0 <exec_byte_code+7232>, 0x5932b8
<exec_byte_code+7240>, 0x5918f0 <exec_byte_code+640>, 0x5918f0
<exec_byte_code+640>, 0x591bf8 <exec_byte_code+1416>, 0x591c48
<exec_byte_code+1496>, 0x591cd0 <exec_byte_code+1632>, 0x591cc8
<exec_byte_code+1624>, 0x591b90 <exec_byte_code+1312>, 0x591cd8
<exec_byte_code+1640>, 0x591ac8 <exec_byte_code+1112>, 0x591ad0
<exec_byte_code+1120>, 0x593340 <exec_byte_code+7376>, 0x591bd0
<exec_byte_code+1376>, 0x591ce0 <exec_byte_code+1648>, 0x593120
<exec_byte_code+6832>, 0x593620 <exec_byte_code+8112>, 0x593168
<exec_byte_code+6904>, 0x591a50 <exec_byte_code+992>, 0x591a50
<exec_byte_code+992>, 0x593460 <exec_byte_code+7664>, 0x593128
<exec_byte_code+6840>, 0x593198 <exec_byte_code+6952>, 0x5931a0
<exec_byte_code+6960>, 0x5931f8 <exec_byte_code+7048>, 0x5931a8
<exec_byte_code+6968>, 0x591930 <exec_byte_code+704>, 0x591930
<exec_byte_code+704>, 0x593150 <exec_byte_code+6880>, 0x593170
<exec_byte_code+6912>, 0x5931f0 <exec_byte_code+7040>, 0x593200
<exec_byte_code+7056>, 0x593208 <exec_byte_code+7064>, 0x591ca8
<exec_byte_code+1592>, 0x591978 <exec_byte_code+776>, 0x591980
<exec_byte_code+784>, 0x5931b0 <exec_byte_code+6976>, 0x5931c8
<exec_byte_code+7000>, 0x593240 <exec_byte_code+7120>, 0x593238
<exec_byte_code+7112>, 0x593248 <exec_byte_code+7128>, 0x591b98
<exec_byte_code+1320>, 0x5919c8 <exec_byte_code+856>, 0x5919d0
<exec_byte_code+864>, 0x591cb0 <exec_byte_code+1600>, 0x593210
<exec_byte_code+7072>, 0x592c40 <exec_byte_code+5584>, 0x592ad0
<exec_byte_code+5216>, 0x593298 <exec_byte_code+7208>, 0x591b40
<exec_byte_code+1232>, 0x591b40 <exec_byte_code+1232>, 0x591b40
<exec_byte_code+1232>, 0x591b40 <exec_byte_code+1232>, 0x591b40
<exec_byte_code+1232>, 0x5921a0 <exec_byte_code+2864>, 0x592918
<exec_byte_code+4776>, 0x592960 <exec_byte_code+4848>, 0x592800
<exec_byte_code+4496>, 0x592850 <exec_byte_code+4576>, 0x5934c0
<exec_byte_code+7760>, 0x5933d8 <exec_byte_code+7528>, 0x5928a0
<exec_byte_code+4656>, 0x593478 <exec_byte_code+7688>, 0x593418
<exec_byte_code+7592>, 0x5928d8 <exec_byte_code+4712>, 0x592620
<exec_byte_code+4016>, 0x592650 <exec_byte_code+4064>, 0x592690
<exec_byte_code+4128>, 0x5926c8 <exec_byte_code+4184>, 0x592750
<exec_byte_code+4320>, 0x592780 <exec_byte_code+4368>, 0x5927c0
<exec_byte_code+4432>, 0x592238 <exec_byte_code+3016>, 0x592268
<exec_byte_code+3064>, 0x592298 <exec_byte_code+3112>, 0x5922d8
<exec_byte_code+3176>, 0x592318 <exec_byte_code+3240>, 0x592358
<exec_byte_code+3304>, 0x5923a0 <exec_byte_code+3376>, 0x5923d8
<exec_byte_code+3432>, 0x592410 <exec_byte_code+3488>, 0x592498
<exec_byte_code+3624>, 0x5924d8 <exec_byte_code+3688>, 0x592518
<exec_byte_code+3752>, 0x5925e0 <exec_byte_code+3952>, 0x592560
<exec_byte_code+3824>, 0x5925a0 <exec_byte_code+3888>, 0x5929a8
<exec_byte_code+4920>, 0x5929f0 <exec_byte_code+4992>, 0x592a28
<exec_byte_code+5048>, 0x592a60 <exec_byte_code+5104>, 0x593b80
<exec_byte_code+9488>, 0x593bb8 <exec_byte_code+9544>, 0x593bf0
<exec_byte_code+9600>, 0x5939e0 <exec_byte_code+9072>, 0x591a18
<exec_byte_code+936>, 0x593a20 <exec_byte_code+9136>, 0x593a50
<exec_byte_code+9184>, 0x593ad0 <exec_byte_code+9312>, 0x593b10
<exec_byte_code+9376>, 0x593b50 <exec_byte_code+9440>, 0x593660
<exec_byte_code+8176>, 0x593690 <exec_byte_code+8224>, 0x5936c0
<exec_byte_code+8272>, 0x5936f8 <exec_byte_code+8328>, 0x591b40
<exec_byte_code+1232>, 0x593730 <exec_byte_code+8384>, 0x593760
<exec_byte_code+8432>, 0x593790 <exec_byte_code+8480>, 0x5937c0
<exec_byte_code+8528>, 0x5937f0 <exec_byte_code+8576>, 0x593820
<exec_byte_code+8624>, 0x591a18 <exec_byte_code+936>, 0x591b40
<exec_byte_code+1232>, 0x593850 <exec_byte_code+8672>, 0x593890
<exec_byte_code+8736>, 0x5938c0 <exec_byte_code+8784>, 0x5938f0
<exec_byte_code+8832>, 0x593930 <exec_byte_code+8896>, 0x593970
<exec_byte_code+8960>, 0x592f30 <exec_byte_code+6336>, 0x593008
<exec_byte_code+6552>, 0x594090 <exec_byte_code+10784>, 0x5940d0
<exec_byte_code+10848>, 0x593048 <exec_byte_code+6616>, 0x593078
<exec_byte_code+6664>, 0x591b40 <exec_byte_code+1232>, 0x5935d0
<exec_byte_code+8032>, 0x591ce8 <exec_byte_code+1656>, 0x593358
<exec_byte_code+7400>, 0x591d80 <exec_byte_code+1808>, 0x591e30
<exec_byte_code+1984>, 0x591ea8 <exec_byte_code+2104>, 0x593250
<exec_byte_code+7136>, 0x5935a8 <exec_byte_code+7992>, 0x593628
<exec_byte_code+8120>, 0x593508 <exec_byte_code+7832>, 0x593540
<exec_byte_code+7888>, 0x592a98 <exec_byte_code+5160>, 0x592c00
<exec_byte_code+5520>, 0x592c70 <exec_byte_code+5632>, 0x592cc8
<exec_byte_code+5720>, 0x592d10 <exec_byte_code+5792>, 0x592140
<exec_byte_code+2768>, 0x591ba0 <exec_byte_code+1328>, 0x5930a8
<exec_byte_code+6712>, 0x5930f0 <exec_byte_code+6784>, 0x593e48
<exec_byte_code+10200>, 0x593e78 <exec_byte_code+10248>, 0x593ea8
<exec_byte_code+10296>, 0x593ed8 <exec_byte_code+10344>, 0x593f18
<exec_byte_code+10408>, 0x593f58 <exec_byte_code+10472>, 0x593f98
<exec_byte_code+10536>, 0x593fd8 <exec_byte_code+10600>, 0x593c60
<exec_byte_code+9712>, 0x593ca0 <exec_byte_code+9776>, 0x593ce0
<exec_byte_code+9840>, 0x593d10 <exec_byte_code+9888>, 0x593d50
<exec_byte_code+9952>, 0x593d90 <exec_byte_code+10016>, 0x593dd0
<exec_byte_code+10080>, 0x593e10 <exec_byte_code+10144>, 0x593c28
<exec_byte_code+9656>, 0x5939a0 <exec_byte_code+9008>, 0x5932c0
<exec_byte_code+7248>, 0x593308 <exec_byte_code+7320>, 0x591b40
<exec_byte_code+1232>, 0x591f50 <exec_byte_code+2272>, 0x591fd0
<exec_byte_code+2400>, 0x592038 <exec_byte_code+2504>, 0x5920d0
<exec_byte_code+2656>, 0x592e98 <exec_byte_code+6184>, 0x592700
<exec_byte_code+4240>, 0x592448 <exec_byte_code+3544>, 0x593a80
<exec_byte_code+9232>, 0x592d60 <exec_byte_code+5872>, 0x592db0
<exec_byte_code+5952>, 0x591b40 <exec_byte_code+1232>, 0x591b40
<exec_byte_code+1232>, 0x592e10 <exec_byte_code+6048>, 0x591b40
<exec_byte_code+1232>, 0x591b40 <exec_byte_code+1232>, 0x591b40
<exec_byte_code+1232>, 0x591b40 <exec_byte_code+1232>, 0x591b40
<exec_byte_code+1232>, 0x591b40 <exec_byte_code+1232>, 0x591b40
<exec_byte_code+1232>, 0x591b40 <exec_byte_code+1232>, 0x591b40
<exec_byte_code+1232>, 0x592e60 <exec_byte_code+6128> <repeats 64 times>}
count = 46
op = <optimized out>
vectorp = 0xc176d0
stack = {
pc = 0xc27031 "\206Y",
byte_string = 12554865,
byte_string_start = 0xc26fe8 "\306\b!\211\031\205\v",
next = 0x7ffffffecf40
}
top = 0x7ffffffeccc8
result = <optimized out>
type = <optimized out>
#6 0x000000000054b832 in funcall_lambda (fun=fun@entry=12679437,
nargs=nargs@entry=2, arg_vector=arg_vector@entry=0x7ffffffecec0) at
eval.c:3044
val = <optimized out>
syms_left = 12122994
lexenv = 12122994
i = <optimized out>
optional = <optimized out>
rest = <optimized out>
#7 0x000000000054bdc8 in Ffuncall (nargs=3,
args=args@entry=0x7ffffffeceb8) at eval.c:2872
fun = 12679437
original_fun = 12813634
numargs = 2
val = <optimized out>
internal_args = <optimized out>
i = <optimized out>
#8 0x00000000005919a3 in exec_byte_code (bytestr=<optimized out>,
vector=12679485, maxdepth=<optimized out>, args_template=<optimized
out>, nargs=nargs@entry=0, args=args@entry=0x0) at bytecode.c:916
targets = {0x591b40 <exec_byte_code+1232>, 0x5932a8
<exec_byte_code+7224>, 0x5932b0 <exec_byte_code+7232>, 0x5932b8
<exec_byte_code+7240>, 0x5918f0 <exec_byte_code+640>, 0x5918f0
<exec_byte_code+640>, 0x591bf8 <exec_byte_code+1416>, 0x591c48
<exec_byte_code+1496>, 0x591cd0 <exec_byte_code+1632>, 0x591cc8
<exec_byte_code+1624>, 0x591b90 <exec_byte_code+1312>, 0x591cd8
<exec_byte_code+1640>, 0x591ac8 <exec_byte_code+1112>, 0x591ad0
<exec_byte_code+1120>, 0x593340 <exec_byte_code+7376>, 0x591bd0
<exec_byte_code+1376>, 0x591ce0 <exec_byte_code+1648>, 0x593120
<exec_byte_code+6832>, 0x593620 <exec_byte_code+8112>, 0x593168
<exec_byte_code+6904>, 0x591a50 <exec_byte_code+992>, 0x591a50
<exec_byte_code+992>, 0x593460 <exec_byte_code+7664>, 0x593128
<exec_byte_code+6840>, 0x593198 <exec_byte_code+6952>, 0x5931a0
<exec_byte_code+6960>, 0x5931f8 <exec_byte_code+7048>, 0x5931a8
<exec_byte_code+6968>, 0x591930 <exec_byte_code+704>, 0x591930
<exec_byte_code+704>, 0x593150 <exec_byte_code+6880>, 0x593170
<exec_byte_code+6912>, 0x5931f0 <exec_byte_code+7040>, 0x593200
<exec_byte_code+7056>, 0x593208 <exec_byte_code+7064>, 0x591ca8
<exec_byte_code+1592>, 0x591978 <exec_byte_code+776>, 0x591980
<exec_byte_code+784>, 0x5931b0 <exec_byte_code+6976>, 0x5931c8
<exec_byte_code+7000>, 0x593240 <exec_byte_code+7120>, 0x593238
<exec_byte_code+7112>, 0x593248 <exec_byte_code+7128>, 0x591b98
<exec_byte_code+1320>, 0x5919c8 <exec_byte_code+856>, 0x5919d0
<exec_byte_code+864>, 0x591cb0 <exec_byte_code+1600>, 0x593210
<exec_byte_code+7072>, 0x592c40 <exec_byte_code+5584>, 0x592ad0
<exec_byte_code+5216>, 0x593298 <exec_byte_code+7208>, 0x591b40
<exec_byte_code+1232>, 0x591b40 <exec_byte_code+1232>, 0x591b40
<exec_byte_code+1232>, 0x591b40 <exec_byte_code+1232>, 0x591b40
<exec_byte_code+1232>, 0x5921a0 <exec_byte_code+2864>, 0x592918
<exec_byte_code+4776>, 0x592960 <exec_byte_code+4848>, 0x592800
<exec_byte_code+4496>, 0x592850 <exec_byte_code+4576>, 0x5934c0
<exec_byte_code+7760>, 0x5933d8 <exec_byte_code+7528>, 0x5928a0
<exec_byte_code+4656>, 0x593478 <exec_byte_code+7688>, 0x593418
<exec_byte_code+7592>, 0x5928d8 <exec_byte_code+4712>, 0x592620
<exec_byte_code+4016>, 0x592650 <exec_byte_code+4064>, 0x592690
<exec_byte_code+4128>, 0x5926c8 <exec_byte_code+4184>, 0x592750
<exec_byte_code+4320>, 0x592780 <exec_byte_code+4368>, 0x5927c0
<exec_byte_code+4432>, 0x592238 <exec_byte_code+3016>, 0x592268
<exec_byte_code+3064>, 0x592298 <exec_byte_code+3112>, 0x5922d8
<exec_byte_code+3176>, 0x592318 <exec_byte_code+3240>, 0x592358
<exec_byte_code+3304>, 0x5923a0 <exec_byte_code+3376>, 0x5923d8
<exec_byte_code+3432>, 0x592410 <exec_byte_code+3488>, 0x592498
<exec_byte_code+3624>, 0x5924d8 <exec_byte_code+3688>, 0x592518
<exec_byte_code+3752>, 0x5925e0 <exec_byte_code+3952>, 0x592560
<exec_byte_code+3824>, 0x5925a0 <exec_byte_code+3888>, 0x5929a8
<exec_byte_code+4920>, 0x5929f0 <exec_byte_code+4992>, 0x592a28
<exec_byte_code+5048>, 0x592a60 <exec_byte_code+5104>, 0x593b80
<exec_byte_code+9488>, 0x593bb8 <exec_byte_code+9544>, 0x593bf0
<exec_byte_code+9600>, 0x5939e0 <exec_byte_code+9072>, 0x591a18
<exec_byte_code+936>, 0x593a20 <exec_byte_code+9136>, 0x593a50
<exec_byte_code+9184>, 0x593ad0 <exec_byte_code+9312>, 0x593b10
<exec_byte_code+9376>, 0x593b50 <exec_byte_code+9440>, 0x593660
<exec_byte_code+8176>, 0x593690 <exec_byte_code+8224>, 0x5936c0
<exec_byte_code+8272>, 0x5936f8 <exec_byte_code+8328>, 0x591b40
<exec_byte_code+1232>, 0x593730 <exec_byte_code+8384>, 0x593760
<exec_byte_code+8432>, 0x593790 <exec_byte_code+8480>, 0x5937c0
<exec_byte_code+8528>, 0x5937f0 <exec_byte_code+8576>, 0x593820
<exec_byte_code+8624>, 0x591a18 <exec_byte_code+936>, 0x591b40
<exec_byte_code+1232>, 0x593850 <exec_byte_code+8672>, 0x593890
<exec_byte_code+8736>, 0x5938c0 <exec_byte_code+8784>, 0x5938f0
<exec_byte_code+8832>, 0x593930 <exec_byte_code+8896>, 0x593970
<exec_byte_code+8960>, 0x592f30 <exec_byte_code+6336>, 0x593008
<exec_byte_code+6552>, 0x594090 <exec_byte_code+10784>, 0x5940d0
<exec_byte_code+10848>, 0x593048 <exec_byte_code+6616>, 0x593078
<exec_byte_code+6664>, 0x591b40 <exec_byte_code+1232>, 0x5935d0
<exec_byte_code+8032>, 0x591ce8 <exec_byte_code+1656>, 0x593358
<exec_byte_code+7400>, 0x591d80 <exec_byte_code+1808>, 0x591e30
<exec_byte_code+1984>, 0x591ea8 <exec_byte_code+2104>, 0x593250
<exec_byte_code+7136>, 0x5935a8 <exec_byte_code+7992>, 0x593628
<exec_byte_code+8120>, 0x593508 <exec_byte_code+7832>, 0x593540
<exec_byte_code+7888>, 0x592a98 <exec_byte_code+5160>, 0x592c00
<exec_byte_code+5520>, 0x592c70 <exec_byte_code+5632>, 0x592cc8
<exec_byte_code+5720>, 0x592d10 <exec_byte_code+5792>, 0x592140
<exec_byte_code+2768>, 0x591ba0 <exec_byte_code+1328>, 0x5930a8
<exec_byte_code+6712>, 0x5930f0 <exec_byte_code+6784>, 0x593e48
<exec_byte_code+10200>, 0x593e78 <exec_byte_code+10248>, 0x593ea8
<exec_byte_code+10296>, 0x593ed8 <exec_byte_code+10344>, 0x593f18
<exec_byte_code+10408>, 0x593f58 <exec_byte_code+10472>, 0x593f98
<exec_byte_code+10536>, 0x593fd8 <exec_byte_code+10600>, 0x593c60
<exec_byte_code+9712>, 0x593ca0 <exec_byte_code+9776>, 0x593ce0
<exec_byte_code+9840>, 0x593d10 <exec_byte_code+9888>, 0x593d50
<exec_byte_code+9952>, 0x593d90 <exec_byte_code+10016>, 0x593dd0
<exec_byte_code+10080>, 0x593e10 <exec_byte_code+10144>, 0x593c28
<exec_byte_code+9656>, 0x5939a0 <exec_byte_code+9008>, 0x5932c0
<exec_byte_code+7248>, 0x593308 <exec_byte_code+7320>, 0x591b40
<exec_byte_code+1232>, 0x591f50 <exec_byte_code+2272>, 0x591fd0
<exec_byte_code+2400>, 0x592038 <exec_byte_code+2504>, 0x5920d0
<exec_byte_code+2656>, 0x592e98 <exec_byte_code+6184>, 0x592700
<exec_byte_code+4240>, 0x592448 <exec_byte_code+3544>, 0x593a80
<exec_byte_code+9232>, 0x592d60 <exec_byte_code+5872>, 0x592db0
<exec_byte_code+5952>, 0x591b40 <exec_byte_code+1232>, 0x591b40
<exec_byte_code+1232>, 0x592e10 <exec_byte_code+6048>, 0x591b40
<exec_byte_code+1232>, 0x591b40 <exec_byte_code+1232>, 0x591b40
<exec_byte_code+1232>, 0x591b40 <exec_byte_code+1232>, 0x591b40
<exec_byte_code+1232>, 0x591b40 <exec_byte_code+1232>, 0x591b40
<exec_byte_code+1232>, 0x591b40 <exec_byte_code+1232>, 0x591b40
<exec_byte_code+1232>, 0x592e60 <exec_byte_code+6128> <repeats 64 times>}
count = 43
op = <optimized out>
vectorp = 0xc17940
stack = {
pc = 0xc2767c "\211\032\205\022",
byte_string = 12549393,
byte_string_start = 0xc27678 "\303\b\t\"\211\032\205\022",
next = 0x7fffffffd670
}
top = 0x7ffffffeceb8
result = <optimized out>
type = <optimized out>
#9 0x000000000054b832 in funcall_lambda (fun=fun@entry=12679533,
nargs=nargs@entry=2, arg_vector=arg_vector@entry=0x7ffffffed098) at
eval.c:3044
val = <optimized out>
syms_left = 12122994
lexenv = 12122994
i = <optimized out>
optional = <optimized out>
rest = <optimized out>
#10 0x000000000054bdc8 in Ffuncall (nargs=nargs@entry=3,
args=args@entry=0x7ffffffed090) at eval.c:2872
fun = 12679533
original_fun = 12814514
numargs = 2
val = <optimized out>
internal_args = <optimized out>
i = <optimized out>
#11 0x000000000054c20f in call2 (fn=<optimized out>, arg1=<optimized
out>, arg2=<optimized out>) at eval.c:2625
ret_ungc_val = 140737488274800
gcpro1 = {
next = <optimized out>,
var = <optimized out>,
nvars = 3
}
args = {12814514, 13993041, 4719848}
#12 0x00000000004fb123 in Finsert_file_contents (filename=1,
visit=140737488276144, beg=140737488275040, end=7, replace=12122994) at
fileio.c:4246
unwind_data = 140737488274800
st = {
st_dev = 2305,
st_ino = 2446155,
st_nlink = 1,
st_mode = 33188,
st_uid = 1000,
st_gid = 1000,
__pad0 = 0,
st_rdev = 0,
st_size = 1179962,
st_blksize = 4096,
st_blocks = 2312,
st_atim = {
tv_sec = 1428921663,
tv_nsec = 76764732
},
st_mtim = {
tv_sec = 1428513385,
tv_nsec = 0
},
st_ctim = {
tv_sec = 1428921247,
tv_nsec = 146779133
},
__unused = {0, 0, 0}
}
fd = 5
unprocessed = 1179962
handler = 12122994
p = 12122994
total = 1179962
read_buf = '\000' <repeats 36680 times>,
"\340b\310\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@(\240\312",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\260~\276\000\000\000\000\000\060\335\324\000\000\000\000\000\000\000\000\006\000\000\000@0c\310\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\260\247\316",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\001\000\000\000\000\000\000\000\005\000\000\000\000\000\000\000\340)\306\000\000\000\000\000\262\247\316\000\000\000\000\000\031\000\000\000\000\000\000\000\032\000\000\000\000\000\000\000\260\247\316",
'\000' <repeats 13 times>,
"\001\000\000\000\000\000\000\000\347\327R\000\000\000\000\000\001\000\000\000\000\000\000\000\210\242\312",
'\000' <repeats 12 times>, "\200\000\000\000?\000\000\000@h\244\312",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000\240\364\310\000\000\000\000\000\025\000\000\000\000\000\000\000
\000\000\000\000\000\000\000@\036\275\000\000\000\000\000\240h\277\000\000\000\000\000\000\000\000\006\000\000\000@
\354\305\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@
\345\313", '\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\006\000\000\000\000\000\000\000\260\353\305\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@
\345\313", '\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R", '\000' <repeats 12 times>,
"\200X\230R\000\000\000\000\000h\277\304\000\000\000\000\000\320)\276\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\300p\276",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\001\000\000\000\000\000\000\000\220\221\310\000\000\000\000\000\000\000\000\006\000\000\000@\360)\276\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@@>\276",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\240^\320\000\000\000\000\000\005\000\000\000\000\000\000\200\002\000\000\000\000\000\000\000B>\276",
'\000' <repeats 13 times>, "\n\000\000\000\000\000\000\000@>\276",
'\000' <repeats 13 times>,
"\005\000\000\000\000\000\000\000\347\327R\000\000\000\000\000\240^\320\000\000\000\000\000\300\203\311\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\020Z\320",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\004\000\000\000\000\000\000\000\006\000\000\000\000\000\000\000@\036\275\000\000\000\000\000\004\000\000\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\020Z\320\000\000\000\000\000\b
\323", '\000' <repeats 12 times>,
"\200X\230R\000\000\000\000\000pZ\320\000\000\000\000\000\005\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000\r
\323\000\000\000\000\000\034\000\000\000\000\000\000\000
\000\000\000\000\000\000\000\b \323", '\000' <repeats 13 times>,
"\005\000\000\000\000\000\000\000\354\326R\000\000\000\000\000\360\220\323\000\000\000\000\000\350\217\323",
'\000' <repeats 12 times>,
"\200p!\311\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@
`\320", '\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000 ^\273",
'\000' <repeats 13 times>,
"\005\000\000\000\000\000\000\000\060!\311\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@
`\320", '\000' <repeats 12 times>,
"\200\002\000\000\000\000\000\000\000d\227R\000\000\000\000\000\001\000\000\000\000\000\000\000-(\307\000\000\000\000\000\035\000\000\000\000\000\000\000
\025\311\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@
`\320\000\000\000\000\000\060\213\306\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\300\002\314",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\005\000\000\000\000\000\000\000\035\000\000\000\000\000\000\000\260s\317\000\000\000\000\000\360\212\306\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\300\002\314",
'\000' <repeats 12 times>,
"\200\002\000\000\000\000\000\000\000d\227R\000\000\000\000\000\000R\320\000\000\000\000\000\006\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000\340\021\311\000\000\000\000\000\021\000\000\000\000\000\000\000\022\000\000\000\000\000\000\000`M\274\000\000\000\000\000\001",
'\000' <repeats 15 times>,
"\214\330R\000\000\000\000\000\000R\320\000\000\000\000\000hQ\320",
'\000' <repeats 12 times>,
"\200X\230R\000\000\000\000\000\000\000\000\006\000\000\000@\005\000\000\000\000\000\000@8!\272\000\000\000\000\000\302_\320\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\300_\320",
'\000' <repeats 12 times>,
"\200\000\000\000\000\000\000\000\000\277\226R\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@8!\272\000\000\000\000\000\340e\277\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\360V\273",
'\000' <repeats 12 times>,
"\200\002\000\000\000\000\000\000\000d\227R\000\000\000\000\000<\000\000\000\000\000\000\000C\000\000\000\000\000\000\000\340\255\314\000\000\000\000\000\362V\273\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\360V\273",
'\000' <repeats 12 times>,
"\200\000\000\000\000\000\000\000\000\220\226R\000\000\000\000\000\270R\320",
'\000' <repeats 12 times>, "\200\001\000\000\000\000\000\000\000
\021\311\000\000\000\000\000\016\000\000\000\000\000\000\000\020\000\000\000\000\000\000\000p\373\270\000\000\000\000\000\002\000\000\000\000\000\000\000\001\000\000\000\000\000\000\000\214\330R\000\000\000\000\000\270R\320\000\000\000\000\000\060R\320",
'\000' <repeats 12 times>,
"\200X\230R\000\000\000\000\000\000\213\323\000\000\000\000\000\005\000\000\000\000\000\000\200\003\000\000\000\000\000\000\000r\313\303\000\000\000\000\000\027\000\000\000\000\000\000\000\030\000\000\000\000\000\000\000p\313\303",
'\000' <repeats 13 times>,
"\001\000\000\000\000\000\000\000\347\327R\000\000\000\000\000\000\213\323\000\000\000\000\000\350\211\323",
'\000' <repeats 12 times>,
"\200X\230R\000\000\000\000\000\070\023\306\000\000\000\000\000\006\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000R\245\303\000\000\000\000\000\v\000\000\000\000\000\000\000\024\000\000\000\000\000\000\000P\245\303",
'\000' <repeats 13 times>,
"\001\000\000\000\000\000\000\000\347\327R\000\000\000\000\000\070\023\306\000\000\000\000\000\300T\310",
'\000' <repeats 12 times>,
"\200X\230R\000\000\000\000\000\220\327\271\000\000\000\000\000\005\000\000\000\000\000\000\000\000\000\000\006\000\000\000@P[\304\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\220x\313",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\001\000\000\000\000\000\000\000\005\000\000\000\000\000\000\000\021\000\000\000\000\000\000\000@]\304\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\220x\313",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000p\231\323",
'\000' <repeats 12 times>,
"\200\000\000\000\000\000\000\000\000\222x\313\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\220x\313",
'\000' <repeats 12 times>,
"\200\000\000\000\000\000\000\000\000\277\226R\000\000\000\000\000\230\030\317\000\000\000\000\000\200(\306",
'\000' <repeats 12 times>,
"\200\060@\304\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\300\367\277",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000`\345\271",
'\000' <repeats 13 times>,
"\004\000\000\000\000\000\000\000\000e\304\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\300\367\277",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\001\000\000\000\000\000\000\000\062\253\277\000\000\000\000\000\003\000\000\000\000\000\000\000\202\370\277\000\000\000\000\000\t\000\000\000\000\000\000\000\r\000\000\000\000\000\000\000\200\370\277",
'\000' <repeats 13 times>, "\005\000\000\000\000\000\000\000\347\327R",
'\000' <repeats 12 times>, "\200\b\246\277", '\000' <repeats 12 times>,
"\200\000\000\000?\000\000\000@\b5\300", '\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000\r\246\277\000\000\000\000\000\a\000\000\000\000\000\000\000\n\000\000\000\000\000\000\000\b\246\277",
'\000' <repeats 13 times>,
"\005\000\000\000\000\000\000\000\354\326R\000\000\000\000\000\b5\300\000\000\000\000\000h\333\321",
'\000' <repeats 12 times>,
"\200X\230R\000\000\000\000\000\220\061\300\000\000\000\000\000\005\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000@b\312\000\000\000\000\000\001\000\000\000\000\000\000\000\003\000\000\000\000\000\000\000p\373\270\000\000\000\000\000\003\000\000\000\000\000\000\000\004\000\000\000\000\000\000\000\214\330R\000\000\000\000\000\220\061\300\000\000\000\000\000\000\060\272",
'\000' <repeats 12 times>, "\200\000\000\000?\000\000\000@\370\333\321",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000\060b\312\000\000\000\000\000\005\000\000\000\000\000\000\000\v\000\000\000\000\000\000\000\330/\321\000\000\000\000\000\003\000\000\000\000\000\000\000\004\000\000\000\000\000\000\000\214\330R\000\000\000\000\000\370\333\321\000\000\000\000\000\230\333\321",
'\000' <repeats 12 times>,
"\200X\230R\000\000\000\000\000\000\000\000\006\000\000\000@\006\000\000\000\000\000\000@8s\324\000\000\000\000\000\342b\314\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\340b\314",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000\277\226R\000\000\000\000\000\033\000\000\000\000\000\000\000
\000\000\000\000\000\000\000\360z\324\000\000\000\000\000p^\307\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@0\250\276",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\220\n\303\000\000\000\000\000\005\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000\240\266\306\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@`\371\313",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\220\n\303\000\000\000\000\000\350\t\303",
'\000' <repeats 12 times>,
"\200`\266\306\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@`\371\313",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\020\001\271\000\000\000\000\000\005\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000\202\\\274\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\200\\\274",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000\277\226R\000\000\000\000\000\260}\313",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000\220\267\306\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\240\252\313",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\020o\304",
'\000' <repeats 12 times>,
"\200\000\000\000\000\000\000\000\000@\267\306\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\240\252\313",
'\000' <repeats 12 times>,
"\200\a\000\000\000\000\000\000\000d\227R\000\000\000\000\000\020z\313",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000\242\252\313\000\000\000\000\000\000\000\000\006\000\000\000@P\177\310\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@8\022\306",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\b\000\000\000\000\000\000\000\024\000\000\000\000\000\000\000\240\240\277\000\000\000\000\000\004\000\000\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@8\022\306\000\000\000\000\000P\025\307",
'\000' <repeats 12 times>,
"\200X\230R\000\000\000\000\000X\016\306\000\000\000\000\000\005\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000\222\376\315\000\000\000\000\000*\000\000\000\000\000\000\000\240\322\325\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\320q\271",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\b\232\275\000\000\000\000\000\340\322\325\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\320q\271",
'\000' <repeats 12 times>,
"\200\002\000\000\000\000\000\000\000d\227R\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\020V\320\000\000\000\000\000\240\227\327\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\320q\271",
'\000' <repeats 12 times>,
"\200\t\000\000\000\000\000\000\000\320^\311\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\340(\321",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\320q\271\000\000\000\000\000\070\370\274",
'\000' <repeats 12 times>,
"\200\240\250\322\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\260\371\272",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\220\033\317\000\000\000\000\000\006\000\000\000\000\000\000\200\003\000\000\000\000\000\000\000\302M\272\000\000\000\000\000\002\000\000\000\000\000\000\000\005\000\000\000\000\000\000\000\300M\272",
'\000' <repeats 13 times>,
"\001\000\000\000\000\000\000\000\347\327R\000\000\000\000\000\220\033\317\000\000\000\000\000`\033\317",
'\000' <repeats 12 times>,
"\200X\230R\000\000\000\000\000\310\035\317\000\000\000\000\000\006\000\000\000\000\000\000\200\003\000\000\000\000\000\000\000\302$\317\000\000\000\000\000\001\000\000\000\000\000\000\000\002\000\000\000\000\000\000\000\300$\317\000\000\000\000\000\260\064\276\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\370o\300",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000\302)\317\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\300)\317",
'\000' <repeats 12 times>,
"\200\000\000\000\000\000\000\000\000\277\226R\000\000\000\000\000hY\317",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000\"*\317\000\000\000\000\000\t\000\000\000\000\000\000\000\v\000\000\000\000\000\000\000
*\317", '\000' <repeats 21 times>,
"\347\327R\000\000\000\000\000hY\317\000\000\000\000\000\bY\317", '\000'
<repeats 12 times>,
"\200X\230R\000\000\000\000\000\360\224\275\000\000\000\000\000\005\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000\")\317\000\000\000\000\000\002\000\000\000\000\000\000\000\242\266\316",
'\000' <repeats 13 times>,
"\001\000\000\000\000\000\000\000\240\266\316\000\000\000\000\000\000e\310\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@p\266\316",
'\000' <repeats 12 times>,
"\200\002\000\000\000\000\000\000\000d\227R\000\000\000\000\000\001\000\000\000\000\000\000\000\005\000\000\000\000\000\000\000#\000\000\000\000\000\000\000
-\311\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@p\266\316",
'\000' <repeats 12 times>, "\200\a\000\000\000\000\000\000\000d\227R",
'\000' <repeats 12 times>,
"\200X\230R\000\000\000\000\000\240V\317\000\000\000\000\000r\266\316\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@p\266\316",
'\000' <repeats 12 times>,
"\200\000\000\000\000\000\000\000\000\277\226R", '\000' <repeats 13
times>, "\347\327R\000\000\000\000\000\240V\317\000\000\000\000\000
\262\322\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\300\302\312",
'\000' <repeats 12 times>, "\200\001\000\000\000\000\000\000\000d\227R",
'\000' <repeats 13 times>,
"\004\000\000\000\000\000\000\000\260_\314\000\000\000\000\000\220\254\322\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@0b\272\000\000\000\000\000X\240\312",
'\000' <repeats 12 times>,
"\200d\227R\000\000\000\000\000P\242\312\000\000\000\000\000\006\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000p\365\310\000\000\000\000\000\025\000\000\000\000\000\000\000\"\000\000\000\000\000\000\000@\036\275\000\000\000\000\000\003",
'\000' <repeats 15 times>,
"\214\330R\000\000\000\000\000P\242\312\000\000\000\000\000\070\241\312", '\000'
<repeats 12 times>,
"\200X\230R\000\000\000\000\000\030\361\316\000\000\000\000\000\006\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000\342\247\316\000\000\000\000\000\v\000\000\000\000\000\000\000\016\000\000\000\000\000\000\000\340\247\316",
'\000' <repeats 21 times>,
"\347\327R\000\000\000\000\000\030\361\316\000\000\000\000\000\240\360\316",
'\000' <repeats 12 times>,
"\200X\230R\000\000\000\000\000\000\212\271\000\000\000\000\000\006\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000\222H\274\000\000\000\000\000'\000\000\000\000\000\000\000*\000\000\000\000\000\000\000\220H\274",
'\000' <repeats 21 times>,
"\347\327R\000\000\000\000\000\000\212\271\000\000\000\000\000h%\272",
'\000' <repeats 12 times>,
"\200\262\252\273\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\260\252\273",
'\000' <repeats 12 times>,
"\200\000\000\000\000\000\000\000\000\277\226R\000\000\000\000\000\340\276\303\000\000\000\000\000\003",
'\000' <repeats 15 times>,
"\020\205\310\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@
w\274", '\000' <repeats 12 times>,
"\200\003\000\000\000\000\000\000\000d\227R\000\000\000\000\000\001\000\000\000\000\000\000\000\022\225\304\000\000\000\000\000\n\000\000\000\000\000\000\000\360\234\326\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\020q\271",
'\000' <repeats 12 times>, "\200\001\000\000\000\000\000\000\000d\227R",
'\000' <repeats 12 times>,
"\200X\230R\000\000\000\000\000\260\035\306\000\000\000\000\000`\235\326\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\020q\271",
'\000' <repeats 12 times>, "\200\001\000\000\000\000\000\000\000d\227R",
'\000' <repeats 13 times>,
"\347\327R\000\000\000\000\000\260\035\306\000\000\000\000\000\240\235\326\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\020q\271",
'\000' <repeats 12 times>,
"\200\002\000\000\000\000\000\000\000d\227R\000\000\000\000\000\b\000\000\000\000\000\000\000\v\000\000\000\000\000\000\000\000c\315\000\000\000\000\000@\212\270\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\300\266\273\000\000\000\000\000
\n\276\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@0\230\277",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\340\264\273\000\000\000\000\000p\n\276\000\000\000\000\000\000\000\000\006\000\000\000@R\000\271",
'\000' <repeats 13 times>, "\003\000\000\000\000\000\000\000P\000\271",
'\000' <repeats 13 times>,
"\n\000\000\000\000\000\000\000\347\327R\000\000\000\000\000\340\264\273\000\000\000\000\000\360\353\276",
'\000' <repeats 12 times>, "\200\000\000\000?\000\000\000@0\230\277",
'\000' <repeats 12 times>,
"\200\003\000\000\000\000\000\000\000\260\v\276\000\000\000\000\000\027\000\000\000\000\000\000\000.\000\000\000\000\000\000\000P\350\277\000\000\000\000\000\003\000\000\000\000\000\000\000\n\000\000\000\000\000\000\000\214\330R\000\000\000\000\000\060\230\277\000\000\000\000\000H\a\303",
'\000' <repeats 12 times>,
"\200X\230R\000\000\000\000\000\210>\300\000\000\000\000\000\006\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000\"\016\300\000\000\000\000\000\003\000\000\000\000\000\000\000\004\000\000\000\000\000\000\000
\016\300", '\000' <repeats 13 times>,
"\n\000\000\000\000\000\000\000\347\327R\000\000\000\000\000\300\207\300\000\000\000\000\000X\233\277",
'\000' <repeats 12 times>,
"\200d\227R\000\000\000\000\000`\002\271\000\000\000\000\000\005\000\000\000\000\000\000\200\000\000\000\000\000\000\000\000\060\374\275\000\000\000\000\000\r\000\000\000\000\000\000\000\025\000\000\000\000\000\000\000P\365\271\000\000\000\000\000\003\000\000\000\000\000\000\000\n\000\000\000\000\000\000\000\214\330R\000\000\000\000\000\270>\300\000\000\000\000\000\340\v\303",
'\000' <repeats 12 times>,
"\200X\230R\000\000\000\000\000\001\000\000\000\000\000\000\000\004",
'\000' <repeats 14 times>,
"\200\020\004\276\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\260\016\300",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\001\000\000\000\000\000\000\000d\227R",
'\000' <repeats 13 times>,
"\262\016\300\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\260\016\300",
'\000' <repeats 12 times>,
"\200\000\000\000\000\000\000\000\000\277\226R\000\000\000\000\000\002\000\000\000\000\000\000\000d\227R\000\000\000\000\000\b\000\000\000\000\000\000\000`\000\276\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\240\f\300",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@0\230\277\000\000\000\000\000\060Q\305\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@@d\273",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\000\000\000\006\000\000\000@R\000\271",
'\000' <repeats 13 times>,
"\020R\305\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@@d\273",
'\000' <repeats 12 times>, "\200\001\000\000\000\000\000\000\000d\227R",
'\000' <repeats 12 times>, "\200
\321\306\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@0\030\314",
'\000' <repeats 12 times>, "\200\001\000\000\000\000\000\000\000d\227R",
'\000' <repeats 13 times>,
"\277\226R\000\000\000\000\000\n\000\000\000\000\000\000\000\220\317\306\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@0\030\314",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\003\000\000\000\000\000\000\000b\343\271\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@`\343\271",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000\277\226R\000\000\000\000\000\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\001\000\000\000\000\000\000\000\020\322\306\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\200\254\313",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\001\000\000\000\000\000\000\000\277\226R\000\000\000\000\000\000\000\000\006\000\000\000@\300\321\306\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\200\254\313",
'\000' <repeats 12 times>,
"\200\a\000\000\000\000\000\000\000d\227R\000\000\000\000\000\001\000\000\000\000\000\000\000\240O\277\000\000\000\000\000\000\000\000\006\000\000\000@\202\254\313\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\200\254\313",
'\000' <repeats 12 times>,
"\200\000\000\000\000\000\000\000\000\277\226R\000\000\000\000\000\006\000\000\000\000\000\000\000\022\000\000\000\000\000\000\000\250\030\323\000\000\000\000\000\340v\307\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\300\030\314\000\000\000\000\000\222\213\273\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\220\213\273",
'\000' <repeats 12 times>,
"\200\000\000\000\000\000\000\000\000\277\226R\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@0\264\330\000\000\000\000\000\003\000\000\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\300\315\312\000\000\000\000\000\370\336\303",
'\000' <repeats 12 times>,
"\200X\230R\000\000\000\000\000\006\000\000\000\000\000\000\000\004\000\000\000\000\000\000\000\060\264\330\000\000\000\000\000r\234\314\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@p\234\314\000\000\000\000\000\340u\322\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@@\363\322",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\v\000\000\000\000\000\000\000\016\000\000\000\000\000\000\000\200v\273\000\000\000\000\000\004\000\000\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@@\363\322\000\000\000\000\000\b\363\322",
'\000' <repeats 12 times>,
"\200X\230R\000\000\000\000\000\300\364\322\000\000\000\000\000\005\000\000\000\000\000\000\200\003\000\000\000\000\000\000\000\342\266\330\000\000\000\000\000\f\000\000\000\000\000\000\000\r\000\000\000\000\000\000\000\340\266\330",
'\000' <repeats 13 times>,
"\001\000\000\000\000\000\000\000\347\327R\000\000\000\000\000\300\364\322\000\000\000\000\000P\364\322",
'\000' <repeats 12 times>,
"\200X\230R\000\000\000\000\000\020\000\000\000\000\000\000\000\006\000\000\000\000\000\000\000`\254\273\000\000\000\000\000`\236\322\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@`\261\330",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\003\000\000\000\000\000\000\000\005\000\000\000\000\000\000\000\060w\271\000\000\000\000\000\020\241\322\000\000\000\000\000\000\000\000\006\000\000\000@\000%\276\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\030r\276",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000\020\305\300", '\000' <repeats 13
times>,
"\001\000\000\000\000\000\000\000\340[\301\000\000\000\000\000\002\000\000\000\000\000\000\000\005\000\000\000\000\000\000\000\214\330R\000\000\000\000\000\300\234\273\000\000\000\000\000\340[\301",
'\000' <repeats 12 times>, "\200d\227R\000\000\000\000\000\210\\\301",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000\345[\301\000\000\000\000\000\v\000\000\000\000\000\000\000\f\000\000\000\000\000\000\000\340[\301",
'\000' <repeats 13 times>,
"\005\000\000\000\000\000\000\000\354\326R\000\000\000\000\000\210\\\301\000\000\000\000\000
\\\301", '\000' <repeats 12 times>,
"\200X\230R\000\000\000\000\000Ȓ\303\000\000\000\000\000\005\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000bC\272\000\000\000\000\000\021\000\000\000\000\000\000\000\024\000\000\000\000\000\000\000`C\272",
'\000' <repeats 21 times>,
"\347\327R\000\000\000\000\000Ȓ\303\000\000\000\000\000 \222\303",
'\000' <repeats 12 times>,
"\200\300#\276\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@
\006\303", '\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\020\235\274",
'\000' <repeats 12 times>,
"\200\000\000\000\000\000\000\000\000\004\000\000\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@
\006\303\000\000\000\000\000\030\340\276", '\000' <repeats 12 times>,
"\200X\230R\000\000\000\000\000`\005\303\000\000\000\000\000\005\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000\202\v\300\000\000\000\000\000\003\000\000\000\000\000\000\000\006\000\000\000\000\000\000\000\200\v\300\000\000\000\000\000\360$\276\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\340\n\300",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\300\364\322\000\000\000\000\000\005",
'\000' <repeats 14 times>,
"\200\342\n\300\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\340\n\300",
'\000' <repeats 12 times>,
"\200\000\000\000\000\000\000\000\000\277\226R\000\000\000\000\000\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\001\000\000\000\000\000\000\000`j\323\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@py\325",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000\"u\271\000\000\000\000\000\006\000\000\000\000\000\000\000\t\000\000\000\000\000\000\000
u\271", '\000' <repeats 13 times>,
"\001\000\000\000\000\000\000\000\347\327R\000\000\000\000\000py\325\000\000\000\000\000
y\325", '\000' <repeats 12 times>,
"\200X\230R\000\000\000\000\000\002\000\000\000\000\000\000\000\005\000\000\000\000\000\000\000\000\000\000\006\000\000\000@b\254\323\000\000\000\000\000\004\000\000\000\000\000\000\000\005\000\000\000\000\000\000\000`\254\323",
'\000' <repeats 13 times>,
"\001\000\000\000\000\000\000\000\347\327R\000\000\000\000\000\t\000\000\000\000\000\000\000x\354\301",
'\000' <repeats 12 times>, "\200\000\000\000?\000\000\000@h\355\301",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000\242\272\273\000\000\000\000\000\020\000\000\000\000\000\000\000\023\000\000\000\000\000\000\000\240\272\273\000\000\000\000\000r\v\302\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@p\v\302",
'\000' <repeats 12 times>,
"\200\000\000\000\000\000\000\000\000\277\226R\000\000\000\000\000\300}\300\000\000\000\000\000\005\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000\222\036\301\000\000\000\000\000\024\000\000\000\000\000\000\000:\000\000\000\000\000\000\000\220\036\301",
'\000' <repeats 13 times>,
"\001\000\000\000\000\000\000\000\347\327R\000\000\000\000\000\300}\300\000\000\000\000\000\220\270\305\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\020\266\313",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000Z\000\000\000\000\000\000\000[\000\000\000\000\000\000\000\240\v\301\000\000\000\000\000P\270\305\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\020\266\313",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\000\000\000\006\000\000\000@\005\000\000\000\000\000\000@\300\036\273\000\000\000\000\000\300\271\305\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\200\247\313",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\000\227\271\000\000\000\000\000`-\302\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@0\372\302",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@@\237\274\000\000\000\000\000\302{\274\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\300{\274",
'\000' <repeats 12 times>,
"\200\000\000\000\000\000\000\000\000\320%\276\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\370p\300",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000`\372\302",
'\000' <repeats 12 times>,
"\200\002\000\000\000\000\000\000\000\340$\276\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\200m\300\000\000\000\000\000P\373\304\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@`\232\304",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\v\000\000\000\000\000\000\000\021\000\000\000\000\000\000\000\200P\274\000\000\000\000\000\260\373\304\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@`\232\304\000\000\000\000\000\262.\314\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\260.\314",
'\000' <repeats 12 times>,
"\200\000\000\000\000\000\000\000\000\277\226R\000\000\000\000\000\a\000\000\000\000\000\000\000\021\000\000\000\000\000\000\000@N\274\000\000\000\000\000\300\n\307\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\360z\273\000\000\000\000\000\240\300\300\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\220w\305",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000@Z\277\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\200\305\304",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\220w\305",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000\005\000\000\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\200\305\304\000\000\000\000\000\240q\300",
'\000' <repeats 12 times>,
"\200X\230R\000\000\000\000\000\220w\305\000\000\000\000\000\006\000\000\000\000\000\000\200\002\000\000\000\000\000\000\000\022\300\312\000\000\000\000\000\005\000\000\000\000\000\000\000\006\000\000\000\000\000\000\000\020\300\312",
'\000' <repeats 13 times>,
"\004\000\000\000\000\000\000\000\347\327R\000\000\000\000\000\220w\305\000\000\000\000\000Xw\305",
'\000' <repeats 12 times>,
"\200X\230R\000\000\000\000\000\060Y\320\000\000\000\000\000\006\000\000\000\000\000\000\000\002\000\000\000\000\000\000\000\362\352\320\000\000\000\000\000
\000\000\000\000\000\000\000$\000\000\000\000\000\000\000\360\352\320",
'\000' <repeats 13 times>,
"\004\000\000\000\000\000\000\000\347\327R\000\000\000\000\000\060Y\320\000\000\000\000\000\bX\320",
'\000' <repeats 12 times>,
"\200X\230R\000\000\000\000\000\070%\321\000\000\000\000\000\006\000\000\000\000\000\000\200\002\000\000\000\000\000\000\000\022a\272\000\000\000\000\000\b\000\000\000\000\000\000\000\f\000\000\000\000\000\000\000\020a\272",
'\000' <repeats 21 times>,
"\347\327R\000\000\000\000\000\070%\321\000\000\000\000\000\320$\321",
'\000' <repeats 12 times>, "\200X\230R", '\000' <repeats 12 times>,
"\200\006\000\000\000\000\000\000\000\340$\272\000\000\000\000\000\322\001\271\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\320\001\271",
'\000' <repeats 12 times>,
"\200\000\000\000\000\000\000\000\000\277\226R", '\000' <repeats 13
times>,
"\214\330R\000\000\000\000\000\340$\272\000\000\000\000\000\240h\306\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@`\356\313",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\002\000\000\000\000\000\000\000\004\000\000\000\000\000\000\000\300\257\314\000\000\000\000\000@h\306\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@`\356\313",
'\000' <repeats 12 times>,
"\200\002\000\000\000\000\000\000\000d\227R\000\000\000\000\000\000#\272\000\000\000\000\000\005\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000\002y\271\000\000\000\000\000\r\000\000\000\000\000\000\000%\000\000\000\000\000\000\000\000y\271",
'\000' <repeats 21 times>,
"\270\327R\000\000\000\000\000\000#\272\000\000\000\000\000\320!\272",
'\000' <repeats 12 times>, "\200\330\304\306", '\000' <repeats 12
times>, "\200\000\000\000?\000\000\000@@\305\306", '\000' <repeats 12
times>,
"\200\001\000\000\000\000\000\000\000\335\304\306\000\000\000\000\000\006\000\000\000\000\000\000\000\n\000\000\000\000\000\000\000\330\304\306",
'\000' <repeats 13 times>,
"\004\000\000\000\000\000\000\000@\261\274\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@p\225\275",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000p\261\274\000\000\000\000\000\002\000\000\000\000\000\000\000\003\000\000\000\000\000\000\000\320¹\000\000\000\000\000\001",
'\000' <repeats 15 times>,
"\214\330R\000\000\000\000\000p\225\275\000\000\000\000\000P\225\275",
'\000' <repeats 12 times>, "\200X\230R", '\000' <repeats 12 times>,
"\200\005\000\000\000\000\000\000\000\310\355\316\000\000\000\000\000\002F\272\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\000F\272",
'\000' <repeats 12 times>,
"\200\000\000\000\000\000\000\000\000\277\226R\000\000\000\000\000\001\000\000\000\000\000\000\000\347\327R\000\000\000\000\000\310\355\316\000\000\000\000\000\240'\302\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\250r\305",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\026\000\000\000\000\000\000\000&\000\000\000\000\000\000\000@Q\274\000\000\000\000\000@\247\270\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\200\003\272\000\000\000\000\000\340`\304\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\300x\313",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\025\000\000\000\000\000\000\000\031\000\000\000\000\000\000\000\200\003\272\000\000\000\000\000@a\304\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\300x\313",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\300\257\314\000\000\000\000\000\005\000\000\000\000\000\000\000\000\000\000\006\000\000\000@\220\060\305\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@
\376\272", '\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\001\000\000\000\000\000\000\000\002y\271\000\000\000\000\000\r\000\000\000\000\000\000\000\220\276\305\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@
\376\272", '\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R", '\000' <repeats 12 times>,
"\200\330\304\306", '\000' <repeats 12 times>,
"\200\000\272\305\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@
\376\272", '\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R", '\000' <repeats 12 times>,
"\200\300}\300\000\000\000\000\000\001\000\000\000\000\000\000\000и\305\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@
\376\272", '\000' <repeats 12 times>,
"\200\003\000\000\000\000\000\000\000d\227R\000\000\000\000\000\300\327\271\000\000\000\000\000\022\b\301\000\000\000\000\000\002\000\000\000\000\000\000\000\"\376\272\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@
\376\272", '\000' <repeats 12 times>,
"\200\000\000\000\000\000\000\000\000\220\226R\000\000\000\000\000\f\000\000\000\000\000\000\000\021\000\000\000\000\000\000\000\060\220\271\000\000\000\000\000ps\277\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\000\366\272",
'\000' <repeats 12 times>,
"\200\002\000\000\000\000\000\000\000d\227R\000\000\000\000\000\240t\300\000\000\000\000\000\005\000\000\000\000\000\000\000\001\000\000\000\000\000\000\000\220\030\276\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\330w\276",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000P\033\301\000\000\000\000\000\350\032\301",
'\000' <repeats 12 times>,
"\200\004\000\000\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\330w\276\000\000\000\000\000\270w\276",
'\000' <repeats 12 times>,
"\200X\230R\000\000\000\000\000\260չ\000\000\000\000\000\005\000\000\000\000\000\000\000\000\000\000\006\000\000\000@\222\217\276\000\000\000\000\000\001\000\000\000\000\000\000\000\003\000\000\000\000\000\000\000\220\217\276\000\000\000\000\000\260i\305\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\240\377\272\000\000\000\000\000\360@\327\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@0M\326",
'\000' <repeats 12 times>, "\200\002\000\000\000\000\000\000\000d\227R",
'\000' <repeats 13 times>,
"\001\000\000\000\000\000\000\000\240\377\272\000\000\000\000\000\060H\327\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@0M\326",
'\000' <repeats 12 times>, "\200\003\000\000\000\000\000\000\000d\227R",
'\000' <repeats 13 times>,
"\005\000\000\000\000\000\000\000\220{\274\000\000\000\000\000\260J\327\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@0M\326",
'\000' <repeats 12 times>, "\200\a\000\000\000\000\000\000\000d\227R",
'\000' <repeats 13 times>,
"\005\000\000\000\000\000\000\000(\246\300\000\000\000\000\000\342\324\317\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\340\324\317",
'\000' <repeats 12 times>,
"\200\000\000\000\000\000\000\000\000\277\226R\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\000-\301\000\000\000\000\000@J\327\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@
\020\317", '\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\a\000\000\000\000\000\000\000\b\000\000\000\000\000\000\000\060-\301\000\000\000\000\000\300\071\327\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@
\020\317", '\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\000\000\000\006\000\000\000@\005\000\000\000\000\000\000@\300\r\277\000\000\000\000\000\300\270\322\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@
\020\317", '\000' <repeats 12 times>,
"\200\003\000\000\000\000\000\000\000d\227R", '\000' <repeats 13 times>,
"\004\000\000\000\000\000\000\000\240κ\000\000\000\000\000\"\020\317\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@
\020\317", '\000' <repeats 12 times>,
"\200\000\000\000\000\000\000\000\000\277\226R\000\000\000\000\000Й\277\000\000\000\000\000HD\312",
'\000' <repeats 12 times>,
"\200\300\300\322\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@p\f\307",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000(\224\303",
'\000' <repeats 12 times>,
"\200\003\000\000\000\000\000\000\000r\f\307\000\000\000\000\000\005\000\000\000\000\000\000\000\r\000\000\000\000\000\000\000p\f\307\000\000\000\000\000\362+\314\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\360+\314",
'\000' <repeats 12 times>,
"\200\000\000\000\000\000\000\000\000\277\226R\000\000\000\000\000\000\000\000\006\000\000\000@\006\000\000\000\000\000\000@\360ι\000\000\000\000\000pY\306\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\240p\273",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\v\000\000\000\000\000\000\000\f\000\000\000\000\000\000\000\240f\301\000\000\000\000\000PY\306\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\240p\273",
'\000' <repeats 12 times>,
"\200\004\000\000\000\000\000\000\000d\227R\000\000\000\000\000\340\272\313",
'\000' <repeats 12 times>, "\200\001\000\000\000\000\000\000\000
R\306\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\240p\273",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\340\272\313",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000\000R\306\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\240p\273",
'\000' <repeats 12 times>,
"\200\004\000\000\000\000\000\000\000d\227R\000\000\000\000\000\000\"\301",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000p\n\310\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\240p\273",
'\000' <repeats 12 times>,
"\200\003\000\000\000\000\000\000\000d\227R\000\000\000\000\000\230\006\303",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000\242p\273\000\000\000\000\000\005\000\000\000\000\000\000\000\b\000\000\000\000\000\000\000\240p\273",
'\000' <repeats 21 times>,
"\270\327R\000\000\000\000\000\230\006\303\000\000\000\000\000\330l\301", '\000'
<repeats 12 times>,
"\200X\230R\000\000\000\000\000\001\000\000\000\000\000\000\000\006\000\000\000\000\000\000\000\320\021\301\000\000\000\000\000\342z\301\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\340z\301",
'\000' <repeats 12 times>,
"\200\000\000\000\000\000\000\000\000\277\226R\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@0v\274\000\000\000\000\000\220Y\307\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\360k\314",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@p\245\313\000\000\000\000\000\320V\307\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\360k\314",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000h[\320\000\000\000\000\000\005\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000r\300\313\000\000\000\000\000\017\000\000\000\000\000\000\000\030\000\000\000\000\000\000\000p\300\313",
'\000' <repeats 21 times>,
"\347\327R\000\000\000\000\000h[\320\000\000\000\000\000\240Z\320",
'\000' <repeats 12 times>,
"\200X\230R\000\000\000\000\000\000\000\000\006\000\000\000@\005\000\000\000\000\000\000@0\202\273\000\000\000\000\000\020\t\311\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\300\354\317",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\003\000\000\000\000\000\000\000\b\000\000\000\000\000\000\000\260ƺ\000\000\000\000\000P\t\311\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\300\354\317",
'\000' <repeats 12 times>,
"\200\002\000\000\000\000\000\000\000d\227R\000\000\000\000\000\000\000\000\006\000\000\000@\005\000\000\000\000\000\000@\020\243\271\000\000\000\000\000\260\233\311\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\300\354\317",
'\000' <repeats 12 times>,
"\200\003\000\000\000\000\000\000\000d\227R\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\020\243\271\000\000\000\000\000\300\232\311\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\300\354\317",
'\000' <repeats 12 times>,
"\200\002\000\000\000\000\000\000\000d\227R\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\000\003\275\000\000\000\000\000\240\222\311\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\300\354\317",
'\000' <repeats 12 times>,
"\200\v\000\000\000\000\000\000\000d\227R\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\000\003\275\000\000\000\000\000\302\354\317\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\300\354\317",
'\000' <repeats 12 times>,
"\200\000\000\000\000\000\000\000\000\277\226R\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\000\003\275\000\000\000\000\000\300:\311\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\200\355\317",
'\000' <repeats 12 times>,
"\200\002\000\000\000\000\000\000\000\340r\310\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\020\032\307",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000\062o\274\000\000\000\000\000/\000\000\000\000\000\000\000\064\000\000\000\000\000\000\000\060o\274",
'\000' <repeats 21 times>,
"\270\327R\000\000\000\000\000\020\032\307\000\000\000\000\000h\030\307", '\000'
<repeats 12 times>,
"\200X\230R\000\000\000\000\000\060|\271\000\000\000\000\000\005\000\000\000\000\000\000\200\000\000\000\000\000\000\000\000B\310\303\000\000\000\000\000\004\000\000\000\000\000\000\000\006\000\000\000\000\000\000\000@\310\303",
'\000' <repeats 21 times>,
"\347\327R\000\000\000\000\000@\262\273\000\000\000\000\000\020\304\304", '\000'
<repeats 12 times>, "\200\000\000\000?\000\000\000@\200\211\317", '\000'
<repeats 12 times>,
"\200\001\000\000\000\000\000\000\000\022\246\271\000\000\000\000\000\001\000\000\000\000\000\000\000\002\000\000\000\000\000\000\000\020\246\271",
'\000' <repeats 21 times>,
"\347\327R\000\000\000\000\000\200\211\317\000\000\000\000\000` \307",
'\000' <repeats 12 times>,
"\200X\230R\000\000\000\000\000\000\000\000\006\000\000\000@\005\000\000\000\000\000\000@\000}\273\000\000\000\000\000\200\373\312\000\000\000\000\000\f\000\000\000\000\000\000\000\031\000\000\000\000\000\000\000\260W\274\000\000\000\000\000\001",
'\000' <repeats 15 times>,
"\214\330R\000\000\000\000\000\000\000\000\006\000\000\000@\300\342\321", '\000'
<repeats 12 times>, "\200\000\000\000?\000\000\000@\220\343\321", '\000'
<repeats 12 times>,
"\200\001\000\000\000\000\000\000\000\240\372\312\000\000\000\000\000\001\000\000\000\000\000\000\000\003\000\000\000\000\000\000\000p\373\270\000\000\000\000\000\003",
'\000' <repeats 15 times>,
"\214\330R\000\000\000\000\000\220\343\321\000\000\000\000\000p/\272",
'\000' <repeats 12 times>,
"\200X\230R\000\000\000\000\000\220\342\321\000\000\000\000\000\005\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000\262\064\322\000\000\000\000\000\t\000\000\000\000\000\000\000\f\000\000\000\000\000\000\000\260\064\322",
'\000' <repeats 21 times>,
"\347\327R\000\000\000\000\000\220\342\321\000\000\000\000\000(\342\321", '\000'
<repeats 12 times>,
"\200X\230R\000\000\000\000\000p\344\321\000\000\000\000\000\005\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000\"4\322\000\000\000\000\000\f\000\000\000\000\000\000\000\025\000\000\000\000\000\000\000
4\322\000\000\000\000\000
\032\276\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\200x\276",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\001\000\000\000\000\000\000\000\002\000\000\000\000\000\000\000\200\251\276\000\000\000\000\000\004\000\000\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\200x\276\000\000\000\000\000\bx\276",
'\000' <repeats 12 times>, "\200X\230R", '\000' <repeats 13 times>,
"\005\000\000\000\000\000\000\000\220\342\321\000\000\000\000\000\360\330\300\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@0]\303",
'\000' <repeats 12 times>,
"\200\016\000\000\000\000\000\000\000d\227R\000\000\000\000\000\f\000\000\000\000\000\000\000`-\302\000\000\000\000\000\000\000\000\006\000\000\000@2]\303\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@0]\303",
'\000' <repeats 12 times>,
"\200\000\000\000\000\000\000\000\000\277\226R\000\000\000\000\000\002\000\000\000\000\000\000\000\302{\274\000\000\000\000\000\000\000\000\006\000\000\000@pJ\304\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\360\334\303",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\200\242\313",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000@J\304\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@P\261\303",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\200\242\313\000\000\000\000\000\005\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000R\261\303\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@P\261\303",
'\000' <repeats 12 times>,
"\200\000\000\000\000\000\000\000\000\277\226R\000\000\000\000\000\200\242\313",
'\000' <repeats 12 times>, "\200\001\000\000\000\000\000\000\000
h\311\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@0J\321",
'\000' <repeats 12 times>,
"\200\003\000\000\000\000\000\000\000d\227R\000\000\000\000\000\030(\321",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000\020k\311\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@0J\321",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\030(\321",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000\062J\321\000\000\000\000\000\005\000\000\000\000\000\000\000\033\000\000\000\000\000\000\000\060J\321",
'\000' <repeats 21 times>,
"\347\327R\000\000\000\000\000\030(\321\000\000\000\000\000\060}\322\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\360g\301",
'\000' <repeats 12 times>, "\200\001\000\000\000\000\000\000\000d\227R",
'\000' <repeats 13 times>,
"\004\000\000\000\000\000\000\000\340\227\274\000\000\000\000\000\000\201\322\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\360g\301",
'\000' <repeats 12 times>,
"\200\003\000\000\000\000\000\000\000d\227R\000\000\000\000\000P\261\303\000\000\000\000\000\006\000\000\000\000\000\000\200\000\000\000\000\000\000\000\000\362g\301\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\360g\301",
'\000' <repeats 12 times>,
"\200\000\000\000\000\000\000\000\000\277\226R\000\000\000\000\000\060J\321",
'\000' <repeats 12 times>,
"\200\003\000\000\000\000\000\000\000\300\351\325\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\320o\271",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\060J\321",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000\360\351\325\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\320o\271",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\060J\321",
'\000' <repeats 12 times>,
"\200\000\000\000\000\000\000\000\000\060\352\325\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\320o\271",
'\000' <repeats 12 times>,
"\200\002\000\000\000\000\000\000\000d\227R\000\000\000\000\000`n\314\000\000\000\000\000\000\273\274\000\000\000\000\000\000\000\000\006\000\000\000@p\352\325\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\320o\271",
'\000' <repeats 12 times>,
"\200\002\000\000\000\000\000\000\000d\227R\000\000\000\000\000Pc\317\000\000\000\000\000\004\000\000\000\000\000\000\000\000\000\000\006\000\000\000@\320]\305\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@p~\313",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\020\223\274\000\000\000\000\000B\340\275\000\000\000\000\000\000\000\000\006\000\000\000@P\366\300\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\000\240\300",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\001\000\000\000\000\000\000\000\005\000\000\000\000\000\000\000\001\000\000\000\000\000\000\000\004\000\000\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\000\240\300\000\000\000\000\000П\300",
'\000' <repeats 12 times>, "\200X\230R", '\000' <repeats 12 times>,
"\200\005\000\000\000\000\000\000\000
\303\316\000\000\000\000\000\002\350\271\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\000\350\271",
'\000' <repeats 12 times>,
"\200\000\000\000\000\000\000\000\000\277\226R\000\000\000\000\000\n\000\000\000\000\000\000\000\347\327R\000\000\000\000\000
\303\316\000\000\000\000\000\300\223\330\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\340\005\324",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\027\000\000\000\000\000\000\000.\000\000\000\000\000\000\000P\350\277\000\000\000\000\000\342\005\324\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\340\005\324",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000\277\226R\000\000\000\000\000\210>\300\000\000\000\000\000\006\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000\360h\277\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\300\361\272",
'\000' <repeats 12 times>,
"\200\002\000\000\000\000\000\000\000d\227R\000\000\000\000\000\300\207\300\000\000\000\000\000X\233\277",
'\000' <repeats 12 times>, "\200
W\307\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@`a\314",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000P\365\271\000\000\000\000\000\003\000\000\000\000\000\000\000\n\000\000\000\000\000\000\000\000W\307\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@`a\314",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000
\376\272\000\000\000\000\000\020\004\276\000\000\000\000\000\000\000\000\006\000\000\000@ba\314\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@`a\314",
'\000' <repeats 12 times>,
"\200\000\000\000\000\000\000\000\000\277\226R\000\000\000\000\000
\376\272\000\000\000\000\000\262\016\300\000\000\000\000\000\000\000\000\006\000\000\000@Pf\307\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@@\022\315",
'\000' <repeats 12 times>,
"\200\005\000\000\000\000\000\000\000d\227R\000\000\000\000\000\250\224\275\000\000\000\000\000`\000\276\000\000\000\000\000\000\000\000\006\000\000\000@\320Q\307\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@@\022\315",
'\000' <repeats 12 times>,
"\200\005\000\000\000\000\000\000\000d\227R\000\000\000\000\000\250\224\275\000\000\000\000\000\005\000\000\000\000\000\000\000\000\000\000\006\000\000\000@0P\307\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@@\022\315",
'\000' <repeats 12 times>,
"\200\006\000\000\000\000\000\000\000d\227R\000\000\000\000\000\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\000\000\000\006\000\000\000@`I\307\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@@\022\315",
'\000' <repeats 12 times>,
"\200\v\000\000\000\000\000\000\000d\227R\000\000\000\000\000\003\000\000\000\000\000\000\000d\227R\000\000\000\000\000\b\000\000\000\000\000\000\000B\022\315\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@@\022\315",
'\000' <repeats 12 times>,
"\200\000\000\000\000\000\000\000\000\277\226R", '\000' <repeats 13
times>,
"\277\226R\000\000\000\000\000\060]\303\000\000\000\000\000@Y\312\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@`n\314",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\003\000\000\000\000\000\000\000X\375\302",
'\000' <repeats 12 times>,
"\200p\306\322\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@Pc\317",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000H\266\317",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000\022\223\274\000\000\000\000\000\002\000\000\000\000\000\000\000\t\000\000\000\000\000\000\000\020\223\274",
'\000' <repeats 21 times>,
"\347\327R\000\000\000\000\000H\266\317\000\000\000\000\000\370\265\317", '\000'
<repeats 12 times>,
"\200X\230R\000\000\000\000\000\340\272\317\000\000\000\000\000\005\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000\202c\317\000\000\000\000\000\002\000\000\000\000\000\000\000\v\000\000\000\000\000\000\000\200c\317",
'\000' <repeats 21 times>,
"\347\327R\000\000\000\000\000\340\272\317\000\000\000\000\000\200\272\317",
'\000' <repeats 12 times>, "\200X\230R\000\000\000\000\000
\303\316\000\000\000\000\000\005\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000\242\016\317\000\000\000\000\000\a\000\000\000\000\000\000\000\n\000\000\000\000\000\000\000\240\016\317",
'\000' <repeats 21 times>, "\347\327R\000\000\000\000\000
\303\316\000\000\000\000\000\310\302\316", '\000' <repeats 12 times>,
"\200X\230R\000\000\000\000\000h\240\277\000\000\000\000\000\240\003\276\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\320\021\301",
'\000' <repeats 12 times>, "\200\001\000\000\000\000\000\000\000d\227R",
'\000' <repeats 13 times>,
"\347\327R\000\000\000\000\000h\240\277\000\000\000\000\000\004\000\000\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\320\021\301\000\000\000\000\000
~\300", '\000' <repeats 12 times>,
"\200X\230R\000\000\000\000\000\033\000\000\000\000\000\000\000\005\000\000\000\000\000\000\000\300\373\271\000\000\000\000\000\062v\274\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@0v\274",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000\220\226R\000\000\000\000\000\270\030\324\000\000\000\000\000\005\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000PO\305\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@p\245\313",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\270\030\324\000\000\000\000\000`D\277\000\000\000\000\000\000\000\000\006\000\000\000@\"ع\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@
ع", '\000' <repeats 12 times>,
"\200\000\000\000\000\000\000\000\000\277\226R\000\000\000\000\000\020#\324\000\000\000\000\000\342j\273\000\000\000\000\000\000\000\000\006\000\000\000@P\324\304\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\220\241\313",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000@ƶ\000\000\000\000\000\"u\313\000\000\000\000\000\000\000\000\006\000\000\000@\220\324\304\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\220\241\313",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\005\000\000\000\000\000\000\000\n\000\000\000\000\000\000\000\200\\\274\000\000\000\000\000\222\241\313\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\220\241\313",
'\000' <repeats 12 times>,
"\200\000\000\000\000\000\000\000\000\277\226R", '\000' <repeats 12
times>, " \006", '\000' <repeats 14 times>,
"\200\220\000\307\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@p\016\314",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\300\213\274\000\000\000\000\000h\177\271\000\000\000\000\000\000\000\000\006\000\000\000@P\000\307\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@p\016\314",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\004\000\000\000\000\000\000\000r\016\314\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@p\016\314",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000\277\226R\000\000\000\000\000\260\376\272",
'\000' <repeats 12 times>,
"\200\003\000\000\000\000\000\000\000\240\002\307\000\000\000\000\000\000\000\000\006\000\000\000@\020\242\322\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\340s\325",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\002\000\000\000\000\000\000\000\060\001\307\000\000\000\000\000\000\000\000\006\000\000\000@\004\000\000\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\340s\325\000\000\000\000\000\270s\325",
'\000' <repeats 12 times>,
"\200X\230R\000\000\000\000\000xw\325\000\000\000\000\000\005\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000B\253\323\000\000\000\000\000\004\000\000\000\000\000\000\000\005\000\000\000\000\000\000\000@\253\323",
'\000' <repeats 13 times>,
"\001\000\000\000\000\000\000\000\347\327R\000\000\000\000\000xw\325\000\000\000\000\000\250u\325",
'\000' <repeats 12 times>,
"\200X\230R\000\000\000\000\000\060v\325\000\000\000\000\000\005\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000\060t\323\000\000\000\000\000\t\000\000\000\000\000\000\000\n\000\000\000\000\000\000\000p\373\270\000\000\000\000\000\020\256\307\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\000\016\272",
'\000' <repeats 12 times>,
"\200\003\000\000\000\000\000\000\000d\227R\000\000\000\000\000\300v\325\000\000\000\000\000\005\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000\002\016\272\000\000\000\000\000\t\000\000\000\000\000\000\000\v\000\000\000\000\000\000\000\000\016\272",
'\000' <repeats 13 times>,
"\001\000\000\000\000\000\000\000\270\327R\000\000\000\000\000\300v\325\000\000\000\000\000\060\003\276\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\250\b\306",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\t\000\000\000\000\000\000\000\n\000\000\000\000\000\000\000p\253\323\000\000\000\000\000\004\000\000\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\250\b\306\000\000\000\000\000\330r\305",
'\000' <repeats 12 times>,
"\200X\230R\000\000\000\000\000H%\324\000\000\000\000\000\005\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000B\347\271\000\000\000\000\000\021\000\000\000\000\000\000\000\024\000\000\000\000\000\000\000@\347\271",
'\000' <repeats 13 times>,
"\001\000\000\000\000\000\000\000\347\327R\000\000\000\000\000H%\324\000\000\000\000\000P7\277\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\220\236\300",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\a\000\000\000\000\000\000\000\b\000\000\000\000\000\000\000\200\033\300\000\000\000\000\000\004\000\000\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\220\236\300\000\000\000\000\000X\236\300",
'\000' <repeats 12 times>,
"\200X\230R\000\000\000\000\000X\215\303\000\000\000\000\000\005\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000\002\212\300\000\000\000\000\000\005\000\000\000\000\000\000\000\022\000\000\000\000\000\000\000\000\212\300",
'\000' <repeats 13 times>,
"\001\000\000\000\000\000\000\000\347\327R\000\000\000\000\000X\215\303\000\000\000\000\000\300\214\303",
'\000' <repeats 12 times>,
"\200X\230R\000\000\000\000\000\220\214\303\000\000\000\000\000\005\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000B\211\303\000\000\000\000\000\b\000\000\000\000\000\000\000\n\000\000\000\000\000\000\000@\211\303",
'\000' <repeats 13 times>,
"\001\000\000\000\000\000\000\000\347\327R\000\000\000\000\000\220\214\303\000\000\000\000\000\070\214\303",
'\000' <repeats 12 times>,
"\200X\230R\000\000\000\000\000X\234\302\000\000\000\000\000\005\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000\062\234\271\000\000\000\000\000\021\000\000\000\000\000\000\000\023\000\000\000\000\000\000\000\060\234\271",
'\000' <repeats 13 times>,
"\001\000\000\000\000\000\000\000\347\327R\000\000\000\000\000X\234\302\000\000\000\000\000\270\233\302",
'\000' <repeats 12 times>,
"\200X\230R\000\000\000\000\000\000\000\000\006\000\000\000@\005\000\000\000\000\000\000@\240Ź\000\000\000\000\000\260S\305\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\200\277\312",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\060\357\271",
'\000' <repeats 12 times>,
"\200\000\000\000\000\000\000\000\000\220\263\270\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\360\241\271",
'\000' <repeats 12 times>,
"\200\003\000\000\000\000\000\000\000d\227R\000\000\000\000\000pq\300",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000\320E\277\000\000\000\000\000\a\000\000\000\000\000\000\000\032\000\000\000\000\000\000\000p\b\273\000\000\000\000\000\001\000\000\000\000\000\000\000\001\000\000\000\000\000\000\000\214\330R\000\000\000\000\000pq\300\000\000\000\000\000\320\350\303",
'\000' <repeats 12 times>,
"\200X\230R\000\000\000\000\000\000u\305\000\000\000\000\000\005\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000r\004\272\000\000\000\000\000\002\000\000\000\000\000\000\000\005\000\000\000\000\000\000\000p\004\272",
'\000' <repeats 13 times>,
"\001\000\000\000\000\000\000\000и\307\000\000\000\000\000\r\000\000\000\000\000\000\000\023\000\000\000\000\000\000\000\060O\274\000\000\000\000\000\003\000\000\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\360\302\306\000\000\000\000\000\300\261\310",
'\000' <repeats 12 times>, "\200\000\000\000?\000\000\000@@\353\276",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000ű\310\000\000\000\000\000\004\000\000\000\000\000\000\000\a\000\000\000\000\000\000\000\300\261\310\000\000\000\000\000x\260\310",
'\000' <repeats 12 times>,
"\200\354\326R\000\000\000\000\000\030\353\323\000\000\000\000\000\330\352\323",
'\000' <repeats 12 times>,
"\200}\260\310\000\000\000\000\000\f\000\000\000\000\000\000\000\016\000\000\000\000\000\000\000x\260\310",
'\000' <repeats 13 times>,
"\005\000\000\000\000\000\000\000\354\326R\000\000\000\000\000\360\353\323\000\000\000\000\000x\353\323",
'\000' <repeats 12 times>,
"\200X\230R\000\000\000\000\000\b\037\307\000\000\000\000\000\005",
'\000' <repeats 14 times>,
"\200\240d\323\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\200\357\323\000\000\000\000\000\360\255\310",
'\000' <repeats 12 times>, "\200d\227R\000\000\000\000\000\230\022\324",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000\002{\274\000\000\000\000\000
\000\000\000\000\000\000\000*\000\000\000\000\000\000\000\000{\274",
'\000' <repeats 13 times>,
"\005\000\000\000\000\000\000\000\347\327R\000\000\000\000\000\230\022\324\000\000\000\000\000@\021\324",
'\000' <repeats 12 times>,
"\200X\230R\000\000\000\000\000\240r\325\000\000\000\000\000\006\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000\242
\324\000\000\000\000\000\b\000\000\000\000\000\000\000\n\000\000\000\000\000\000\000\240
\324", '\000' <repeats 21 times>,
"\347\327R\000\000\000\000\000\240r\325\000\000\000\000\000Hr\325",
'\000' <repeats 12 times>,
"\200X\230R\000\000\000\000\000\330r\325\000\000\000\000\000\006\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000\022\246\323\000\000\000\000\000\001\000\000\000\000\000\000\000\002\000\000\000\000\000\000\000\020\246\323",
'\000' <repeats 21 times>,
"\347\327R\000\000\000\000\000\330r\325\000\000\000\000\000PZ\323\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\370\275\323",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\016\000\000\000\000\000\000\000\021\000\000\000\000\000\000\000Ц\323\000\000\000\000\000\004\000\000\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\370\275\323\000\000\000\000\000Ƚ\323",
'\000' <repeats 12 times>,
"\200X\230R\000\000\000\000\000\270\341\324\000\000\000\000\000\005\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000b\236\323\000\000\000\000\000\t\000\000\000\000\000\000\000\016\000\000\000\000\000\000\000`\236\323",
'\000' <repeats 21 times>,
"\347\327R\000\000\000\000\000\270\341\324\000\000\000\000\000@\341\324", '\000'
<repeats 12 times>,
"\200X\230R\000\000\000\000\000\350\345\276\000\000\000\000\000\005\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000\342&\275\000\000\000\000\000\004\000\000\000\000\000\000\000\006\000\000\000\000\000\000\000\340&\275\000\000\000\000\000\200ϼ\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\200&\275",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000p\v\302\000\000\000\000\000\005\000\000\000\000\000\000\200\000\000\000\000\000\000\000\000\302\213\273\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\300\213\273",
'\000' <repeats 12 times>,
"\200\000\000\000\000\000\000\000\000\277\226R\000\000\000\000\000\220\036\301",
'\000' <repeats 13 times>,
"\001\000\000\000\000\000\000\000`R\277\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\020P\312",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000\300V\277\000\000\000\000\000\r\000\000\000\000\000\000\000\027\000\000\000\000\000\000\000\060^\274\000\000\000\000\000\060\327\324\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\320%\325",
'\000' <repeats 12 times>,
"\200\003\000\000\000\000\000\000\000d\227R\000\000\000\000\000\002\000\000\000\000\000\000\000\005\000\000\000\000\000\000\000\320\330\301\000\000\000\000\000\360\330\310\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\370\372\316",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000\302u\317\000\000\000\000\000!\000\000\000\000\000\000\000#\000\000\000\000\000\000\000\300u\317\000\000\000\000\000\220\341\306\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\340\021\315\000\000\000\000\000\260u\310\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\330\033\307",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\r\000\000\000\000\000\000\000\021\000\000\000\000\000\000\000\200*\317\000\000\000\000\000\005\000\000\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\330\033\307\000\000\000\000\000\200\067\302\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\360\221\303",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000\202c\273\000\000\000\000\000\004\000\000\000\000\000\000\000\025\000\000\000\000\000\000\000\200c\273",
'\000' <repeats 21 times>,
"\347\327R\000\000\000\000\000\360\221\303\000\000\000\000\000@\221\303", '\000'
<repeats 12 times>, "\200X\230R", '\000' <repeats 13 times>,
"\005\000\000\000\000\000\000\000\002\000\000\000\000\000\000\000\002\327\271\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\000\327\271",
'\000' <repeats 12 times>,
"\200\000\000\000\000\000\000\000\000\277\226R\000\000\000\000\000\004\000\000\000\000\000\000\000d\227R",
'\000' <repeats 12 times>,
"\200\300\262\270\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\340z\271",
'\000' <repeats 12 times>,
"\200\002\000\000\000\000\000\000\000:\245R\000\000\000\000\000\003\000\000\000\000\000\000\000d\227R",
'\000' <repeats 13 times>, "\347\327R", '\000' <repeats 12 times>,
"\200\200Y\304\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\340z\271",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000H\204\274\000\000\000\000\000\270\203\271\000\000\000\000\000@|\273\000\000\000\000\000PX\304\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\340z\271",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@p^\320\000\000\000\000\000\342z\271\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\340z\271",
'\000' <repeats 12 times>,
"\200\000\000\000\000\000\000\000\000\277\226R\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@p^\320\000\000\000\000\000P\214\305\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@P*\272",
'\000' <repeats 12 times>,
"\200\002\000\000\000\000\000\000\000d\227R\000\000\000\000\000\200\240\300",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000R*\272\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@P*\272",
'\000' <repeats 12 times>,
"\200\000\000\000\000\000\000\000\000\220\226R\000\000\000\000\000\200\240\300\000\000\000\000\000\060\240\300",
'\000' <repeats 12 times>,
"\200p%\302\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\260\375\270",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\220w\305\000\000\000\000\000\220\227\326\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\300ù",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000f\000\000\000\000\000\000\000\200VQ\000\000\000\000\000\220w\305\000\000\000\000\000\300\227\326\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\300ù",
'\000' <repeats 12 times>, "\200\001\000\000\000\000\000\000\000d\227R",
'\000' <repeats 12 times>,
"\200X\230R\000\000\000\000\000\220w\305\000\000\000\000\000\060\220\326\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\300ù",
'\000' <repeats 12 times>,
"\200\002\000\000\000\000\000\000\000d\227R\000\000\000\000\000pŹ",
'\000' <repeats 12 times>,
"\200\003\000\000\000\000\000\000\000p\220\326\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\300ù",
'\000' <repeats 12 times>,
"\200\002\000\000\000\000\000\000\000d\227R\000\000\000\000\000\003\000\000\000\000\000\000\000\004\000\000\000\000\000\000\000\340S\272\000\000\000\000\000`̼\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\320¹",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\370e\275\000\000\000\000\000\005\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000\322\b\300",
'\000' <repeats 13 times>, "\t\000\000\000\000\000\000\000\320\b\300",
'\000' <repeats 13 times>,
"\001\000\000\000\000\000\000\000\347\327R\000\000\000\000\000\020Z\275\000\000\000\000\000\020\002\303",
'\000' <repeats 12 times>,
"\200d\227R\000\000\000\000\000\250\003\303\000\000\000\000\000\005\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000`'\276\000\000\000\000\000
\000\000\000\000\000\000\000(\000\000\000\000\000\000\000\200\327\272\000\000\000\000\000\003\000\000\000\000\000\000\000\001\000\000\000\000\000\000\000\214\330R\000\000\000\000\000\250\003\303\000\000\000\000\000`\002\303",
'\000' <repeats 12 times>,
"\200\036\370Z\000\000\000\000\000\001\000\000\000\000\000\000\000\037\000\000\000\000\000\000\000\377\377\377\377\377\377\377\377Q\204\325\000\000\000\000\000H\276\377\377\377\177\000\000P\276\377\377\377\177\000\000X\276\377\377\377\177\000\000\225\237[\000\000\000\000\000\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\002\000\000\000\000\000\000\000\037\000\000\000\000\000\000\000\037\000\000\000\000\000\000\000\037\000\000\000\000\000\000\000\001\000\000\000\000\000\000\000
\000\000\000\000\000\000\000\377\377\377\377\377\377\377\377:\036I\000\000\000\000\000Q\204\325\000\000\000\000\000@:\326",
'\000' <repeats 13 times>,
"\064\000\000\000\000\000\000\000\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\000\300\377\377\377\177\000\000\221\203\325\000\000\000\000\000\064",
'\000' <repeats 15 times>,
"\064\000\000\000\000\000\000\000P\305\377\377\377\177\000\000\220:\326\000\000\000\000\000lkR\000\000\000\000\000\204\305\377\377\377\177\000\000
\325\377\377\377\177\000\000^\270\301\000\000\000\000\000\001\000\000\000\000\000\000\000]\270\301\000\000\000\000\000\244\366S\000\000\000\000\000\377\377\377\377\377\377\377\377\000\000\000?\000\000\000@0\253\313\000\000\000\000\000\b\000\000\000\000\000\000\000(\000\000\000\000\000\000\000d\227R\000\000\000\000\000\377\377\377\377\377\377\377\377pA\307\000\000\000\000\000\020",
'\000' <repeats 15 times>, "\001\001", '\000' <repeats 13 times>,
"@0\253\313", '\000' <repeats 12 times>,
"\200@\017\300\000\000\000\000\000@\023\300\000\000\000\000\000\002\000\000\000\000\000\000\000d\227R\000\000\000\000\000\f\000\000\000\000\000\000\000\001\300\377\377\377\177\000\000\240\276\377\377\377\177\000\000\340\325\377\377\377\177\000\000\002\000\000\000\000\000\000\000\001",
'\000' <repeats 15 times>, "\064", '\000' <repeats 14 times>,
"\200X\230R", '\000' <repeats 13 times>,
"\350\325\377\377\377\177\000\000\001\000\000\000\000\000\000\000\000\000\000?\000\000\000@\200\226\273",
'\000' <repeats 13 times>, "
\000\000\000\000\000\000\000\277\226R\001\000\000\000\000H\270\301\000\000\000\000\000\350\276\377\377\377\177\000\000
\000\000\000\000\000\000\000^\270\301\000\000\000\000\000^\270\301\000\000\000\000\000\240\017\000\000\000\000\000\000\060\002\314\000\000\000\000\000Q\270\301\000\000\000\000\000\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\340\021\315\000\000\000\000\000\260\216\306\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@0\002\314",
'\000' <repeats 12 times>, "\200\002\000\000\000\000\000\000\000d\227R",
'\000' <repeats 13 times>,
"\277\226R\000\000\000\000\000\200*\317\000\000\000\000\000\320\336\325\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\240q\271",
'\000' <repeats 12 times>, "\200\001\000\000\000\000\000\000\000d\227R",
'\000' <repeats 13 times>,
"\277\226R\000\000\000\000\000\001\000\000\000\000\000\000\000\220\330\325\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\240q\271",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\003\000\000\000\000\000\000\000\347\327R\000\000\000\000\000\240\372\271\000\000\000\000\000p\331\325\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\240q\271",
'\000' <repeats 12 times>,
"\200\005\000\000\000\000\000\000\000d\227R\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\300\241\271\000\000\000\000\000\300\331\325\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\240q\271",
'\000' <repeats 12 times>,
"\200\b\000\000\000\000\000\000\000d\227R\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\300\241\271\000\000\000\000\000\020-\327\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\240q\271",
'\000' <repeats 12 times>, "\200\t\000\000\000\000\000\000\000d\227R",
'\000' <repeats 13 times>,
"\001\000\000\000\000\000\000\000\300\241\271\000\000\000\000\000\242q\271\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\240q\271",
'\000' <repeats 12 times>,
"\200\000\000\000\000\000\000\000\000\277\226R\000\000\000\000\000\000\000\000\006\000\000\000@\005\000\000\000\000\000\000@\340z\271\000\000\000\000\000\320\334\325\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\360\215\271",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\000\000\000\006\000\000\000@UXQ\000\000\000\000\000и\273\000\000\000\000\000p\335\325\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\360\215\271",
'\000' <repeats 12 times>,
"\200\003\000\000\000\000\000\000\000d\227R\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@и\273\000\000\000\000\000\300\335\325\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\360\215\271",
'\000' <repeats 12 times>,
"\200\006\000\000\000\000\000\000\000d\227R\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@и\273\000\000\000\000\000\000\336\325\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\360\215\271",
'\000' <repeats 12 times>,
"\200\002\000\000\000\000\000\000\000d\227R\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\320¹\000\000\000\000\000\260;\327\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\360\215\271",
'\000' <repeats 12 times>,
"\200\021\000\000\000\000\000\000\000\340\"\302\000\000\000\000\000\004\000\000\000\000\000\000\000\t\000\000\000\000\000\000\000@\252\276\000\000\000\000\000@f\323\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@(\023\324",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\006\000\000\000\000\000\000\000\n\000\000\000\000\000\000\000@\252\276\000\000\000\000\000\005\000\000\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@(\023\324\000\000\000\000\000\000\023\324",
'\000' <repeats 12 times>,
"\200X\230R\000\000\000\000\000x\334\302\000\000\000\000\000\006\000\000\000\000\000\000\000\065\000\000\000\000\000\000\000b!\324\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@`!\324",
'\000' <repeats 12 times>,
"\200\000\000\000\000\000\000\000\000\277\226R", '\000' <repeats 13
times>,
"\277\226R\000\000\000\000\000\b\000\000\000\000\000\000\000\240\262\270\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@Pz\271",
'\000' <repeats 12 times>,
"\200\002\000\000\000\000\000\000\000:\245R\000\000\000\000\000\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\003\000\000\000\000\000\000\000\a",
'\000' <repeats 14 times>,
"\200\340-\304\000\000\000\000\000\000\000\000\006\000\000\000@UXQ\000\000\000\000\000Loading
/src/emacs-24.5/lisp/loaddefs.el
(source)...\000\000\000\000\000.\304\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@Pz\271\000\000\000\000\000UXQ\000\000\000\000\000l\000\000\000\000\000\000\000p\201I\000\000\000\000\000\324c\330\000\000\000\000\000UXQ\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@P+\321\000\000\000\000\000UXQ\000\000\000\000\000\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\r\000\000\000\000\000\000\000\020\000\000\000\000\000\000\000\200+\321\000\000\000\000\000\004\000\000\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@P+\321\000\000\000\000\000H\336\321",
'\000' <repeats 12 times>,
"\200UXQ\000\000\000\000\000`\020\324\000\000\000\000\000\005\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000\342\230\323\000\000\000\000\000\001\000\000\000\000\000\000\000\004\000\000\000\000\000\000\000\340\230\323",
'\000' <repeats 13 times>,
"\005\000\000\000\000\000\000\000\347\327R\000\000\000\000\000\370s\324\000\000\000\000\000UXQ",
'\000' <repeats 12 times>,
"\200X\230R\000\000\000\000\000\060l\325\000\000\000\000\000\005\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000\302\232\323\000\000\000\000\000\036\000\000\000\000\000\000\000!\000\000\000\000\000\000\000\300\232\323",
'\000' <repeats 13 times>,
"\005\000\000\000\000\000\000\000\347\327R\000\000\000\000\000\060l\325\000\000\000\000\000\340`\323\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\000\024\324",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\001\000\000\000\000\000\000\000\002\000\000\000\000\000\000\000\260\230\323\000\000\000\000\000\005\000\000\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\000\024\324\000\000\000\000\000\260\357\310\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\210\225\317",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\006\000\000\000\000\000\000\000\v\000\000\000\000\000\000\000@\235\323\000\000\000\000\000\004\000\000\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\210\225\317\000\000\000\000\000ȴ\317",
'\000' <repeats 12 times>,
"\200X\230R\000\000\000\000\000`\224\302\000\000\000\000\000\005\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000ʹ\317\000\000\000\000\000G\000\000\000\000\000\000\000p\201I\000\000\000\000\000\223\240\273\000\000\000\000\000UXQ",
'\000' <repeats 13 times>,
"\354\326R\000\000\000\000\000\070P\320\000\000\000\000\000\020\270\316", '\000'
<repeats 12 times>,
"\200X\230R\000\000\000\000\000\b\226\302\000\000\000\000\000\005\000\000\000\000\000\000\200\001",
'\000' <repeats 15 times>,
"\001\000\000\000\000\000\000\000\002\000\000\000\000\000\000\000p\002\275\000\000\000\000\000a\331\377\377\377\177\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@",
'\000' <repeats 16 times>, "\001", '\000' <repeats 15 times>,
"a\331\377\377\377\177\000\000y\240\273\000\000\000\000\000B\377\271\000\000\000\000\000@\245\305\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\000\006\273",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\020\000\000\000\000\000\000\000`\273\377\377\377\177\000\000`\370\263\000\000\000\000\000\200\231\307\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\000\006\273",
'\000' <repeats 12 times>,
"\200\a\000\000\000\000\000\000\000d\227R\000\000\000\000\000\215\240\273\000\000\000\000\000UXQ\000\000\000\000\000\n\000\000\000\000\000\000\000R\221\271\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@P\221\271",
'\000' <repeats 12 times>,
"\200\000\000\000\000\000\000\000\000\277\226R\000\000\000\000\000`\000\000\000\000\000\000\000J\332\377\377\377\177\000\000\000\000\000\000\000\000\000\000p\350\307\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@
{\273", '\000' <repeats 12 times>,
"\200\005\000\000\000\000\000\000\000d\227R\000\000\000\000\000\250\026\374\367\377\177\000\000\026\000\000\000",
'\377' <repeats 12 times>,
"\220E\306\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@и\273",
'\000' <repeats 12 times>,
"\200\002\000\000\000\000\000\000\000d\227R\000\000\000\000\000y\216\324\000\000\000\000\000:\000\000\000\000\000\000\000x\216\324\000\000\000\000\000@D\306\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@и\273",
'\000' <repeats 12 times>,
"\200\002\000\000\000\000\000\000\000d\227R\000\000\000\000\000B\377\271\000\000\000\000\000\a\305O",
'\000' <repeats 13 times>,
"Ҹ\273\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@и\273",
'\000' <repeats 12 times>,
"\200\000\000\000\000\000\000\000\000\220\226R\000\000\000\000\000\226K\322",
'\000' <repeats 21 times>,
"\220l\277\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@p\365\272",
'\000' <repeats 12 times>,
"\200\002\000\000\000\000\000\000\000d\227R\000\000\000\000\000\024\000\000\000\000\000\000\000\070\367\263",
'\000' <repeats 13 times>,
"\020\215\305\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@0\276\313",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\001\366\263",
'\000' <repeats 13 times>,
"\004\000\000\000\000\000\000\000Ќ\305\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@0\276\313",
'\000' <repeats 12 times>,
"\200\002\000\000\000\000\000\000\000d\227R\000\000\000\000\000\377\377\377\377\377\377\377\377\b",
'\000' <repeats 15 times>,
"\060\222\305\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\020\250\313",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000Ȏ\324\000\000\000\000\000Q\243\320\000\000\000\000\000\200\315\377\377\377\177\000\000`\357\310\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\220\356\316",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\200\315\377\377\377\177\000\000
wU", '\000' <repeats 13 times>,
"\005\000\000\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\220\356\316\000\000\000\000\000p\345\303",
'\000' <repeats 12 times>,
"\200X\230R\000\000\000\000\000\026\000\000\000\000\000\000\000\006\000\000\000\000\000\000\000\026\000\000\000\000\000\000\000\"\233\304\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@
\233\304", '\000' <repeats 12 times>,
"\200\000\000\000\000\000\000\000\000\277\226R", '\000' <repeats 13
times>,
"\230\315\377\377\377\177\000\000\000\000\000\000\000\000\177\003\000\222\305\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@
\275\313", '\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000@\316\377\377\377\177\000\000u\244\355\365\377\177\000\000\000\000\000\000\000\000\000\000\300\221\305\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@
\275\313", '\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000-\000\000\000\000\000\000\000`\316\377\377\377\177\000\000\000\000\000\000\000\000\000\000\242n\274\000\000\000\000\000\000\000\000\006\000\000\000@\370\024\306",
'\000' <repeats 12 times>, "\200\000\000\000?\000\000\000@\340\345\324",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000\375\024\306\000\000\000\000\000\r\000\000\000\000\000\000\000\022\000\000\000\000\000\000\000\370\024\306",
'\000' <repeats 13 times>,
"\005\000\000\000\000\000\000\000\354\326R\000\000\000\000\000\340\345\324\000\000\000\000\000\370\036\324",
'\000' <repeats 12 times>,
"\200X\230R\000\000\000\000\000\220\037\324\000\000\000\000\000\005\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000\375\036\324\000\000\000\000\000
\000\000\000\000\000\000\000+\000\000\000\000\000\000\000\370\036\324",
'\000' <repeats 13 times>,
"\005\000\000\000\000\000\000\000\354\326R\000\000\000\000\000\220\037\324\000\000\000\000\000\020j\324",
'\000' <repeats 12 times>,
"\200X\230R\000\000\000\000\000\240o\271\000\000\000\000\000\006\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000bF\324",
'\000' <repeats 13 times>, "\001\000\000\000\000\000\000\000`F\324",
'\000' <repeats 13 times>,
"\005\000\000\000\000\000\000\000\347\327R\000\000\000\000\000\240o\271\000\000\000\000\000hD\311",
'\000' <repeats 12 times>,
"\200d\227R\000\000\000\000\000rŹ\000\000\000\177\003\020(\303\000\000\000\000\000~Q\202\000\000\000\000\000mD\311\000\000\000\000\000\a\000\000\000\000\000\000\000\017\000\000\000\000\000\000\000hD\311",
'\000' <repeats 13 times>, "\005\000\000\000\000\000\000\000\354\326R",
'\000' <repeats 13 times>, "hl\324", '\000' <repeats 12 times>,
"\200\000\000\000?\000\000\000@\360m\324", '\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000\020S\323\000\000\000\000\000\035\000\000\000\000\000\000\000
\000\000\000\000\000\000\000hl\324\000\000\000\000\000\002\000\000\000\000\000\000\000\005\000\000\000\000\000\000\000\214\330R\000\000\000\000\000\360m\324\000\000\000\000\000\350l\324",
'\000' <repeats 12 times>,
"\200X\230R\000\000\000\000\000\310\037\324\000\000\000\000\000\006\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000\200\347\312\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\300\236\323",
'\000' <repeats 12 times>,
"\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\310\037\324\000\000\000\000\000pk\324",
'\000' <repeats 12 times>,
"\200@\347\312\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\300\236\323",
'\000' <repeats 12 times>,
"\200\002\000\000\000\000\000\000\000d\227R\000\000\000\000\000@T\326",
'\000' <repeats 13 times>,
"\005\000\000\000\000\000\000\000\020{\322\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\300\236\323\000\000\000\000\000\300\343\300\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@Xx\305\000\000\000\000\000@V$\366\377\177\000\000\260\b\000\000\000\000\000\000\241\b\000\000\000\000\000\000@V$\366\377\177\000\000\300$\275\000\000\000\000\000\340\000\000\000\000\000\000\000\227\201\361\365\377\177\000\000\000\000\000\006\000\000\000@R\000\000\000\000\000\000@H\223\303\000\000\000\000\000P\301\330\000\000\000\000\000\320\b",
'\000' <repeats 14 times>, "\001", '\000' <repeats 23 times>,
"\213\000\000\000R\000\000\000_\000\000\000n\000\000\000w\000\000\000|\000\000\000@V$\366\377\177\000\000\340#\275\000\000\000\000\000\300)\331\000\000\000\000\000\340\000\000\000\000\000\000\000@V$\366\377\177\000\000\300$\275\000\000\000\000\000\340\000\000\000\000\000\000\000\060\231\361\365\377\177\000\000\006\000\000\000\000\000\000\000\260\b\000\000\000\000\000\000@V$\366\377\177\000\000\360#\275\000\000\000\000\000\001\000\000\000\000\000\000\000\031\374\377\377\377\377\377\377\364\000\000\000\000\000\000\000\300)\331\000\000\000\000\000\060\027\275\000\000\000\000\000\203,Q\000\000\000\000\000\060\027\275",
'\000' <repeats 13 times>,
"\001\000\000\000\000\000\000\000\060\027\275\000\000\000\000\000\001\000\000\000\000\000\000\000X\323\377\377\377\177\000\000'\000\000\000\377\177\000\000\002\000\000\000\000\000\000\000\321\a",
'\000' <repeats 14 times>,
"\324\000\000\000\000\000\000\000\377\377\377\377\377\377\377\377r\373\270\000\000\000\000\000|\253N\000\000\000\000\000\002\357\272\000\000\000\000\000\313\306P\000\000\000\000\000r\373\270\000\000\000\000\000\001\000\000\000\000\000\000\000\001\000\000\000\000\000\000\000\033a\271\000\000\000\000\000\363`\271\000\000\000\000\000\300\000\000\000\000\000\000\000\300\000\000\000\000\000\000\000R.Q\000\000\000\000\000P\323\377\377\377\177\000\000\300\000\000\000\000\000\000\000\060\027\275\000\000\000\000\000\003$\361\365\377\177\000\000\060\027\275\000\000\000\000\000\200`$\366\377\177\000\000\064\000\000\000\000\000\000\000\003$\361\365\377\177\000\000\220:\326\000\000\000\000\000\200`$\366\377\177\000\000\001\000\000\000\000\000\000\000\003a$\366\377\177\000\000\377\377\377\377\377\377\37
7\377\342\"\361\365\377\177\000\000\001\000\000\000\000\000\000\000\n\000\000\000\000\000\000\000\064\000\000\000\000\000\000\000\365\065\361\365\377\177\000\000\200`$\366\377\177\000\000?9\361\365
\377\177\000\000\200`$\366\377\177\000\000
\325\377\377\377\177\000\000\064\000\000\000\000\000\000\000\"\364\360\365\377\177\000\000\221\203\325\000\000\000\000\000DuD\000\000\000\000\000\200`$\366\377\177\000\000[x\360\365\377\177\000\000\221\203\325\000\000\000\000\000+wD\000\000\000\000\000Loading
/src/emacs-24.5/lisp/loaddefs.el
(source)...\000\000\000\000\301\253\302\000\000\000\000\000(\270\301\000\000\000\000\000\fwD\000\000\000\000\000P\204\325\000\000\000\000\000\030\325\377\377\377\177\000\000\370\"\256\000\000\000\000\000\030\325\377\377\377\177\000\000\003\000\000\000\000\000\000\000r\373\270\000\000\000\000\000p\325\377\377\377\177\000\000ۮT\000\000\000\000\000
\000\000\000\000\000\000\000\037\000\000\000\000\000\000"
coding = {
id = 0,
common_flags = 0,
mode = 0,
spec = {
iso_2022 = {
flags = 0,
current_invocation = {0, 0},
current_designation = {0, 0, 0, 0},
ctext_extended_segment_len = 0,
single_shifting = false,
bol = false,
embedded_utf_8 = false,
cmp_status = {
state = COMPOSING_NO,
method = COMPOSITION_RELATIVE,
old_form = false,
length = 0,
nchars = 0,
ncomps = 0,
carryover = {0 <repeats 68 times>}
}
},
ccl = 0x0,
utf_16 = {
bom = utf_detect_bom,
endian = utf_16_big_endian,
surrogate = 0
},
utf_8_bom = utf_detect_bom,
emacs_mule = {
cmp_status = {
state = COMPOSING_NO,
method = COMPOSITION_RELATIVE,
old_form = false,
length = 0,
nchars = 0,
ncomps = 0,
carryover = {0 <repeats 68 times>}
}
},
undecided = {
inhibit_nbd = 0,
inhibit_ied = 0,
prefer_utf_8 = false
}
},
max_charset_id = 0,
safe_charsets = 0x0,
src_multibyte = false,
dst_multibyte = false,
head_ascii = 0,
detected_utf8_bytes = 0,
detected_utf8_chars = 0,
eol_seen = 0,
produced = 0,
produced_char = 0,
consumed = 0,
consumed_char = 0,
errors = 0,
error_positions = 0x0,
result = CODING_RESULT_SUCCESS,
src_pos = 0,
src_pos_byte = 0,
src_chars = 0,
src_bytes = 0,
src_object = 0,
source = 0x0,
dst_pos = 0,
dst_pos_byte = 0,
dst_bytes = 0,
dst_object = 0,
destination = 0x0,
charbuf = 0x0,
charbuf_size = 0,
charbuf_used = 0,
chars_at_source = false,
raw_destination = false,
annotated = false,
carryover = '\000' <repeats 63 times>,
carryover_bytes = 0,
default_char = 0,
detector = 0x0,
decoder = 0x0,
encoder = 0x0
}
#13 0x000000000054c0bb in Ffuncall (nargs=2,
args=args@entry=0x7fffffffd5d8) at eval.c:2827
fun = 8504725
original_fun = <optimized out>
numargs = <optimized out>
val = <optimized out>
internal_args = 0x7fffffffd510
i = <optimized out>
#14 0x00000000005919a3 in exec_byte_code (bytestr=<optimized out>,
vector=12772597, maxdepth=<optimized out>, args_template=<optimized
out>, nargs=nargs@entry=0, args=args@entry=0x0) at bytecode.c:916
targets = {0x591b40 <exec_byte_code+1232>, 0x5932a8
<exec_byte_code+7224>, 0x5932b0 <exec_byte_code+7232>, 0x5932b8
<exec_byte_code+7240>, 0x5918f0 <exec_byte_code+640>, 0x5918f0
<exec_byte_code+640>, 0x591bf8 <exec_byte_code+1416>, 0x591c48
<exec_byte_code+1496>, 0x591cd0 <exec_byte_code+1632>, 0x591cc8
<exec_byte_code+1624>, 0x591b90 <exec_byte_code+1312>, 0x591cd8
<exec_byte_code+1640>, 0x591ac8 <exec_byte_code+1112>, 0x591ad0
<exec_byte_code+1120>, 0x593340 <exec_byte_code+7376>, 0x591bd0
<exec_byte_code+1376>, 0x591ce0 <exec_byte_code+1648>, 0x593120
<exec_byte_code+6832>, 0x593620 <exec_byte_code+8112>, 0x593168
<exec_byte_code+6904>, 0x591a50 <exec_byte_code+992>, 0x591a50
<exec_byte_code+992>, 0x593460 <exec_byte_code+7664>, 0x593128
<exec_byte_code+6840>, 0x593198 <exec_byte_code+6952>, 0x5931a0
<exec_byte_code+6960>, 0x5931f8 <exec_byte_code+7048>, 0x5931a8
<exec_byte_code+6968>, 0x591930 <exec_byte_code+704>, 0x591930
<exec_byte_code+704>, 0x593150 <exec_byte_code+6880>, 0x593170
<exec_byte_code+6912>, 0x5931f0 <exec_byte_code+7040>, 0x593200
<exec_byte_code+7056>, 0x593208 <exec_byte_code+7064>, 0x591ca8
<exec_byte_code+1592>, 0x591978 <exec_byte_code+776>, 0x591980
<exec_byte_code+784>, 0x5931b0 <exec_byte_code+6976>, 0x5931c8
<exec_byte_code+7000>, 0x593240 <exec_byte_code+7120>, 0x593238
<exec_byte_code+7112>, 0x593248 <exec_byte_code+7128>, 0x591b98
<exec_byte_code+1320>, 0x5919c8 <exec_byte_code+856>, 0x5919d0
<exec_byte_code+864>, 0x591cb0 <exec_byte_code+1600>, 0x593210
<exec_byte_code+7072>, 0x592c40 <exec_byte_code+5584>, 0x592ad0
<exec_byte_code+5216>, 0x593298 <exec_byte_code+7208>, 0x591b40
<exec_byte_code+1232>, 0x591b40 <exec_byte_code+1232>, 0x591b40
<exec_byte_code+1232>, 0x591b40 <exec_byte_code+1232>, 0x591b40
<exec_byte_code+1232>, 0x5921a0 <exec_byte_code+2864>, 0x592918
<exec_byte_code+4776>, 0x592960 <exec_byte_code+4848>, 0x592800
<exec_byte_code+4496>, 0x592850 <exec_byte_code+4576>, 0x5934c0
<exec_byte_code+7760>, 0x5933d8 <exec_byte_code+7528>, 0x5928a0
<exec_byte_code+4656>, 0x593478 <exec_byte_code+7688>, 0x593418
<exec_byte_code+7592>, 0x5928d8 <exec_byte_code+4712>, 0x592620
<exec_byte_code+4016>, 0x592650 <exec_byte_code+4064>, 0x592690
<exec_byte_code+4128>, 0x5926c8 <exec_byte_code+4184>, 0x592750
<exec_byte_code+4320>, 0x592780 <exec_byte_code+4368>, 0x5927c0
<exec_byte_code+4432>, 0x592238 <exec_byte_code+3016>, 0x592268
<exec_byte_code+3064>, 0x592298 <exec_byte_code+3112>, 0x5922d8
<exec_byte_code+3176>, 0x592318 <exec_byte_code+3240>, 0x592358
<exec_byte_code+3304>, 0x5923a0 <exec_byte_code+3376>, 0x5923d8
<exec_byte_code+3432>, 0x592410 <exec_byte_code+3488>, 0x592498
<exec_byte_code+3624>, 0x5924d8 <exec_byte_code+3688>, 0x592518
<exec_byte_code+3752>, 0x5925e0 <exec_byte_code+3952>, 0x592560
<exec_byte_code+3824>, 0x5925a0 <exec_byte_code+3888>, 0x5929a8
<exec_byte_code+4920>, 0x5929f0 <exec_byte_code+4992>, 0x592a28
<exec_byte_code+5048>, 0x592a60 <exec_byte_code+5104>, 0x593b80
<exec_byte_code+9488>, 0x593bb8 <exec_byte_code+9544>, 0x593bf0
<exec_byte_code+9600>, 0x5939e0 <exec_byte_code+9072>, 0x591a18
<exec_byte_code+936>, 0x593a20 <exec_byte_code+9136>, 0x593a50
<exec_byte_code+9184>, 0x593ad0 <exec_byte_code+9312>, 0x593b10
<exec_byte_code+9376>, 0x593b50 <exec_byte_code+9440>, 0x593660
<exec_byte_code+8176>, 0x593690 <exec_byte_code+8224>, 0x5936c0
<exec_byte_code+8272>, 0x5936f8 <exec_byte_code+8328>, 0x591b40
<exec_byte_code+1232>, 0x593730 <exec_byte_code+8384>, 0x593760
<exec_byte_code+8432>, 0x593790 <exec_byte_code+8480>, 0x5937c0
<exec_byte_code+8528>, 0x5937f0 <exec_byte_code+8576>, 0x593820
<exec_byte_code+8624>, 0x591a18 <exec_byte_code+936>, 0x591b40
<exec_byte_code+1232>, 0x593850 <exec_byte_code+8672>, 0x593890
<exec_byte_code+8736>, 0x5938c0 <exec_byte_code+8784>, 0x5938f0
<exec_byte_code+8832>, 0x593930 <exec_byte_code+8896>, 0x593970
<exec_byte_code+8960>, 0x592f30 <exec_byte_code+6336>, 0x593008
<exec_byte_code+6552>, 0x594090 <exec_byte_code+10784>, 0x5940d0
<exec_byte_code+10848>, 0x593048 <exec_byte_code+6616>, 0x593078
<exec_byte_code+6664>, 0x591b40 <exec_byte_code+1232>, 0x5935d0
<exec_byte_code+8032>, 0x591ce8 <exec_byte_code+1656>, 0x593358
<exec_byte_code+7400>, 0x591d80 <exec_byte_code+1808>, 0x591e30
<exec_byte_code+1984>, 0x591ea8 <exec_byte_code+2104>, 0x593250
<exec_byte_code+7136>, 0x5935a8 <exec_byte_code+7992>, 0x593628
<exec_byte_code+8120>, 0x593508 <exec_byte_code+7832>, 0x593540
<exec_byte_code+7888>, 0x592a98 <exec_byte_code+5160>, 0x592c00
<exec_byte_code+5520>, 0x592c70 <exec_byte_code+5632>, 0x592cc8
<exec_byte_code+5720>, 0x592d10 <exec_byte_code+5792>, 0x592140
<exec_byte_code+2768>, 0x591ba0 <exec_byte_code+1328>, 0x5930a8
<exec_byte_code+6712>, 0x5930f0 <exec_byte_code+6784>, 0x593e48
<exec_byte_code+10200>, 0x593e78 <exec_byte_code+10248>, 0x593ea8
<exec_byte_code+10296>, 0x593ed8 <exec_byte_code+10344>, 0x593f18
<exec_byte_code+10408>, 0x593f58 <exec_byte_code+10472>, 0x593f98
<exec_byte_code+10536>, 0x593fd8 <exec_byte_code+10600>, 0x593c60
<exec_byte_code+9712>, 0x593ca0 <exec_byte_code+9776>, 0x593ce0
<exec_byte_code+9840>, 0x593d10 <exec_byte_code+9888>, 0x593d50
<exec_byte_code+9952>, 0x593d90 <exec_byte_code+10016>, 0x593dd0
<exec_byte_code+10080>, 0x593e10 <exec_byte_code+10144>, 0x593c28
<exec_byte_code+9656>, 0x5939a0 <exec_byte_code+9008>, 0x5932c0
<exec_byte_code+7248>, 0x593308 <exec_byte_code+7320>, 0x591b40
<exec_byte_code+1232>, 0x591f50 <exec_byte_code+2272>, 0x591fd0
<exec_byte_code+2400>, 0x592038 <exec_byte_code+2504>, 0x5920d0
<exec_byte_code+2656>, 0x592e98 <exec_byte_code+6184>, 0x592700
<exec_byte_code+4240>, 0x592448 <exec_byte_code+3544>, 0x593a80
<exec_byte_code+9232>, 0x592d60 <exec_byte_code+5872>, 0x592db0
<exec_byte_code+5952>, 0x591b40 <exec_byte_code+1232>, 0x591b40
<exec_byte_code+1232>, 0x592e10 <exec_byte_code+6048>, 0x591b40
<exec_byte_code+1232>, 0x591b40 <exec_byte_code+1232>, 0x591b40
<exec_byte_code+1232>, 0x591b40 <exec_byte_code+1232>, 0x591b40
<exec_byte_code+1232>, 0x591b40 <exec_byte_code+1232>, 0x591b40
<exec_byte_code+1232>, 0x591b40 <exec_byte_code+1232>, 0x591b40
<exec_byte_code+1232>, 0x592e60 <exec_byte_code+6128> <repeats 64 times>}
count = 28
op = <optimized out>
vectorp = 0xc2e4f8
stack = {
pc = 0xc1b79b "\210)\016)\203w",
byte_string = 12768529,
byte_string_start = 0xc1b738 "\306\b!\204\022",
next = 0x0
}
top = 0x7fffffffd5d8
result = <optimized out>
type = <optimized out>
#15 0x000000000054b832 in funcall_lambda (fun=fun@entry=12772957,
nargs=nargs@entry=4, arg_vector=arg_vector@entry=0x7fffffffd7c8) at
eval.c:3044
val = <optimized out>
syms_left = 12122994
lexenv = 12122994
i = <optimized out>
optional = <optimized out>
rest = <optimized out>
#16 0x000000000054bdc8 in Ffuncall (nargs=nargs@entry=5,
args=args@entry=0x7fffffffd7c0) at eval.c:2872
fun = 12772957
original_fun = 12592146
numargs = 4
val = <optimized out>
internal_args = <optimized out>
i = <optimized out>
#17 0x000000000054c299 in call4 (fn=<optimized out>, arg1=<optimized
out>, arg2=<optimized out>, arg3=<optimized out>, arg4=<optimized out>)
at eval.c:2659
ret_ungc_val = 140737488274800
gcpro1 = {
next = <optimized out>,
var = <optimized out>,
nvars = 5
}
args = {12592146, 13993041, 13993041, 12122994, 12122994}
#18 0x000000000057e0c7 in Fload (file=1, noerror=140737488276144,
nomessage=140737488275040, nosuffix=13993041, must_suffix=5) at lread.c:1305
val = 140737488274800
stream = 0x5
fd = 5
found = 13993041
efound = 7
hist_file_name = 13993041
handler = 140737488274800
safe_p = 114
#19 0x000000000054aea5 in eval_sub (form=form@entry=12096582) at eval.c:2195
numargs = <optimized out>
args_left = 12122994
i = <optimized out>
maxargs = 5
argvals = {13994081, 12122994, 12122994, 12122994, 12122994,
17, 4268070197446523707, 4268070197446523707}
fun = 11410973
val = <optimized out>
original_args = 12096390
gcpro3 = {
next = <optimized out>,
var = 0x7fffffffdb50,
nvars = <optimized out>
}
#20 0x00000000005500b9 in internal_lisp_condition_case (var=<optimized
out>, bodyform=12096582, handlers=<optimized out>) at eval.c:1317
val = <optimized out>
c = <optimized out>
oldhandlerlist = 0xbd06b0
clausenb = <optimized out>
#21 0x000000000054af52 in eval_sub (form=form@entry=12096614) at eval.c:2131
numargs = <optimized out>
args_left = 12096598
i = <optimized out>
maxargs = <optimized out>
argvals = {14206241, 12122994, 12241554, 5731783, 12122994,
12241554, 0, 5736763}
fun = 11402901
val = <optimized out>
original_args = 12096598
gcpro3 = <optimized out>
#22 0x000000000057d53e in readevalloop (readcharfun=12241554,
stream=0xbd07e0, sourcename=12386241, printflag=false,
unibyte=<optimized out>, readfun=12122994, start=12122994, end=12122994)
at lread.c:1934
c = <optimized out>
val = 12096614
b = 0x0
continue_reading_p = true
lex_bound = <optimized out>
whole_buffer = false
first_sexp = <optimized out>
macroexpand = 12122994
#23 0x000000000057e462 in Fload (file=1, noerror=140737488276144,
nomessage=140737488275040, nosuffix=12386241, must_suffix=12388320) at
lread.c:1363
stream = 0xbd07e0
fd = 12388320
found = 12386177
efound = 7
hist_file_name = 12386241
handler = 140737488274800
safe_p = true
#24 0x000000000054aea5 in eval_sub (form=form@entry=12378326) at eval.c:2195
numargs = <optimized out>
args_left = 12122994
i = <optimized out>
maxargs = 5
argvals = {12385985, 12122994, 12122994, 12122994, 12122994, 0,
0, 223338299411}
fun = 11410973
val = <optimized out>
original_args = 12378310
gcpro3 = {
next = <optimized out>,
var = 0x7fffffffe110,
nvars = <optimized out>
}
#25 0x000000000054e10f in Feval (form=12378326, lexical=<optimized out>)
at eval.c:1996
No locals.
#26 0x0000000000549ec7 in internal_condition_case
(bfun=bfun@entry=0x4b7830 <top_level_2>, handlers=<optimized out>,
hfun=hfun@entry=0x4bb760 <cmd_error>) at eval.c:1348
val = <optimized out>
c = <optimized out>
#27 0x00000000004b7816 in top_level_1 (ignore=ignore@entry=12122994) at
keyboard.c:1195
No locals.
#28 0x0000000000549dab in internal_catch (tag=12170210,
func=func@entry=0x4b77b0 <top_level_1>, arg=12122994) at eval.c:1112
val = <optimized out>
c = <optimized out>
#29 0x00000000004bd1af in command_loop () at keyboard.c:1156
No locals.
#30 recursive_edit_1 () at keyboard.c:778
val = 140737488348168
#31 0x00000000004bd350 in Frecursive_edit () at keyboard.c:849
buffer = <optimized out>
#32 0x0000000000407c76 in main (argc=12385985, argv=0x7fffffffe408) at
emacs.c:1642
dummy = 140737353917640
stack_bottom_variable = -11 '\365'
skip_args = 3
rlim = {
rlim_cur = 8720000,
rlim_max = 18446744073709551615
}
junk = 0x0
dname_arg = 0x0
ch_to_dir = 0x0
gdb /mnt/new/src/emacs-24.5 quit
On 13.04.2015 00:58, Paul Eggert wrote:
> I don't observe this problem on Fedora 21 x86-64, when configuring
> similar to the way you did:
>
> ./configure CFLAGS='-m32' --with-kerberos5 --with-wide-int --without-x
>
> Could you give more details about your platform? In particular, I'm
> puzzled about the "CFLAGS='-pipe -O3 -fno-fat-lto-objects -flto
> -mssse3'" and the "LDFLAGS='-Wl,-O1 -Wl,-z,relro -Wl,-S'" settings, if
> all you ran was "./configure --with-kerberos5 --with-wide-int
> --without-x" and "make". As far as I can see, the Emacs 24.5 source
> code does not specify -pipe, or -O3, or -mssse3, or -flto and
> -ffat-lto-objects (unless you configure with
> --enable-link-time-optimization), or -Wl,-z,relro, etc. If your build
> system is specifying those options, I suggest bypassing it and building
> Emacs without the extra options; then you can turn the options on one at
> a time and see which one is causing your problem.
>
>> The problem is the variable RUN_TEMACS in src/Makefile(.in), which is
>> "./temacs", but shall be the path to temacs, relative to the build-root.
>
> I don't see why this is the problem. Your build is trying to run
> ./temacs and ./temacs is dumping core with an illegal instruction. This
> sounds like a bug, regardless of how temacs was invoked.
>
> Also, can you build the Emacs master branch? Please try:
>
> git clone git://git.savannah.gnu.org/emacs.git
> cd emacs
> ./autogen.sh
> ./configure
> make
>
> If this works for you, then your bug is probably fixed already in Emacs 25.
^ permalink raw reply [flat|nested] 5+ messages in thread
* bug#20297: compiling emacs 24.5 (src/Makefile and RUN_TEMACS)
2015-04-13 11:05 ` Дилян Палаузов
@ 2015-04-13 11:42 ` Дилян Палаузов
2015-04-13 14:06 ` Paul Eggert
0 siblings, 1 reply; 5+ messages in thread
From: Дилян Палаузов @ 2015-04-13 11:42 UTC (permalink / raw)
To: Paul Eggert; +Cc: 20297
Hello,
the problem was in the -mssse3 C-flag (which wasn't supported on the
processor, where I tried to compile).
Am sorry for disturbing you.
Greetings
Дилян
On 13.04.2015 13:05, Дилян Палаузов wrote:
> Hello,
>
> you are right that the change in the Makefile, which I mentioned earlier
> does not help. temacs crashes with following backtrace. I have gdb 7.9
> and gcc 4.9.2 . CFLAGS = -pipe -O3 -g -mssse3, LDFLAGS=-Wl,-O1
> -Wl,-z,relro .These come from /usr/local/etc/config.site and are always
> added when I run ./configure .
>
> root@ # gdb src/temacs /tmp/core.temacs.32418
>
> Reading symbols from src/temacs...done.
> [New LWP 32418]
>
> warning: Could not load shared library symbols for linux-vdso.so.1.
> Do you need "set solib-search-path" or "set sysroot"?
> [Thread debugging using libthread_db enabled]
> Using host libthread_db library "/lib64/libthread_db.so.1".
> Core was generated by `./temacs --batch --load loadup bootstrap'.
> Program terminated with signal SIGILL, Illegal instruction.
> #0 0x000000000050cacc in boyer_moore (n=n@entry=1,
> base_pat=base_pat@entry=0x7ffffffecab0 "coding:", len_byte=7,
> trt=trt@entry=12131613, inverse_trt=inverse_trt@entry=12136069,
> pos_byte=pos_byte@entry=1, lim_byte=1025, char_base=0) at search.c:1805
> 1805 simple_translate[i] = i;
> gobject.pyc: gdb was not built with custom backtrace support, disabling.
> gdb /mnt/new/src/emacs-24.5 bt f
> #0 0x000000000050cacc in boyer_moore (n=n@entry=1,
> base_pat=base_pat@entry=0x7ffffffecab0 "coding:", len_byte=7,
> trt=trt@entry=12131613, inverse_trt=inverse_trt@entry=12136069,
> pos_byte=pos_byte@entry=1, lim_byte=1025, char_base=0) at search.c:1805
> direction = <optimized out>
> dirlen = 7
> limit = <optimized out>
> stride_for_teases = 0
> BM_tab = {7 <repeats 256 times>}
> cursor = <optimized out>
> p_limit = <optimized out>
> i = <optimized out>
> j = <optimized out>
> pat = <optimized out>
> pat_end = 0x7ffffffecab7 ""
> multibyte = false
> simple_translate = '\000' <repeats 48 times>,
> "\320\000\000\000\000\000\000\000@V$\366\377\177\000\000\020\004\000\000\000\000\000\000\000\004\000\000\000\000\000\000
> l\302\000\000\000\000\000\070\361\263\000\000\000\000\000\360\357\263\000\000\000\000\000\227\201\361\365\377\177\000\000\000\000\000\000\000\000\000\000@\000\000\000\000\000\000\000\320\r\323\000\000\000\000\000`\000\000\000\000\000\000\000\060\004",
> '\000' <repeats 14 times>, "\002", '\000' <repeats 23 times>,
> "A\000\000\000@\000\000\000]\000\000\000n\000\000\000w\000\000\000|\000\000\000\340\025\315\000\000\000\000\000@V$\366\377\177\000\000\000\000\000\000\001\000\000\000\020\262\277\000\000\000\000\000\260l\302\000\000\000\000\000@\370\263\000\000\000\000"
>
> translate_prev_byte1 = 0
> translate_prev_byte2 = 0
> translate_prev_byte3 = 0
> #1 0x000000000050f8e2 in search_buffer (string=string@entry=12554161,
> pos=1, pos_byte=1, lim=lim@entry=1025, lim_byte=lim_byte@entry=1025,
> n=1, trt=12131613, inverse_trt=12136069, posix=false, RE=0) at
> search.c:1507
> raw_pattern = <optimized out>
> pat = 0x7ffffffecab0 "coding:"
> patbuf = 0x7ffffffecab0 "coding:"
> multibyte = <optimized out>
> raw_pattern_size = 7
> raw_pattern_size_byte = <optimized out>
> base_pat = <optimized out>
> char_base = <optimized out>
> boyer_moore_ok = <optimized out>
> len = -1
> len_byte = <optimized out>
> #2 0x000000000050fae7 in search_command (RE=0, posix=false,
> direction=1, count=<optimized out>, noerror=12123042, bound=<optimized
> out>, string=12554161) at search.c:1067
> np = <optimized out>
> lim = 1025
> lim_byte = 1025
> n = <optimized out>
> #3 Fsearch_forward (string=12554161, bound=<optimized out>,
> noerror=12123042, count=<optimized out>) at search.c:2207
> No locals.
> #4 0x000000000054c0d8 in Ffuncall (nargs=4,
> args=args@entry=0x7ffffffeccc8) at eval.c:2822
> fun = 8508901
> original_fun = <optimized out>
> numargs = <optimized out>
> val = <optimized out>
> internal_args = 0x7ffffffecc10
> i = <optimized out>
> #5 0x00000000005919a3 in exec_byte_code (bytestr=<optimized out>,
> vector=12678861, maxdepth=<optimized out>, args_template=<optimized
> out>, nargs=nargs@entry=0, args=args@entry=0x0) at bytecode.c:916
> targets = {0x591b40 <exec_byte_code+1232>, 0x5932a8
> <exec_byte_code+7224>, 0x5932b0 <exec_byte_code+7232>, 0x5932b8
> <exec_byte_code+7240>, 0x5918f0 <exec_byte_code+640>, 0x5918f0
> <exec_byte_code+640>, 0x591bf8 <exec_byte_code+1416>, 0x591c48
> <exec_byte_code+1496>, 0x591cd0 <exec_byte_code+1632>, 0x591cc8
> <exec_byte_code+1624>, 0x591b90 <exec_byte_code+1312>, 0x591cd8
> <exec_byte_code+1640>, 0x591ac8 <exec_byte_code+1112>, 0x591ad0
> <exec_byte_code+1120>, 0x593340 <exec_byte_code+7376>, 0x591bd0
> <exec_byte_code+1376>, 0x591ce0 <exec_byte_code+1648>, 0x593120
> <exec_byte_code+6832>, 0x593620 <exec_byte_code+8112>, 0x593168
> <exec_byte_code+6904>, 0x591a50 <exec_byte_code+992>, 0x591a50
> <exec_byte_code+992>, 0x593460 <exec_byte_code+7664>, 0x593128
> <exec_byte_code+6840>, 0x593198 <exec_byte_code+6952>, 0x5931a0
> <exec_byte_code+6960>, 0x5931f8 <exec_byte_code+7048>, 0x5931a8
> <exec_byte_code+6968>, 0x591930 <exec_byte_code+704>, 0x591930
> <exec_byte_code+704>, 0x593150 <exec_byte_code+6880>, 0x593170
> <exec_byte_code+6912>, 0x5931f0 <exec_byte_code+7040>, 0x593200
> <exec_byte_code+7056>, 0x593208 <exec_byte_code+7064>, 0x591ca8
> <exec_byte_code+1592>, 0x591978 <exec_byte_code+776>, 0x591980
> <exec_byte_code+784>, 0x5931b0 <exec_byte_code+6976>, 0x5931c8
> <exec_byte_code+7000>, 0x593240 <exec_byte_code+7120>, 0x593238
> <exec_byte_code+7112>, 0x593248 <exec_byte_code+7128>, 0x591b98
> <exec_byte_code+1320>, 0x5919c8 <exec_byte_code+856>, 0x5919d0
> <exec_byte_code+864>, 0x591cb0 <exec_byte_code+1600>, 0x593210
> <exec_byte_code+7072>, 0x592c40 <exec_byte_code+5584>, 0x592ad0
> <exec_byte_code+5216>, 0x593298 <exec_byte_code+7208>, 0x591b40
> <exec_byte_code+1232>, 0x591b40 <exec_byte_code+1232>, 0x591b40
> <exec_byte_code+1232>, 0x591b40 <exec_byte_code+1232>, 0x591b40
> <exec_byte_code+1232>, 0x5921a0 <exec_byte_code+2864>, 0x592918
> <exec_byte_code+4776>, 0x592960 <exec_byte_code+4848>, 0x592800
> <exec_byte_code+4496>, 0x592850 <exec_byte_code+4576>, 0x5934c0
> <exec_byte_code+7760>, 0x5933d8 <exec_byte_code+7528>, 0x5928a0
> <exec_byte_code+4656>, 0x593478 <exec_byte_code+7688>, 0x593418
> <exec_byte_code+7592>, 0x5928d8 <exec_byte_code+4712>, 0x592620
> <exec_byte_code+4016>, 0x592650 <exec_byte_code+4064>, 0x592690
> <exec_byte_code+4128>, 0x5926c8 <exec_byte_code+4184>, 0x592750
> <exec_byte_code+4320>, 0x592780 <exec_byte_code+4368>, 0x5927c0
> <exec_byte_code+4432>, 0x592238 <exec_byte_code+3016>, 0x592268
> <exec_byte_code+3064>, 0x592298 <exec_byte_code+3112>, 0x5922d8
> <exec_byte_code+3176>, 0x592318 <exec_byte_code+3240>, 0x592358
> <exec_byte_code+3304>, 0x5923a0 <exec_byte_code+3376>, 0x5923d8
> <exec_byte_code+3432>, 0x592410 <exec_byte_code+3488>, 0x592498
> <exec_byte_code+3624>, 0x5924d8 <exec_byte_code+3688>, 0x592518
> <exec_byte_code+3752>, 0x5925e0 <exec_byte_code+3952>, 0x592560
> <exec_byte_code+3824>, 0x5925a0 <exec_byte_code+3888>, 0x5929a8
> <exec_byte_code+4920>, 0x5929f0 <exec_byte_code+4992>, 0x592a28
> <exec_byte_code+5048>, 0x592a60 <exec_byte_code+5104>, 0x593b80
> <exec_byte_code+9488>, 0x593bb8 <exec_byte_code+9544>, 0x593bf0
> <exec_byte_code+9600>, 0x5939e0 <exec_byte_code+9072>, 0x591a18
> <exec_byte_code+936>, 0x593a20 <exec_byte_code+9136>, 0x593a50
> <exec_byte_code+9184>, 0x593ad0 <exec_byte_code+9312>, 0x593b10
> <exec_byte_code+9376>, 0x593b50 <exec_byte_code+9440>, 0x593660
> <exec_byte_code+8176>, 0x593690 <exec_byte_code+8224>, 0x5936c0
> <exec_byte_code+8272>, 0x5936f8 <exec_byte_code+8328>, 0x591b40
> <exec_byte_code+1232>, 0x593730 <exec_byte_code+8384>, 0x593760
> <exec_byte_code+8432>, 0x593790 <exec_byte_code+8480>, 0x5937c0
> <exec_byte_code+8528>, 0x5937f0 <exec_byte_code+8576>, 0x593820
> <exec_byte_code+8624>, 0x591a18 <exec_byte_code+936>, 0x591b40
> <exec_byte_code+1232>, 0x593850 <exec_byte_code+8672>, 0x593890
> <exec_byte_code+8736>, 0x5938c0 <exec_byte_code+8784>, 0x5938f0
> <exec_byte_code+8832>, 0x593930 <exec_byte_code+8896>, 0x593970
> <exec_byte_code+8960>, 0x592f30 <exec_byte_code+6336>, 0x593008
> <exec_byte_code+6552>, 0x594090 <exec_byte_code+10784>, 0x5940d0
> <exec_byte_code+10848>, 0x593048 <exec_byte_code+6616>, 0x593078
> <exec_byte_code+6664>, 0x591b40 <exec_byte_code+1232>, 0x5935d0
> <exec_byte_code+8032>, 0x591ce8 <exec_byte_code+1656>, 0x593358
> <exec_byte_code+7400>, 0x591d80 <exec_byte_code+1808>, 0x591e30
> <exec_byte_code+1984>, 0x591ea8 <exec_byte_code+2104>, 0x593250
> <exec_byte_code+7136>, 0x5935a8 <exec_byte_code+7992>, 0x593628
> <exec_byte_code+8120>, 0x593508 <exec_byte_code+7832>, 0x593540
> <exec_byte_code+7888>, 0x592a98 <exec_byte_code+5160>, 0x592c00
> <exec_byte_code+5520>, 0x592c70 <exec_byte_code+5632>, 0x592cc8
> <exec_byte_code+5720>, 0x592d10 <exec_byte_code+5792>, 0x592140
> <exec_byte_code+2768>, 0x591ba0 <exec_byte_code+1328>, 0x5930a8
> <exec_byte_code+6712>, 0x5930f0 <exec_byte_code+6784>, 0x593e48
> <exec_byte_code+10200>, 0x593e78 <exec_byte_code+10248>, 0x593ea8
> <exec_byte_code+10296>, 0x593ed8 <exec_byte_code+10344>, 0x593f18
> <exec_byte_code+10408>, 0x593f58 <exec_byte_code+10472>, 0x593f98
> <exec_byte_code+10536>, 0x593fd8 <exec_byte_code+10600>, 0x593c60
> <exec_byte_code+9712>, 0x593ca0 <exec_byte_code+9776>, 0x593ce0
> <exec_byte_code+9840>, 0x593d10 <exec_byte_code+9888>, 0x593d50
> <exec_byte_code+9952>, 0x593d90 <exec_byte_code+10016>, 0x593dd0
> <exec_byte_code+10080>, 0x593e10 <exec_byte_code+10144>, 0x593c28
> <exec_byte_code+9656>, 0x5939a0 <exec_byte_code+9008>, 0x5932c0
> <exec_byte_code+7248>, 0x593308 <exec_byte_code+7320>, 0x591b40
> <exec_byte_code+1232>, 0x591f50 <exec_byte_code+2272>, 0x591fd0
> <exec_byte_code+2400>, 0x592038 <exec_byte_code+2504>, 0x5920d0
> <exec_byte_code+2656>, 0x592e98 <exec_byte_code+6184>, 0x592700
> <exec_byte_code+4240>, 0x592448 <exec_byte_code+3544>, 0x593a80
> <exec_byte_code+9232>, 0x592d60 <exec_byte_code+5872>, 0x592db0
> <exec_byte_code+5952>, 0x591b40 <exec_byte_code+1232>, 0x591b40
> <exec_byte_code+1232>, 0x592e10 <exec_byte_code+6048>, 0x591b40
> <exec_byte_code+1232>, 0x591b40 <exec_byte_code+1232>, 0x591b40
> <exec_byte_code+1232>, 0x591b40 <exec_byte_code+1232>, 0x591b40
> <exec_byte_code+1232>, 0x591b40 <exec_byte_code+1232>, 0x591b40
> <exec_byte_code+1232>, 0x591b40 <exec_byte_code+1232>, 0x591b40
> <exec_byte_code+1232>, 0x592e60 <exec_byte_code+6128> <repeats 64 times>}
> count = 46
> op = <optimized out>
> vectorp = 0xc176d0
> stack = {
> pc = 0xc27031 "\206Y",
> byte_string = 12554865,
> byte_string_start = 0xc26fe8 "\306\b!\211\031\205\v",
> next = 0x7ffffffecf40
> }
> top = 0x7ffffffeccc8
> result = <optimized out>
> type = <optimized out>
> #6 0x000000000054b832 in funcall_lambda (fun=fun@entry=12679437,
> nargs=nargs@entry=2, arg_vector=arg_vector@entry=0x7ffffffecec0) at
> eval.c:3044
> val = <optimized out>
> syms_left = 12122994
> lexenv = 12122994
> i = <optimized out>
> optional = <optimized out>
> rest = <optimized out>
> #7 0x000000000054bdc8 in Ffuncall (nargs=3,
> args=args@entry=0x7ffffffeceb8) at eval.c:2872
> fun = 12679437
> original_fun = 12813634
> numargs = 2
> val = <optimized out>
> internal_args = <optimized out>
> i = <optimized out>
> #8 0x00000000005919a3 in exec_byte_code (bytestr=<optimized out>,
> vector=12679485, maxdepth=<optimized out>, args_template=<optimized
> out>, nargs=nargs@entry=0, args=args@entry=0x0) at bytecode.c:916
> targets = {0x591b40 <exec_byte_code+1232>, 0x5932a8
> <exec_byte_code+7224>, 0x5932b0 <exec_byte_code+7232>, 0x5932b8
> <exec_byte_code+7240>, 0x5918f0 <exec_byte_code+640>, 0x5918f0
> <exec_byte_code+640>, 0x591bf8 <exec_byte_code+1416>, 0x591c48
> <exec_byte_code+1496>, 0x591cd0 <exec_byte_code+1632>, 0x591cc8
> <exec_byte_code+1624>, 0x591b90 <exec_byte_code+1312>, 0x591cd8
> <exec_byte_code+1640>, 0x591ac8 <exec_byte_code+1112>, 0x591ad0
> <exec_byte_code+1120>, 0x593340 <exec_byte_code+7376>, 0x591bd0
> <exec_byte_code+1376>, 0x591ce0 <exec_byte_code+1648>, 0x593120
> <exec_byte_code+6832>, 0x593620 <exec_byte_code+8112>, 0x593168
> <exec_byte_code+6904>, 0x591a50 <exec_byte_code+992>, 0x591a50
> <exec_byte_code+992>, 0x593460 <exec_byte_code+7664>, 0x593128
> <exec_byte_code+6840>, 0x593198 <exec_byte_code+6952>, 0x5931a0
> <exec_byte_code+6960>, 0x5931f8 <exec_byte_code+7048>, 0x5931a8
> <exec_byte_code+6968>, 0x591930 <exec_byte_code+704>, 0x591930
> <exec_byte_code+704>, 0x593150 <exec_byte_code+6880>, 0x593170
> <exec_byte_code+6912>, 0x5931f0 <exec_byte_code+7040>, 0x593200
> <exec_byte_code+7056>, 0x593208 <exec_byte_code+7064>, 0x591ca8
> <exec_byte_code+1592>, 0x591978 <exec_byte_code+776>, 0x591980
> <exec_byte_code+784>, 0x5931b0 <exec_byte_code+6976>, 0x5931c8
> <exec_byte_code+7000>, 0x593240 <exec_byte_code+7120>, 0x593238
> <exec_byte_code+7112>, 0x593248 <exec_byte_code+7128>, 0x591b98
> <exec_byte_code+1320>, 0x5919c8 <exec_byte_code+856>, 0x5919d0
> <exec_byte_code+864>, 0x591cb0 <exec_byte_code+1600>, 0x593210
> <exec_byte_code+7072>, 0x592c40 <exec_byte_code+5584>, 0x592ad0
> <exec_byte_code+5216>, 0x593298 <exec_byte_code+7208>, 0x591b40
> <exec_byte_code+1232>, 0x591b40 <exec_byte_code+1232>, 0x591b40
> <exec_byte_code+1232>, 0x591b40 <exec_byte_code+1232>, 0x591b40
> <exec_byte_code+1232>, 0x5921a0 <exec_byte_code+2864>, 0x592918
> <exec_byte_code+4776>, 0x592960 <exec_byte_code+4848>, 0x592800
> <exec_byte_code+4496>, 0x592850 <exec_byte_code+4576>, 0x5934c0
> <exec_byte_code+7760>, 0x5933d8 <exec_byte_code+7528>, 0x5928a0
> <exec_byte_code+4656>, 0x593478 <exec_byte_code+7688>, 0x593418
> <exec_byte_code+7592>, 0x5928d8 <exec_byte_code+4712>, 0x592620
> <exec_byte_code+4016>, 0x592650 <exec_byte_code+4064>, 0x592690
> <exec_byte_code+4128>, 0x5926c8 <exec_byte_code+4184>, 0x592750
> <exec_byte_code+4320>, 0x592780 <exec_byte_code+4368>, 0x5927c0
> <exec_byte_code+4432>, 0x592238 <exec_byte_code+3016>, 0x592268
> <exec_byte_code+3064>, 0x592298 <exec_byte_code+3112>, 0x5922d8
> <exec_byte_code+3176>, 0x592318 <exec_byte_code+3240>, 0x592358
> <exec_byte_code+3304>, 0x5923a0 <exec_byte_code+3376>, 0x5923d8
> <exec_byte_code+3432>, 0x592410 <exec_byte_code+3488>, 0x592498
> <exec_byte_code+3624>, 0x5924d8 <exec_byte_code+3688>, 0x592518
> <exec_byte_code+3752>, 0x5925e0 <exec_byte_code+3952>, 0x592560
> <exec_byte_code+3824>, 0x5925a0 <exec_byte_code+3888>, 0x5929a8
> <exec_byte_code+4920>, 0x5929f0 <exec_byte_code+4992>, 0x592a28
> <exec_byte_code+5048>, 0x592a60 <exec_byte_code+5104>, 0x593b80
> <exec_byte_code+9488>, 0x593bb8 <exec_byte_code+9544>, 0x593bf0
> <exec_byte_code+9600>, 0x5939e0 <exec_byte_code+9072>, 0x591a18
> <exec_byte_code+936>, 0x593a20 <exec_byte_code+9136>, 0x593a50
> <exec_byte_code+9184>, 0x593ad0 <exec_byte_code+9312>, 0x593b10
> <exec_byte_code+9376>, 0x593b50 <exec_byte_code+9440>, 0x593660
> <exec_byte_code+8176>, 0x593690 <exec_byte_code+8224>, 0x5936c0
> <exec_byte_code+8272>, 0x5936f8 <exec_byte_code+8328>, 0x591b40
> <exec_byte_code+1232>, 0x593730 <exec_byte_code+8384>, 0x593760
> <exec_byte_code+8432>, 0x593790 <exec_byte_code+8480>, 0x5937c0
> <exec_byte_code+8528>, 0x5937f0 <exec_byte_code+8576>, 0x593820
> <exec_byte_code+8624>, 0x591a18 <exec_byte_code+936>, 0x591b40
> <exec_byte_code+1232>, 0x593850 <exec_byte_code+8672>, 0x593890
> <exec_byte_code+8736>, 0x5938c0 <exec_byte_code+8784>, 0x5938f0
> <exec_byte_code+8832>, 0x593930 <exec_byte_code+8896>, 0x593970
> <exec_byte_code+8960>, 0x592f30 <exec_byte_code+6336>, 0x593008
> <exec_byte_code+6552>, 0x594090 <exec_byte_code+10784>, 0x5940d0
> <exec_byte_code+10848>, 0x593048 <exec_byte_code+6616>, 0x593078
> <exec_byte_code+6664>, 0x591b40 <exec_byte_code+1232>, 0x5935d0
> <exec_byte_code+8032>, 0x591ce8 <exec_byte_code+1656>, 0x593358
> <exec_byte_code+7400>, 0x591d80 <exec_byte_code+1808>, 0x591e30
> <exec_byte_code+1984>, 0x591ea8 <exec_byte_code+2104>, 0x593250
> <exec_byte_code+7136>, 0x5935a8 <exec_byte_code+7992>, 0x593628
> <exec_byte_code+8120>, 0x593508 <exec_byte_code+7832>, 0x593540
> <exec_byte_code+7888>, 0x592a98 <exec_byte_code+5160>, 0x592c00
> <exec_byte_code+5520>, 0x592c70 <exec_byte_code+5632>, 0x592cc8
> <exec_byte_code+5720>, 0x592d10 <exec_byte_code+5792>, 0x592140
> <exec_byte_code+2768>, 0x591ba0 <exec_byte_code+1328>, 0x5930a8
> <exec_byte_code+6712>, 0x5930f0 <exec_byte_code+6784>, 0x593e48
> <exec_byte_code+10200>, 0x593e78 <exec_byte_code+10248>, 0x593ea8
> <exec_byte_code+10296>, 0x593ed8 <exec_byte_code+10344>, 0x593f18
> <exec_byte_code+10408>, 0x593f58 <exec_byte_code+10472>, 0x593f98
> <exec_byte_code+10536>, 0x593fd8 <exec_byte_code+10600>, 0x593c60
> <exec_byte_code+9712>, 0x593ca0 <exec_byte_code+9776>, 0x593ce0
> <exec_byte_code+9840>, 0x593d10 <exec_byte_code+9888>, 0x593d50
> <exec_byte_code+9952>, 0x593d90 <exec_byte_code+10016>, 0x593dd0
> <exec_byte_code+10080>, 0x593e10 <exec_byte_code+10144>, 0x593c28
> <exec_byte_code+9656>, 0x5939a0 <exec_byte_code+9008>, 0x5932c0
> <exec_byte_code+7248>, 0x593308 <exec_byte_code+7320>, 0x591b40
> <exec_byte_code+1232>, 0x591f50 <exec_byte_code+2272>, 0x591fd0
> <exec_byte_code+2400>, 0x592038 <exec_byte_code+2504>, 0x5920d0
> <exec_byte_code+2656>, 0x592e98 <exec_byte_code+6184>, 0x592700
> <exec_byte_code+4240>, 0x592448 <exec_byte_code+3544>, 0x593a80
> <exec_byte_code+9232>, 0x592d60 <exec_byte_code+5872>, 0x592db0
> <exec_byte_code+5952>, 0x591b40 <exec_byte_code+1232>, 0x591b40
> <exec_byte_code+1232>, 0x592e10 <exec_byte_code+6048>, 0x591b40
> <exec_byte_code+1232>, 0x591b40 <exec_byte_code+1232>, 0x591b40
> <exec_byte_code+1232>, 0x591b40 <exec_byte_code+1232>, 0x591b40
> <exec_byte_code+1232>, 0x591b40 <exec_byte_code+1232>, 0x591b40
> <exec_byte_code+1232>, 0x591b40 <exec_byte_code+1232>, 0x591b40
> <exec_byte_code+1232>, 0x592e60 <exec_byte_code+6128> <repeats 64 times>}
> count = 43
> op = <optimized out>
> vectorp = 0xc17940
> stack = {
> pc = 0xc2767c "\211\032\205\022",
> byte_string = 12549393,
> byte_string_start = 0xc27678 "\303\b\t\"\211\032\205\022",
> next = 0x7fffffffd670
> }
> top = 0x7ffffffeceb8
> result = <optimized out>
> type = <optimized out>
> #9 0x000000000054b832 in funcall_lambda (fun=fun@entry=12679533,
> nargs=nargs@entry=2, arg_vector=arg_vector@entry=0x7ffffffed098) at
> eval.c:3044
> val = <optimized out>
> syms_left = 12122994
> lexenv = 12122994
> i = <optimized out>
> optional = <optimized out>
> rest = <optimized out>
> #10 0x000000000054bdc8 in Ffuncall (nargs=nargs@entry=3,
> args=args@entry=0x7ffffffed090) at eval.c:2872
> fun = 12679533
> original_fun = 12814514
> numargs = 2
> val = <optimized out>
> internal_args = <optimized out>
> i = <optimized out>
> #11 0x000000000054c20f in call2 (fn=<optimized out>, arg1=<optimized
> out>, arg2=<optimized out>) at eval.c:2625
> ret_ungc_val = 140737488274800
> gcpro1 = {
> next = <optimized out>,
> var = <optimized out>,
> nvars = 3
> }
> args = {12814514, 13993041, 4719848}
> #12 0x00000000004fb123 in Finsert_file_contents (filename=1,
> visit=140737488276144, beg=140737488275040, end=7, replace=12122994) at
> fileio.c:4246
> unwind_data = 140737488274800
> st = {
> st_dev = 2305,
> st_ino = 2446155,
> st_nlink = 1,
> st_mode = 33188,
> st_uid = 1000,
> st_gid = 1000,
> __pad0 = 0,
> st_rdev = 0,
> st_size = 1179962,
> st_blksize = 4096,
> st_blocks = 2312,
> st_atim = {
> tv_sec = 1428921663,
> tv_nsec = 76764732
> },
> st_mtim = {
> tv_sec = 1428513385,
> tv_nsec = 0
> },
> st_ctim = {
> tv_sec = 1428921247,
> tv_nsec = 146779133
> },
> __unused = {0, 0, 0}
> }
> fd = 5
> unprocessed = 1179962
> handler = 12122994
> p = 12122994
> total = 1179962
> read_buf = '\000' <repeats 36680 times>,
> "\340b\310\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@(\240\312",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\260~\276\000\000\000\000\000\060\335\324\000\000\000\000\000\000\000\000\006\000\000\000@0c\310\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\260\247\316",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\001\000\000\000\000\000\000\000\005\000\000\000\000\000\000\000\340)\306\000\000\000\000\000\262\247\316\000\000\000\000\000\031\000\000\000\000\000\000\000\032\000\000\000\000\000\000\000\260\247\316",
> '\000' <repeats 13 times>,
> "\001\000\000\000\000\000\000\000\347\327R\000\000\000\000\000\001\000\000\000\000\000\000\000\210\242\312",
> '\000' <repeats 12 times>, "\200\000\000\000?\000\000\000@h\244\312",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000\240\364\310\000\000\000\000\000\025\000\000\000\000\000\000\000
> \000\000\000\000\000\000\000@\036\275\000\000\000\000\000\240h\277\000\000\000\000\000\000\000\000\006\000\000\000@
> \354\305\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@
> \345\313", '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\006\000\000\000\000\000\000\000\260\353\305\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@
> \345\313", '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R", '\000' <repeats 12 times>,
> "\200X\230R\000\000\000\000\000h\277\304\000\000\000\000\000\320)\276\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\300p\276",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\001\000\000\000\000\000\000\000\220\221\310\000\000\000\000\000\000\000\000\006\000\000\000@\360)\276\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@@>\276",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\240^\320\000\000\000\000\000\005\000\000\000\000\000\000\200\002\000\000\000\000\000\000\000B>\276",
> '\000' <repeats 13 times>, "\n\000\000\000\000\000\000\000@>\276",
> '\000' <repeats 13 times>,
> "\005\000\000\000\000\000\000\000\347\327R\000\000\000\000\000\240^\320\000\000\000\000\000\300\203\311\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\020Z\320",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\004\000\000\000\000\000\000\000\006\000\000\000\000\000\000\000@\036\275\000\000\000\000\000\004\000\000\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\020Z\320\000\000\000\000\000\b
> \323", '\000' <repeats 12 times>,
> "\200X\230R\000\000\000\000\000pZ\320\000\000\000\000\000\005\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000\r
> \323\000\000\000\000\000\034\000\000\000\000\000\000\000
> \000\000\000\000\000\000\000\b \323", '\000' <repeats 13 times>,
> "\005\000\000\000\000\000\000\000\354\326R\000\000\000\000\000\360\220\323\000\000\000\000\000\350\217\323",
> '\000' <repeats 12 times>,
> "\200p!\311\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@
> `\320", '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000 ^\273",
> '\000' <repeats 13 times>,
> "\005\000\000\000\000\000\000\000\060!\311\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@
> `\320", '\000' <repeats 12 times>,
> "\200\002\000\000\000\000\000\000\000d\227R\000\000\000\000\000\001\000\000\000\000\000\000\000-(\307\000\000\000\000\000\035\000\000\000\000\000\000\000
> \025\311\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@
> `\320\000\000\000\000\000\060\213\306\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\300\002\314",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\005\000\000\000\000\000\000\000\035\000\000\000\000\000\000\000\260s\317\000\000\000\000\000\360\212\306\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\300\002\314",
> '\000' <repeats 12 times>,
> "\200\002\000\000\000\000\000\000\000d\227R\000\000\000\000\000\000R\320\000\000\000\000\000\006\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000\340\021\311\000\000\000\000\000\021\000\000\000\000\000\000\000\022\000\000\000\000\000\000\000`M\274\000\000\000\000\000\001",
> '\000' <repeats 15 times>,
> "\214\330R\000\000\000\000\000\000R\320\000\000\000\000\000hQ\320",
> '\000' <repeats 12 times>,
> "\200X\230R\000\000\000\000\000\000\000\000\006\000\000\000@\005\000\000\000\000\000\000@8!\272\000\000\000\000\000\302_\320\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\300_\320",
> '\000' <repeats 12 times>,
> "\200\000\000\000\000\000\000\000\000\277\226R\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@8!\272\000\000\000\000\000\340e\277\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\360V\273",
> '\000' <repeats 12 times>,
> "\200\002\000\000\000\000\000\000\000d\227R\000\000\000\000\000<\000\000\000\000\000\000\000C\000\000\000\000\000\000\000\340\255\314\000\000\000\000\000\362V\273\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\360V\273",
> '\000' <repeats 12 times>,
> "\200\000\000\000\000\000\000\000\000\220\226R\000\000\000\000\000\270R\320",
> '\000' <repeats 12 times>, "\200\001\000\000\000\000\000\000\000
> \021\311\000\000\000\000\000\016\000\000\000\000\000\000\000\020\000\000\000\000\000\000\000p\373\270\000\000\000\000\000\002\000\000\000\000\000\000\000\001\000\000\000\000\000\000\000\214\330R\000\000\000\000\000\270R\320\000\000\000\000\000\060R\320",
> '\000' <repeats 12 times>,
> "\200X\230R\000\000\000\000\000\000\213\323\000\000\000\000\000\005\000\000\000\000\000\000\200\003\000\000\000\000\000\000\000r\313\303\000\000\000\000\000\027\000\000\000\000\000\000\000\030\000\000\000\000\000\000\000p\313\303",
> '\000' <repeats 13 times>,
> "\001\000\000\000\000\000\000\000\347\327R\000\000\000\000\000\000\213\323\000\000\000\000\000\350\211\323",
> '\000' <repeats 12 times>,
> "\200X\230R\000\000\000\000\000\070\023\306\000\000\000\000\000\006\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000R\245\303\000\000\000\000\000\v\000\000\000\000\000\000\000\024\000\000\000\000\000\000\000P\245\303",
> '\000' <repeats 13 times>,
> "\001\000\000\000\000\000\000\000\347\327R\000\000\000\000\000\070\023\306\000\000\000\000\000\300T\310",
> '\000' <repeats 12 times>,
> "\200X\230R\000\000\000\000\000\220\327\271\000\000\000\000\000\005\000\000\000\000\000\000\000\000\000\000\006\000\000\000@P[\304\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\220x\313",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\001\000\000\000\000\000\000\000\005\000\000\000\000\000\000\000\021\000\000\000\000\000\000\000@]\304\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\220x\313",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000p\231\323",
> '\000' <repeats 12 times>,
> "\200\000\000\000\000\000\000\000\000\222x\313\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\220x\313",
> '\000' <repeats 12 times>,
> "\200\000\000\000\000\000\000\000\000\277\226R\000\000\000\000\000\230\030\317\000\000\000\000\000\200(\306",
> '\000' <repeats 12 times>,
> "\200\060@\304\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\300\367\277",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000`\345\271",
> '\000' <repeats 13 times>,
> "\004\000\000\000\000\000\000\000\000e\304\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\300\367\277",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\001\000\000\000\000\000\000\000\062\253\277\000\000\000\000\000\003\000\000\000\000\000\000\000\202\370\277\000\000\000\000\000\t\000\000\000\000\000\000\000\r\000\000\000\000\000\000\000\200\370\277",
> '\000' <repeats 13 times>, "\005\000\000\000\000\000\000\000\347\327R",
> '\000' <repeats 12 times>, "\200\b\246\277", '\000' <repeats 12 times>,
> "\200\000\000\000?\000\000\000@\b5\300", '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000\r\246\277\000\000\000\000\000\a\000\000\000\000\000\000\000\n\000\000\000\000\000\000\000\b\246\277",
> '\000' <repeats 13 times>,
> "\005\000\000\000\000\000\000\000\354\326R\000\000\000\000\000\b5\300\000\000\000\000\000h\333\321",
> '\000' <repeats 12 times>,
> "\200X\230R\000\000\000\000\000\220\061\300\000\000\000\000\000\005\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000@b\312\000\000\000\000\000\001\000\000\000\000\000\000\000\003\000\000\000\000\000\000\000p\373\270\000\000\000\000\000\003\000\000\000\000\000\000\000\004\000\000\000\000\000\000\000\214\330R\000\000\000\000\000\220\061\300\000\000\000\000\000\000\060\272",
> '\000' <repeats 12 times>, "\200\000\000\000?\000\000\000@\370\333\321",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000\060b\312\000\000\000\000\000\005\000\000\000\000\000\000\000\v\000\000\000\000\000\000\000\330/\321\000\000\000\000\000\003\000\000\000\000\000\000\000\004\000\000\000\000\000\000\000\214\330R\000\000\000\000\000\370\333\321\000\000\000\000\000\230\333\321",
> '\000' <repeats 12 times>,
> "\200X\230R\000\000\000\000\000\000\000\000\006\000\000\000@\006\000\000\000\000\000\000@8s\324\000\000\000\000\000\342b\314\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\340b\314",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000\277\226R\000\000\000\000\000\033\000\000\000\000\000\000\000
> \000\000\000\000\000\000\000\360z\324\000\000\000\000\000p^\307\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@0\250\276",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\220\n\303\000\000\000\000\000\005\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000\240\266\306\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@`\371\313",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\220\n\303\000\000\000\000\000\350\t\303",
> '\000' <repeats 12 times>,
> "\200`\266\306\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@`\371\313",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\020\001\271\000\000\000\000\000\005\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000\202\\\274\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\200\\\274",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000\277\226R\000\000\000\000\000\260}\313",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000\220\267\306\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\240\252\313",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\020o\304",
> '\000' <repeats 12 times>,
> "\200\000\000\000\000\000\000\000\000@\267\306\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\240\252\313",
> '\000' <repeats 12 times>,
> "\200\a\000\000\000\000\000\000\000d\227R\000\000\000\000\000\020z\313",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000\242\252\313\000\000\000\000\000\000\000\000\006\000\000\000@P\177\310\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@8\022\306",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\b\000\000\000\000\000\000\000\024\000\000\000\000\000\000\000\240\240\277\000\000\000\000\000\004\000\000\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@8\022\306\000\000\000\000\000P\025\307",
> '\000' <repeats 12 times>,
> "\200X\230R\000\000\000\000\000X\016\306\000\000\000\000\000\005\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000\222\376\315\000\000\000\000\000*\000\000\000\000\000\000\000\240\322\325\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\320q\271",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\b\232\275\000\000\000\000\000\340\322\325\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\320q\271",
> '\000' <repeats 12 times>,
> "\200\002\000\000\000\000\000\000\000d\227R\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\020V\320\000\000\000\000\000\240\227\327\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\320q\271",
> '\000' <repeats 12 times>,
> "\200\t\000\000\000\000\000\000\000\320^\311\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\340(\321",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\320q\271\000\000\000\000\000\070\370\274",
> '\000' <repeats 12 times>,
> "\200\240\250\322\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\260\371\272",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\220\033\317\000\000\000\000\000\006\000\000\000\000\000\000\200\003\000\000\000\000\000\000\000\302M\272\000\000\000\000\000\002\000\000\000\000\000\000\000\005\000\000\000\000\000\000\000\300M\272",
> '\000' <repeats 13 times>,
> "\001\000\000\000\000\000\000\000\347\327R\000\000\000\000\000\220\033\317\000\000\000\000\000`\033\317",
> '\000' <repeats 12 times>,
> "\200X\230R\000\000\000\000\000\310\035\317\000\000\000\000\000\006\000\000\000\000\000\000\200\003\000\000\000\000\000\000\000\302$\317\000\000\000\000\000\001\000\000\000\000\000\000\000\002\000\000\000\000\000\000\000\300$\317\000\000\000\000\000\260\064\276\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\370o\300",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000\302)\317\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\300)\317",
> '\000' <repeats 12 times>,
> "\200\000\000\000\000\000\000\000\000\277\226R\000\000\000\000\000hY\317",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000\"*\317\000\000\000\000\000\t\000\000\000\000\000\000\000\v\000\000\000\000\000\000\000
> *\317", '\000' <repeats 21 times>,
> "\347\327R\000\000\000\000\000hY\317\000\000\000\000\000\bY\317", '\000'
> <repeats 12 times>,
> "\200X\230R\000\000\000\000\000\360\224\275\000\000\000\000\000\005\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000\")\317\000\000\000\000\000\002\000\000\000\000\000\000\000\242\266\316",
> '\000' <repeats 13 times>,
> "\001\000\000\000\000\000\000\000\240\266\316\000\000\000\000\000\000e\310\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@p\266\316",
> '\000' <repeats 12 times>,
> "\200\002\000\000\000\000\000\000\000d\227R\000\000\000\000\000\001\000\000\000\000\000\000\000\005\000\000\000\000\000\000\000#\000\000\000\000\000\000\000
> -\311\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@p\266\316",
> '\000' <repeats 12 times>, "\200\a\000\000\000\000\000\000\000d\227R",
> '\000' <repeats 12 times>,
> "\200X\230R\000\000\000\000\000\240V\317\000\000\000\000\000r\266\316\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@p\266\316",
> '\000' <repeats 12 times>,
> "\200\000\000\000\000\000\000\000\000\277\226R", '\000' <repeats 13
> times>, "\347\327R\000\000\000\000\000\240V\317\000\000\000\000\000
> \262\322\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\300\302\312",
> '\000' <repeats 12 times>, "\200\001\000\000\000\000\000\000\000d\227R",
> '\000' <repeats 13 times>,
> "\004\000\000\000\000\000\000\000\260_\314\000\000\000\000\000\220\254\322\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@0b\272\000\000\000\000\000X\240\312",
> '\000' <repeats 12 times>,
> "\200d\227R\000\000\000\000\000P\242\312\000\000\000\000\000\006\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000p\365\310\000\000\000\000\000\025\000\000\000\000\000\000\000\"\000\000\000\000\000\000\000@\036\275\000\000\000\000\000\003",
> '\000' <repeats 15 times>,
> "\214\330R\000\000\000\000\000P\242\312\000\000\000\000\000\070\241\312", '\000'
> <repeats 12 times>,
> "\200X\230R\000\000\000\000\000\030\361\316\000\000\000\000\000\006\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000\342\247\316\000\000\000\000\000\v\000\000\000\000\000\000\000\016\000\000\000\000\000\000\000\340\247\316",
> '\000' <repeats 21 times>,
> "\347\327R\000\000\000\000\000\030\361\316\000\000\000\000\000\240\360\316",
> '\000' <repeats 12 times>,
> "\200X\230R\000\000\000\000\000\000\212\271\000\000\000\000\000\006\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000\222H\274\000\000\000\000\000'\000\000\000\000\000\000\000*\000\000\000\000\000\000\000\220H\274",
> '\000' <repeats 21 times>,
> "\347\327R\000\000\000\000\000\000\212\271\000\000\000\000\000h%\272",
> '\000' <repeats 12 times>,
> "\200\262\252\273\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\260\252\273",
> '\000' <repeats 12 times>,
> "\200\000\000\000\000\000\000\000\000\277\226R\000\000\000\000\000\340\276\303\000\000\000\000\000\003",
> '\000' <repeats 15 times>,
> "\020\205\310\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@
> w\274", '\000' <repeats 12 times>,
> "\200\003\000\000\000\000\000\000\000d\227R\000\000\000\000\000\001\000\000\000\000\000\000\000\022\225\304\000\000\000\000\000\n\000\000\000\000\000\000\000\360\234\326\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\020q\271",
> '\000' <repeats 12 times>, "\200\001\000\000\000\000\000\000\000d\227R",
> '\000' <repeats 12 times>,
> "\200X\230R\000\000\000\000\000\260\035\306\000\000\000\000\000`\235\326\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\020q\271",
> '\000' <repeats 12 times>, "\200\001\000\000\000\000\000\000\000d\227R",
> '\000' <repeats 13 times>,
> "\347\327R\000\000\000\000\000\260\035\306\000\000\000\000\000\240\235\326\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\020q\271",
> '\000' <repeats 12 times>,
> "\200\002\000\000\000\000\000\000\000d\227R\000\000\000\000\000\b\000\000\000\000\000\000\000\v\000\000\000\000\000\000\000\000c\315\000\000\000\000\000@\212\270\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\300\266\273\000\000\000\000\000
> \n\276\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@0\230\277",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\340\264\273\000\000\000\000\000p\n\276\000\000\000\000\000\000\000\000\006\000\000\000@R\000\271",
> '\000' <repeats 13 times>, "\003\000\000\000\000\000\000\000P\000\271",
> '\000' <repeats 13 times>,
> "\n\000\000\000\000\000\000\000\347\327R\000\000\000\000\000\340\264\273\000\000\000\000\000\360\353\276",
> '\000' <repeats 12 times>, "\200\000\000\000?\000\000\000@0\230\277",
> '\000' <repeats 12 times>,
> "\200\003\000\000\000\000\000\000\000\260\v\276\000\000\000\000\000\027\000\000\000\000\000\000\000.\000\000\000\000\000\000\000P\350\277\000\000\000\000\000\003\000\000\000\000\000\000\000\n\000\000\000\000\000\000\000\214\330R\000\000\000\000\000\060\230\277\000\000\000\000\000H\a\303",
> '\000' <repeats 12 times>,
> "\200X\230R\000\000\000\000\000\210>\300\000\000\000\000\000\006\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000\"\016\300\000\000\000\000\000\003\000\000\000\000\000\000\000\004\000\000\000\000\000\000\000
> \016\300", '\000' <repeats 13 times>,
> "\n\000\000\000\000\000\000\000\347\327R\000\000\000\000\000\300\207\300\000\000\000\000\000X\233\277",
> '\000' <repeats 12 times>,
> "\200d\227R\000\000\000\000\000`\002\271\000\000\000\000\000\005\000\000\000\000\000\000\200\000\000\000\000\000\000\000\000\060\374\275\000\000\000\000\000\r\000\000\000\000\000\000\000\025\000\000\000\000\000\000\000P\365\271\000\000\000\000\000\003\000\000\000\000\000\000\000\n\000\000\000\000\000\000\000\214\330R\000\000\000\000\000\270>\300\000\000\000\000\000\340\v\303",
> '\000' <repeats 12 times>,
> "\200X\230R\000\000\000\000\000\001\000\000\000\000\000\000\000\004",
> '\000' <repeats 14 times>,
> "\200\020\004\276\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\260\016\300",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\001\000\000\000\000\000\000\000d\227R",
> '\000' <repeats 13 times>,
> "\262\016\300\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\260\016\300",
> '\000' <repeats 12 times>,
> "\200\000\000\000\000\000\000\000\000\277\226R\000\000\000\000\000\002\000\000\000\000\000\000\000d\227R\000\000\000\000\000\b\000\000\000\000\000\000\000`\000\276\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\240\f\300",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@0\230\277\000\000\000\000\000\060Q\305\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@@d\273",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\000\000\000\006\000\000\000@R\000\271",
> '\000' <repeats 13 times>,
> "\020R\305\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@@d\273",
> '\000' <repeats 12 times>, "\200\001\000\000\000\000\000\000\000d\227R",
> '\000' <repeats 12 times>, "\200
> \321\306\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@0\030\314",
> '\000' <repeats 12 times>, "\200\001\000\000\000\000\000\000\000d\227R",
> '\000' <repeats 13 times>,
> "\277\226R\000\000\000\000\000\n\000\000\000\000\000\000\000\220\317\306\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@0\030\314",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\003\000\000\000\000\000\000\000b\343\271\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@`\343\271",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000\277\226R\000\000\000\000\000\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\001\000\000\000\000\000\000\000\020\322\306\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\200\254\313",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\001\000\000\000\000\000\000\000\277\226R\000\000\000\000\000\000\000\000\006\000\000\000@\300\321\306\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\200\254\313",
> '\000' <repeats 12 times>,
> "\200\a\000\000\000\000\000\000\000d\227R\000\000\000\000\000\001\000\000\000\000\000\000\000\240O\277\000\000\000\000\000\000\000\000\006\000\000\000@\202\254\313\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\200\254\313",
> '\000' <repeats 12 times>,
> "\200\000\000\000\000\000\000\000\000\277\226R\000\000\000\000\000\006\000\000\000\000\000\000\000\022\000\000\000\000\000\000\000\250\030\323\000\000\000\000\000\340v\307\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\300\030\314\000\000\000\000\000\222\213\273\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\220\213\273",
> '\000' <repeats 12 times>,
> "\200\000\000\000\000\000\000\000\000\277\226R\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@0\264\330\000\000\000\000\000\003\000\000\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\300\315\312\000\000\000\000\000\370\336\303",
> '\000' <repeats 12 times>,
> "\200X\230R\000\000\000\000\000\006\000\000\000\000\000\000\000\004\000\000\000\000\000\000\000\060\264\330\000\000\000\000\000r\234\314\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@p\234\314\000\000\000\000\000\340u\322\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@@\363\322",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\v\000\000\000\000\000\000\000\016\000\000\000\000\000\000\000\200v\273\000\000\000\000\000\004\000\000\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@@\363\322\000\000\000\000\000\b\363\322",
> '\000' <repeats 12 times>,
> "\200X\230R\000\000\000\000\000\300\364\322\000\000\000\000\000\005\000\000\000\000\000\000\200\003\000\000\000\000\000\000\000\342\266\330\000\000\000\000\000\f\000\000\000\000\000\000\000\r\000\000\000\000\000\000\000\340\266\330",
> '\000' <repeats 13 times>,
> "\001\000\000\000\000\000\000\000\347\327R\000\000\000\000\000\300\364\322\000\000\000\000\000P\364\322",
> '\000' <repeats 12 times>,
> "\200X\230R\000\000\000\000\000\020\000\000\000\000\000\000\000\006\000\000\000\000\000\000\000`\254\273\000\000\000\000\000`\236\322\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@`\261\330",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\003\000\000\000\000\000\000\000\005\000\000\000\000\000\000\000\060w\271\000\000\000\000\000\020\241\322\000\000\000\000\000\000\000\000\006\000\000\000@\000%\276\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\030r\276",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000\020\305\300", '\000' <repeats 13
> times>,
> "\001\000\000\000\000\000\000\000\340[\301\000\000\000\000\000\002\000\000\000\000\000\000\000\005\000\000\000\000\000\000\000\214\330R\000\000\000\000\000\300\234\273\000\000\000\000\000\340[\301",
> '\000' <repeats 12 times>, "\200d\227R\000\000\000\000\000\210\\\301",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000\345[\301\000\000\000\000\000\v\000\000\000\000\000\000\000\f\000\000\000\000\000\000\000\340[\301",
> '\000' <repeats 13 times>,
> "\005\000\000\000\000\000\000\000\354\326R\000\000\000\000\000\210\\\301\000\000\000\000\000
> \\\301", '\000' <repeats 12 times>,
> "\200X\230R\000\000\000\000\000Ȓ\303\000\000\000\000\000\005\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000bC\272\000\000\000\000\000\021\000\000\000\000\000\000\000\024\000\000\000\000\000\000\000`C\272",
> '\000' <repeats 21 times>,
> "\347\327R\000\000\000\000\000Ȓ\303\000\000\000\000\000 \222\303",
> '\000' <repeats 12 times>,
> "\200\300#\276\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@
> \006\303", '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\020\235\274",
> '\000' <repeats 12 times>,
> "\200\000\000\000\000\000\000\000\000\004\000\000\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@
> \006\303\000\000\000\000\000\030\340\276", '\000' <repeats 12 times>,
> "\200X\230R\000\000\000\000\000`\005\303\000\000\000\000\000\005\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000\202\v\300\000\000\000\000\000\003\000\000\000\000\000\000\000\006\000\000\000\000\000\000\000\200\v\300\000\000\000\000\000\360$\276\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\340\n\300",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\300\364\322\000\000\000\000\000\005",
> '\000' <repeats 14 times>,
> "\200\342\n\300\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\340\n\300",
> '\000' <repeats 12 times>,
> "\200\000\000\000\000\000\000\000\000\277\226R\000\000\000\000\000\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\001\000\000\000\000\000\000\000`j\323\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@py\325",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000\"u\271\000\000\000\000\000\006\000\000\000\000\000\000\000\t\000\000\000\000\000\000\000
> u\271", '\000' <repeats 13 times>,
> "\001\000\000\000\000\000\000\000\347\327R\000\000\000\000\000py\325\000\000\000\000\000
> y\325", '\000' <repeats 12 times>,
> "\200X\230R\000\000\000\000\000\002\000\000\000\000\000\000\000\005\000\000\000\000\000\000\000\000\000\000\006\000\000\000@b\254\323\000\000\000\000\000\004\000\000\000\000\000\000\000\005\000\000\000\000\000\000\000`\254\323",
> '\000' <repeats 13 times>,
> "\001\000\000\000\000\000\000\000\347\327R\000\000\000\000\000\t\000\000\000\000\000\000\000x\354\301",
> '\000' <repeats 12 times>, "\200\000\000\000?\000\000\000@h\355\301",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000\242\272\273\000\000\000\000\000\020\000\000\000\000\000\000\000\023\000\000\000\000\000\000\000\240\272\273\000\000\000\000\000r\v\302\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@p\v\302",
> '\000' <repeats 12 times>,
> "\200\000\000\000\000\000\000\000\000\277\226R\000\000\000\000\000\300}\300\000\000\000\000\000\005\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000\222\036\301\000\000\000\000\000\024\000\000\000\000\000\000\000:\000\000\000\000\000\000\000\220\036\301",
> '\000' <repeats 13 times>,
> "\001\000\000\000\000\000\000\000\347\327R\000\000\000\000\000\300}\300\000\000\000\000\000\220\270\305\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\020\266\313",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000Z\000\000\000\000\000\000\000[\000\000\000\000\000\000\000\240\v\301\000\000\000\000\000P\270\305\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\020\266\313",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\000\000\000\006\000\000\000@\005\000\000\000\000\000\000@\300\036\273\000\000\000\000\000\300\271\305\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\200\247\313",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\000\227\271\000\000\000\000\000`-\302\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@0\372\302",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@@\237\274\000\000\000\000\000\302{\274\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\300{\274",
> '\000' <repeats 12 times>,
> "\200\000\000\000\000\000\000\000\000\320%\276\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\370p\300",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000`\372\302",
> '\000' <repeats 12 times>,
> "\200\002\000\000\000\000\000\000\000\340$\276\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\200m\300\000\000\000\000\000P\373\304\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@`\232\304",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\v\000\000\000\000\000\000\000\021\000\000\000\000\000\000\000\200P\274\000\000\000\000\000\260\373\304\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@`\232\304\000\000\000\000\000\262.\314\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\260.\314",
> '\000' <repeats 12 times>,
> "\200\000\000\000\000\000\000\000\000\277\226R\000\000\000\000\000\a\000\000\000\000\000\000\000\021\000\000\000\000\000\000\000@N\274\000\000\000\000\000\300\n\307\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\360z\273\000\000\000\000\000\240\300\300\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\220w\305",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000@Z\277\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\200\305\304",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\220w\305",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000\005\000\000\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\200\305\304\000\000\000\000\000\240q\300",
> '\000' <repeats 12 times>,
> "\200X\230R\000\000\000\000\000\220w\305\000\000\000\000\000\006\000\000\000\000\000\000\200\002\000\000\000\000\000\000\000\022\300\312\000\000\000\000\000\005\000\000\000\000\000\000\000\006\000\000\000\000\000\000\000\020\300\312",
> '\000' <repeats 13 times>,
> "\004\000\000\000\000\000\000\000\347\327R\000\000\000\000\000\220w\305\000\000\000\000\000Xw\305",
> '\000' <repeats 12 times>,
> "\200X\230R\000\000\000\000\000\060Y\320\000\000\000\000\000\006\000\000\000\000\000\000\000\002\000\000\000\000\000\000\000\362\352\320\000\000\000\000\000
> \000\000\000\000\000\000\000$\000\000\000\000\000\000\000\360\352\320",
> '\000' <repeats 13 times>,
> "\004\000\000\000\000\000\000\000\347\327R\000\000\000\000\000\060Y\320\000\000\000\000\000\bX\320",
> '\000' <repeats 12 times>,
> "\200X\230R\000\000\000\000\000\070%\321\000\000\000\000\000\006\000\000\000\000\000\000\200\002\000\000\000\000\000\000\000\022a\272\000\000\000\000\000\b\000\000\000\000\000\000\000\f\000\000\000\000\000\000\000\020a\272",
> '\000' <repeats 21 times>,
> "\347\327R\000\000\000\000\000\070%\321\000\000\000\000\000\320$\321",
> '\000' <repeats 12 times>, "\200X\230R", '\000' <repeats 12 times>,
> "\200\006\000\000\000\000\000\000\000\340$\272\000\000\000\000\000\322\001\271\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\320\001\271",
> '\000' <repeats 12 times>,
> "\200\000\000\000\000\000\000\000\000\277\226R", '\000' <repeats 13
> times>,
> "\214\330R\000\000\000\000\000\340$\272\000\000\000\000\000\240h\306\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@`\356\313",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\002\000\000\000\000\000\000\000\004\000\000\000\000\000\000\000\300\257\314\000\000\000\000\000@h\306\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@`\356\313",
> '\000' <repeats 12 times>,
> "\200\002\000\000\000\000\000\000\000d\227R\000\000\000\000\000\000#\272\000\000\000\000\000\005\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000\002y\271\000\000\000\000\000\r\000\000\000\000\000\000\000%\000\000\000\000\000\000\000\000y\271",
> '\000' <repeats 21 times>,
> "\270\327R\000\000\000\000\000\000#\272\000\000\000\000\000\320!\272",
> '\000' <repeats 12 times>, "\200\330\304\306", '\000' <repeats 12
> times>, "\200\000\000\000?\000\000\000@@\305\306", '\000' <repeats 12
> times>,
> "\200\001\000\000\000\000\000\000\000\335\304\306\000\000\000\000\000\006\000\000\000\000\000\000\000\n\000\000\000\000\000\000\000\330\304\306",
> '\000' <repeats 13 times>,
> "\004\000\000\000\000\000\000\000@\261\274\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@p\225\275",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000p\261\274\000\000\000\000\000\002\000\000\000\000\000\000\000\003\000\000\000\000\000\000\000\320¹\000\000\000\000\000\001",
> '\000' <repeats 15 times>,
> "\214\330R\000\000\000\000\000p\225\275\000\000\000\000\000P\225\275",
> '\000' <repeats 12 times>, "\200X\230R", '\000' <repeats 12 times>,
> "\200\005\000\000\000\000\000\000\000\310\355\316\000\000\000\000\000\002F\272\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\000F\272",
> '\000' <repeats 12 times>,
> "\200\000\000\000\000\000\000\000\000\277\226R\000\000\000\000\000\001\000\000\000\000\000\000\000\347\327R\000\000\000\000\000\310\355\316\000\000\000\000\000\240'\302\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\250r\305",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\026\000\000\000\000\000\000\000&\000\000\000\000\000\000\000@Q\274\000\000\000\000\000@\247\270\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\200\003\272\000\000\000\000\000\340`\304\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\300x\313",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\025\000\000\000\000\000\000\000\031\000\000\000\000\000\000\000\200\003\272\000\000\000\000\000@a\304\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\300x\313",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\300\257\314\000\000\000\000\000\005\000\000\000\000\000\000\000\000\000\000\006\000\000\000@\220\060\305\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@
> \376\272", '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\001\000\000\000\000\000\000\000\002y\271\000\000\000\000\000\r\000\000\000\000\000\000\000\220\276\305\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@
> \376\272", '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R", '\000' <repeats 12 times>,
> "\200\330\304\306", '\000' <repeats 12 times>,
> "\200\000\272\305\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@
> \376\272", '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R", '\000' <repeats 12 times>,
> "\200\300}\300\000\000\000\000\000\001\000\000\000\000\000\000\000и\305\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@
> \376\272", '\000' <repeats 12 times>,
> "\200\003\000\000\000\000\000\000\000d\227R\000\000\000\000\000\300\327\271\000\000\000\000\000\022\b\301\000\000\000\000\000\002\000\000\000\000\000\000\000\"\376\272\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@
> \376\272", '\000' <repeats 12 times>,
> "\200\000\000\000\000\000\000\000\000\220\226R\000\000\000\000\000\f\000\000\000\000\000\000\000\021\000\000\000\000\000\000\000\060\220\271\000\000\000\000\000ps\277\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\000\366\272",
> '\000' <repeats 12 times>,
> "\200\002\000\000\000\000\000\000\000d\227R\000\000\000\000\000\240t\300\000\000\000\000\000\005\000\000\000\000\000\000\000\001\000\000\000\000\000\000\000\220\030\276\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\330w\276",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000P\033\301\000\000\000\000\000\350\032\301",
> '\000' <repeats 12 times>,
> "\200\004\000\000\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\330w\276\000\000\000\000\000\270w\276",
> '\000' <repeats 12 times>,
> "\200X\230R\000\000\000\000\000\260չ\000\000\000\000\000\005\000\000\000\000\000\000\000\000\000\000\006\000\000\000@\222\217\276\000\000\000\000\000\001\000\000\000\000\000\000\000\003\000\000\000\000\000\000\000\220\217\276\000\000\000\000\000\260i\305\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\240\377\272\000\000\000\000\000\360@\327\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@0M\326",
> '\000' <repeats 12 times>, "\200\002\000\000\000\000\000\000\000d\227R",
> '\000' <repeats 13 times>,
> "\001\000\000\000\000\000\000\000\240\377\272\000\000\000\000\000\060H\327\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@0M\326",
> '\000' <repeats 12 times>, "\200\003\000\000\000\000\000\000\000d\227R",
> '\000' <repeats 13 times>,
> "\005\000\000\000\000\000\000\000\220{\274\000\000\000\000\000\260J\327\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@0M\326",
> '\000' <repeats 12 times>, "\200\a\000\000\000\000\000\000\000d\227R",
> '\000' <repeats 13 times>,
> "\005\000\000\000\000\000\000\000(\246\300\000\000\000\000\000\342\324\317\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\340\324\317",
> '\000' <repeats 12 times>,
> "\200\000\000\000\000\000\000\000\000\277\226R\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\000-\301\000\000\000\000\000@J\327\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@
> \020\317", '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\a\000\000\000\000\000\000\000\b\000\000\000\000\000\000\000\060-\301\000\000\000\000\000\300\071\327\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@
> \020\317", '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\000\000\000\006\000\000\000@\005\000\000\000\000\000\000@\300\r\277\000\000\000\000\000\300\270\322\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@
> \020\317", '\000' <repeats 12 times>,
> "\200\003\000\000\000\000\000\000\000d\227R", '\000' <repeats 13 times>,
> "\004\000\000\000\000\000\000\000\240κ\000\000\000\000\000\"\020\317\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@
> \020\317", '\000' <repeats 12 times>,
> "\200\000\000\000\000\000\000\000\000\277\226R\000\000\000\000\000Й\277\000\000\000\000\000HD\312",
> '\000' <repeats 12 times>,
> "\200\300\300\322\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@p\f\307",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000(\224\303",
> '\000' <repeats 12 times>,
> "\200\003\000\000\000\000\000\000\000r\f\307\000\000\000\000\000\005\000\000\000\000\000\000\000\r\000\000\000\000\000\000\000p\f\307\000\000\000\000\000\362+\314\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\360+\314",
> '\000' <repeats 12 times>,
> "\200\000\000\000\000\000\000\000\000\277\226R\000\000\000\000\000\000\000\000\006\000\000\000@\006\000\000\000\000\000\000@\360ι\000\000\000\000\000pY\306\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\240p\273",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\v\000\000\000\000\000\000\000\f\000\000\000\000\000\000\000\240f\301\000\000\000\000\000PY\306\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\240p\273",
> '\000' <repeats 12 times>,
> "\200\004\000\000\000\000\000\000\000d\227R\000\000\000\000\000\340\272\313",
> '\000' <repeats 12 times>, "\200\001\000\000\000\000\000\000\000
> R\306\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\240p\273",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\340\272\313",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000\000R\306\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\240p\273",
> '\000' <repeats 12 times>,
> "\200\004\000\000\000\000\000\000\000d\227R\000\000\000\000\000\000\"\301",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000p\n\310\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\240p\273",
> '\000' <repeats 12 times>,
> "\200\003\000\000\000\000\000\000\000d\227R\000\000\000\000\000\230\006\303",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000\242p\273\000\000\000\000\000\005\000\000\000\000\000\000\000\b\000\000\000\000\000\000\000\240p\273",
> '\000' <repeats 21 times>,
> "\270\327R\000\000\000\000\000\230\006\303\000\000\000\000\000\330l\301", '\000'
> <repeats 12 times>,
> "\200X\230R\000\000\000\000\000\001\000\000\000\000\000\000\000\006\000\000\000\000\000\000\000\320\021\301\000\000\000\000\000\342z\301\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\340z\301",
> '\000' <repeats 12 times>,
> "\200\000\000\000\000\000\000\000\000\277\226R\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@0v\274\000\000\000\000\000\220Y\307\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\360k\314",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@p\245\313\000\000\000\000\000\320V\307\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\360k\314",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000h[\320\000\000\000\000\000\005\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000r\300\313\000\000\000\000\000\017\000\000\000\000\000\000\000\030\000\000\000\000\000\000\000p\300\313",
> '\000' <repeats 21 times>,
> "\347\327R\000\000\000\000\000h[\320\000\000\000\000\000\240Z\320",
> '\000' <repeats 12 times>,
> "\200X\230R\000\000\000\000\000\000\000\000\006\000\000\000@\005\000\000\000\000\000\000@0\202\273\000\000\000\000\000\020\t\311\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\300\354\317",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\003\000\000\000\000\000\000\000\b\000\000\000\000\000\000\000\260ƺ\000\000\000\000\000P\t\311\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\300\354\317",
> '\000' <repeats 12 times>,
> "\200\002\000\000\000\000\000\000\000d\227R\000\000\000\000\000\000\000\000\006\000\000\000@\005\000\000\000\000\000\000@\020\243\271\000\000\000\000\000\260\233\311\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\300\354\317",
> '\000' <repeats 12 times>,
> "\200\003\000\000\000\000\000\000\000d\227R\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\020\243\271\000\000\000\000\000\300\232\311\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\300\354\317",
> '\000' <repeats 12 times>,
> "\200\002\000\000\000\000\000\000\000d\227R\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\000\003\275\000\000\000\000\000\240\222\311\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\300\354\317",
> '\000' <repeats 12 times>,
> "\200\v\000\000\000\000\000\000\000d\227R\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\000\003\275\000\000\000\000\000\302\354\317\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\300\354\317",
> '\000' <repeats 12 times>,
> "\200\000\000\000\000\000\000\000\000\277\226R\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\000\003\275\000\000\000\000\000\300:\311\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\200\355\317",
> '\000' <repeats 12 times>,
> "\200\002\000\000\000\000\000\000\000\340r\310\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\020\032\307",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000\062o\274\000\000\000\000\000/\000\000\000\000\000\000\000\064\000\000\000\000\000\000\000\060o\274",
> '\000' <repeats 21 times>,
> "\270\327R\000\000\000\000\000\020\032\307\000\000\000\000\000h\030\307", '\000'
> <repeats 12 times>,
> "\200X\230R\000\000\000\000\000\060|\271\000\000\000\000\000\005\000\000\000\000\000\000\200\000\000\000\000\000\000\000\000B\310\303\000\000\000\000\000\004\000\000\000\000\000\000\000\006\000\000\000\000\000\000\000@\310\303",
> '\000' <repeats 21 times>,
> "\347\327R\000\000\000\000\000@\262\273\000\000\000\000\000\020\304\304", '\000'
> <repeats 12 times>, "\200\000\000\000?\000\000\000@\200\211\317", '\000'
> <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000\022\246\271\000\000\000\000\000\001\000\000\000\000\000\000\000\002\000\000\000\000\000\000\000\020\246\271",
> '\000' <repeats 21 times>,
> "\347\327R\000\000\000\000\000\200\211\317\000\000\000\000\000` \307",
> '\000' <repeats 12 times>,
> "\200X\230R\000\000\000\000\000\000\000\000\006\000\000\000@\005\000\000\000\000\000\000@\000}\273\000\000\000\000\000\200\373\312\000\000\000\000\000\f\000\000\000\000\000\000\000\031\000\000\000\000\000\000\000\260W\274\000\000\000\000\000\001",
> '\000' <repeats 15 times>,
> "\214\330R\000\000\000\000\000\000\000\000\006\000\000\000@\300\342\321", '\000'
> <repeats 12 times>, "\200\000\000\000?\000\000\000@\220\343\321", '\000'
> <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000\240\372\312\000\000\000\000\000\001\000\000\000\000\000\000\000\003\000\000\000\000\000\000\000p\373\270\000\000\000\000\000\003",
> '\000' <repeats 15 times>,
> "\214\330R\000\000\000\000\000\220\343\321\000\000\000\000\000p/\272",
> '\000' <repeats 12 times>,
> "\200X\230R\000\000\000\000\000\220\342\321\000\000\000\000\000\005\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000\262\064\322\000\000\000\000\000\t\000\000\000\000\000\000\000\f\000\000\000\000\000\000\000\260\064\322",
> '\000' <repeats 21 times>,
> "\347\327R\000\000\000\000\000\220\342\321\000\000\000\000\000(\342\321", '\000'
> <repeats 12 times>,
> "\200X\230R\000\000\000\000\000p\344\321\000\000\000\000\000\005\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000\"4\322\000\000\000\000\000\f\000\000\000\000\000\000\000\025\000\000\000\000\000\000\000
> 4\322\000\000\000\000\000
> \032\276\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\200x\276",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\001\000\000\000\000\000\000\000\002\000\000\000\000\000\000\000\200\251\276\000\000\000\000\000\004\000\000\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\200x\276\000\000\000\000\000\bx\276",
> '\000' <repeats 12 times>, "\200X\230R", '\000' <repeats 13 times>,
> "\005\000\000\000\000\000\000\000\220\342\321\000\000\000\000\000\360\330\300\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@0]\303",
> '\000' <repeats 12 times>,
> "\200\016\000\000\000\000\000\000\000d\227R\000\000\000\000\000\f\000\000\000\000\000\000\000`-\302\000\000\000\000\000\000\000\000\006\000\000\000@2]\303\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@0]\303",
> '\000' <repeats 12 times>,
> "\200\000\000\000\000\000\000\000\000\277\226R\000\000\000\000\000\002\000\000\000\000\000\000\000\302{\274\000\000\000\000\000\000\000\000\006\000\000\000@pJ\304\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\360\334\303",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\200\242\313",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000@J\304\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@P\261\303",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\200\242\313\000\000\000\000\000\005\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000R\261\303\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@P\261\303",
> '\000' <repeats 12 times>,
> "\200\000\000\000\000\000\000\000\000\277\226R\000\000\000\000\000\200\242\313",
> '\000' <repeats 12 times>, "\200\001\000\000\000\000\000\000\000
> h\311\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@0J\321",
> '\000' <repeats 12 times>,
> "\200\003\000\000\000\000\000\000\000d\227R\000\000\000\000\000\030(\321",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000\020k\311\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@0J\321",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\030(\321",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000\062J\321\000\000\000\000\000\005\000\000\000\000\000\000\000\033\000\000\000\000\000\000\000\060J\321",
> '\000' <repeats 21 times>,
> "\347\327R\000\000\000\000\000\030(\321\000\000\000\000\000\060}\322\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\360g\301",
> '\000' <repeats 12 times>, "\200\001\000\000\000\000\000\000\000d\227R",
> '\000' <repeats 13 times>,
> "\004\000\000\000\000\000\000\000\340\227\274\000\000\000\000\000\000\201\322\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\360g\301",
> '\000' <repeats 12 times>,
> "\200\003\000\000\000\000\000\000\000d\227R\000\000\000\000\000P\261\303\000\000\000\000\000\006\000\000\000\000\000\000\200\000\000\000\000\000\000\000\000\362g\301\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\360g\301",
> '\000' <repeats 12 times>,
> "\200\000\000\000\000\000\000\000\000\277\226R\000\000\000\000\000\060J\321",
> '\000' <repeats 12 times>,
> "\200\003\000\000\000\000\000\000\000\300\351\325\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\320o\271",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\060J\321",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000\360\351\325\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\320o\271",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\060J\321",
> '\000' <repeats 12 times>,
> "\200\000\000\000\000\000\000\000\000\060\352\325\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\320o\271",
> '\000' <repeats 12 times>,
> "\200\002\000\000\000\000\000\000\000d\227R\000\000\000\000\000`n\314\000\000\000\000\000\000\273\274\000\000\000\000\000\000\000\000\006\000\000\000@p\352\325\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\320o\271",
> '\000' <repeats 12 times>,
> "\200\002\000\000\000\000\000\000\000d\227R\000\000\000\000\000Pc\317\000\000\000\000\000\004\000\000\000\000\000\000\000\000\000\000\006\000\000\000@\320]\305\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@p~\313",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\020\223\274\000\000\000\000\000B\340\275\000\000\000\000\000\000\000\000\006\000\000\000@P\366\300\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\000\240\300",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\001\000\000\000\000\000\000\000\005\000\000\000\000\000\000\000\001\000\000\000\000\000\000\000\004\000\000\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\000\240\300\000\000\000\000\000П\300",
> '\000' <repeats 12 times>, "\200X\230R", '\000' <repeats 12 times>,
> "\200\005\000\000\000\000\000\000\000
> \303\316\000\000\000\000\000\002\350\271\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\000\350\271",
> '\000' <repeats 12 times>,
> "\200\000\000\000\000\000\000\000\000\277\226R\000\000\000\000\000\n\000\000\000\000\000\000\000\347\327R\000\000\000\000\000
> \303\316\000\000\000\000\000\300\223\330\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\340\005\324",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\027\000\000\000\000\000\000\000.\000\000\000\000\000\000\000P\350\277\000\000\000\000\000\342\005\324\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\340\005\324",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000\277\226R\000\000\000\000\000\210>\300\000\000\000\000\000\006\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000\360h\277\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\300\361\272",
> '\000' <repeats 12 times>,
> "\200\002\000\000\000\000\000\000\000d\227R\000\000\000\000\000\300\207\300\000\000\000\000\000X\233\277",
> '\000' <repeats 12 times>, "\200
> W\307\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@`a\314",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000P\365\271\000\000\000\000\000\003\000\000\000\000\000\000\000\n\000\000\000\000\000\000\000\000W\307\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@`a\314",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000
> \376\272\000\000\000\000\000\020\004\276\000\000\000\000\000\000\000\000\006\000\000\000@ba\314\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@`a\314",
> '\000' <repeats 12 times>,
> "\200\000\000\000\000\000\000\000\000\277\226R\000\000\000\000\000
> \376\272\000\000\000\000\000\262\016\300\000\000\000\000\000\000\000\000\006\000\000\000@Pf\307\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@@\022\315",
> '\000' <repeats 12 times>,
> "\200\005\000\000\000\000\000\000\000d\227R\000\000\000\000\000\250\224\275\000\000\000\000\000`\000\276\000\000\000\000\000\000\000\000\006\000\000\000@\320Q\307\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@@\022\315",
> '\000' <repeats 12 times>,
> "\200\005\000\000\000\000\000\000\000d\227R\000\000\000\000\000\250\224\275\000\000\000\000\000\005\000\000\000\000\000\000\000\000\000\000\006\000\000\000@0P\307\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@@\022\315",
> '\000' <repeats 12 times>,
> "\200\006\000\000\000\000\000\000\000d\227R\000\000\000\000\000\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\000\000\000\006\000\000\000@`I\307\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@@\022\315",
> '\000' <repeats 12 times>,
> "\200\v\000\000\000\000\000\000\000d\227R\000\000\000\000\000\003\000\000\000\000\000\000\000d\227R\000\000\000\000\000\b\000\000\000\000\000\000\000B\022\315\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@@\022\315",
> '\000' <repeats 12 times>,
> "\200\000\000\000\000\000\000\000\000\277\226R", '\000' <repeats 13
> times>,
> "\277\226R\000\000\000\000\000\060]\303\000\000\000\000\000@Y\312\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@`n\314",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\003\000\000\000\000\000\000\000X\375\302",
> '\000' <repeats 12 times>,
> "\200p\306\322\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@Pc\317",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000H\266\317",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000\022\223\274\000\000\000\000\000\002\000\000\000\000\000\000\000\t\000\000\000\000\000\000\000\020\223\274",
> '\000' <repeats 21 times>,
> "\347\327R\000\000\000\000\000H\266\317\000\000\000\000\000\370\265\317", '\000'
> <repeats 12 times>,
> "\200X\230R\000\000\000\000\000\340\272\317\000\000\000\000\000\005\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000\202c\317\000\000\000\000\000\002\000\000\000\000\000\000\000\v\000\000\000\000\000\000\000\200c\317",
> '\000' <repeats 21 times>,
> "\347\327R\000\000\000\000\000\340\272\317\000\000\000\000\000\200\272\317",
> '\000' <repeats 12 times>, "\200X\230R\000\000\000\000\000
> \303\316\000\000\000\000\000\005\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000\242\016\317\000\000\000\000\000\a\000\000\000\000\000\000\000\n\000\000\000\000\000\000\000\240\016\317",
> '\000' <repeats 21 times>, "\347\327R\000\000\000\000\000
> \303\316\000\000\000\000\000\310\302\316", '\000' <repeats 12 times>,
> "\200X\230R\000\000\000\000\000h\240\277\000\000\000\000\000\240\003\276\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\320\021\301",
> '\000' <repeats 12 times>, "\200\001\000\000\000\000\000\000\000d\227R",
> '\000' <repeats 13 times>,
> "\347\327R\000\000\000\000\000h\240\277\000\000\000\000\000\004\000\000\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\320\021\301\000\000\000\000\000
> ~\300", '\000' <repeats 12 times>,
> "\200X\230R\000\000\000\000\000\033\000\000\000\000\000\000\000\005\000\000\000\000\000\000\000\300\373\271\000\000\000\000\000\062v\274\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@0v\274",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000\220\226R\000\000\000\000\000\270\030\324\000\000\000\000\000\005\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000PO\305\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@p\245\313",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\270\030\324\000\000\000\000\000`D\277\000\000\000\000\000\000\000\000\006\000\000\000@\"ع\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@
> ع", '\000' <repeats 12 times>,
> "\200\000\000\000\000\000\000\000\000\277\226R\000\000\000\000\000\020#\324\000\000\000\000\000\342j\273\000\000\000\000\000\000\000\000\006\000\000\000@P\324\304\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\220\241\313",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000@ƶ\000\000\000\000\000\"u\313\000\000\000\000\000\000\000\000\006\000\000\000@\220\324\304\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\220\241\313",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\005\000\000\000\000\000\000\000\n\000\000\000\000\000\000\000\200\\\274\000\000\000\000\000\222\241\313\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\220\241\313",
> '\000' <repeats 12 times>,
> "\200\000\000\000\000\000\000\000\000\277\226R", '\000' <repeats 12
> times>, " \006", '\000' <repeats 14 times>,
> "\200\220\000\307\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@p\016\314",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\300\213\274\000\000\000\000\000h\177\271\000\000\000\000\000\000\000\000\006\000\000\000@P\000\307\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@p\016\314",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\004\000\000\000\000\000\000\000r\016\314\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@p\016\314",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000\277\226R\000\000\000\000\000\260\376\272",
> '\000' <repeats 12 times>,
> "\200\003\000\000\000\000\000\000\000\240\002\307\000\000\000\000\000\000\000\000\006\000\000\000@\020\242\322\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\340s\325",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\002\000\000\000\000\000\000\000\060\001\307\000\000\000\000\000\000\000\000\006\000\000\000@\004\000\000\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\340s\325\000\000\000\000\000\270s\325",
> '\000' <repeats 12 times>,
> "\200X\230R\000\000\000\000\000xw\325\000\000\000\000\000\005\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000B\253\323\000\000\000\000\000\004\000\000\000\000\000\000\000\005\000\000\000\000\000\000\000@\253\323",
> '\000' <repeats 13 times>,
> "\001\000\000\000\000\000\000\000\347\327R\000\000\000\000\000xw\325\000\000\000\000\000\250u\325",
> '\000' <repeats 12 times>,
> "\200X\230R\000\000\000\000\000\060v\325\000\000\000\000\000\005\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000\060t\323\000\000\000\000\000\t\000\000\000\000\000\000\000\n\000\000\000\000\000\000\000p\373\270\000\000\000\000\000\020\256\307\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\000\016\272",
> '\000' <repeats 12 times>,
> "\200\003\000\000\000\000\000\000\000d\227R\000\000\000\000\000\300v\325\000\000\000\000\000\005\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000\002\016\272\000\000\000\000\000\t\000\000\000\000\000\000\000\v\000\000\000\000\000\000\000\000\016\272",
> '\000' <repeats 13 times>,
> "\001\000\000\000\000\000\000\000\270\327R\000\000\000\000\000\300v\325\000\000\000\000\000\060\003\276\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\250\b\306",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\t\000\000\000\000\000\000\000\n\000\000\000\000\000\000\000p\253\323\000\000\000\000\000\004\000\000\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\250\b\306\000\000\000\000\000\330r\305",
> '\000' <repeats 12 times>,
> "\200X\230R\000\000\000\000\000H%\324\000\000\000\000\000\005\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000B\347\271\000\000\000\000\000\021\000\000\000\000\000\000\000\024\000\000\000\000\000\000\000@\347\271",
> '\000' <repeats 13 times>,
> "\001\000\000\000\000\000\000\000\347\327R\000\000\000\000\000H%\324\000\000\000\000\000P7\277\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\220\236\300",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\a\000\000\000\000\000\000\000\b\000\000\000\000\000\000\000\200\033\300\000\000\000\000\000\004\000\000\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\220\236\300\000\000\000\000\000X\236\300",
> '\000' <repeats 12 times>,
> "\200X\230R\000\000\000\000\000X\215\303\000\000\000\000\000\005\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000\002\212\300\000\000\000\000\000\005\000\000\000\000\000\000\000\022\000\000\000\000\000\000\000\000\212\300",
> '\000' <repeats 13 times>,
> "\001\000\000\000\000\000\000\000\347\327R\000\000\000\000\000X\215\303\000\000\000\000\000\300\214\303",
> '\000' <repeats 12 times>,
> "\200X\230R\000\000\000\000\000\220\214\303\000\000\000\000\000\005\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000B\211\303\000\000\000\000\000\b\000\000\000\000\000\000\000\n\000\000\000\000\000\000\000@\211\303",
> '\000' <repeats 13 times>,
> "\001\000\000\000\000\000\000\000\347\327R\000\000\000\000\000\220\214\303\000\000\000\000\000\070\214\303",
> '\000' <repeats 12 times>,
> "\200X\230R\000\000\000\000\000X\234\302\000\000\000\000\000\005\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000\062\234\271\000\000\000\000\000\021\000\000\000\000\000\000\000\023\000\000\000\000\000\000\000\060\234\271",
> '\000' <repeats 13 times>,
> "\001\000\000\000\000\000\000\000\347\327R\000\000\000\000\000X\234\302\000\000\000\000\000\270\233\302",
> '\000' <repeats 12 times>,
> "\200X\230R\000\000\000\000\000\000\000\000\006\000\000\000@\005\000\000\000\000\000\000@\240Ź\000\000\000\000\000\260S\305\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\200\277\312",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\060\357\271",
> '\000' <repeats 12 times>,
> "\200\000\000\000\000\000\000\000\000\220\263\270\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\360\241\271",
> '\000' <repeats 12 times>,
> "\200\003\000\000\000\000\000\000\000d\227R\000\000\000\000\000pq\300",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000\320E\277\000\000\000\000\000\a\000\000\000\000\000\000\000\032\000\000\000\000\000\000\000p\b\273\000\000\000\000\000\001\000\000\000\000\000\000\000\001\000\000\000\000\000\000\000\214\330R\000\000\000\000\000pq\300\000\000\000\000\000\320\350\303",
> '\000' <repeats 12 times>,
> "\200X\230R\000\000\000\000\000\000u\305\000\000\000\000\000\005\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000r\004\272\000\000\000\000\000\002\000\000\000\000\000\000\000\005\000\000\000\000\000\000\000p\004\272",
> '\000' <repeats 13 times>,
> "\001\000\000\000\000\000\000\000и\307\000\000\000\000\000\r\000\000\000\000\000\000\000\023\000\000\000\000\000\000\000\060O\274\000\000\000\000\000\003\000\000\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\360\302\306\000\000\000\000\000\300\261\310",
> '\000' <repeats 12 times>, "\200\000\000\000?\000\000\000@@\353\276",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000ű\310\000\000\000\000\000\004\000\000\000\000\000\000\000\a\000\000\000\000\000\000\000\300\261\310\000\000\000\000\000x\260\310",
> '\000' <repeats 12 times>,
> "\200\354\326R\000\000\000\000\000\030\353\323\000\000\000\000\000\330\352\323",
> '\000' <repeats 12 times>,
> "\200}\260\310\000\000\000\000\000\f\000\000\000\000\000\000\000\016\000\000\000\000\000\000\000x\260\310",
> '\000' <repeats 13 times>,
> "\005\000\000\000\000\000\000\000\354\326R\000\000\000\000\000\360\353\323\000\000\000\000\000x\353\323",
> '\000' <repeats 12 times>,
> "\200X\230R\000\000\000\000\000\b\037\307\000\000\000\000\000\005",
> '\000' <repeats 14 times>,
> "\200\240d\323\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\200\357\323\000\000\000\000\000\360\255\310",
> '\000' <repeats 12 times>, "\200d\227R\000\000\000\000\000\230\022\324",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000\002{\274\000\000\000\000\000
> \000\000\000\000\000\000\000*\000\000\000\000\000\000\000\000{\274",
> '\000' <repeats 13 times>,
> "\005\000\000\000\000\000\000\000\347\327R\000\000\000\000\000\230\022\324\000\000\000\000\000@\021\324",
> '\000' <repeats 12 times>,
> "\200X\230R\000\000\000\000\000\240r\325\000\000\000\000\000\006\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000\242
> \324\000\000\000\000\000\b\000\000\000\000\000\000\000\n\000\000\000\000\000\000\000\240
> \324", '\000' <repeats 21 times>,
> "\347\327R\000\000\000\000\000\240r\325\000\000\000\000\000Hr\325",
> '\000' <repeats 12 times>,
> "\200X\230R\000\000\000\000\000\330r\325\000\000\000\000\000\006\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000\022\246\323\000\000\000\000\000\001\000\000\000\000\000\000\000\002\000\000\000\000\000\000\000\020\246\323",
> '\000' <repeats 21 times>,
> "\347\327R\000\000\000\000\000\330r\325\000\000\000\000\000PZ\323\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\370\275\323",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\016\000\000\000\000\000\000\000\021\000\000\000\000\000\000\000Ц\323\000\000\000\000\000\004\000\000\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\370\275\323\000\000\000\000\000Ƚ\323",
> '\000' <repeats 12 times>,
> "\200X\230R\000\000\000\000\000\270\341\324\000\000\000\000\000\005\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000b\236\323\000\000\000\000\000\t\000\000\000\000\000\000\000\016\000\000\000\000\000\000\000`\236\323",
> '\000' <repeats 21 times>,
> "\347\327R\000\000\000\000\000\270\341\324\000\000\000\000\000@\341\324", '\000'
> <repeats 12 times>,
> "\200X\230R\000\000\000\000\000\350\345\276\000\000\000\000\000\005\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000\342&\275\000\000\000\000\000\004\000\000\000\000\000\000\000\006\000\000\000\000\000\000\000\340&\275\000\000\000\000\000\200ϼ\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\200&\275",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000p\v\302\000\000\000\000\000\005\000\000\000\000\000\000\200\000\000\000\000\000\000\000\000\302\213\273\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\300\213\273",
> '\000' <repeats 12 times>,
> "\200\000\000\000\000\000\000\000\000\277\226R\000\000\000\000\000\220\036\301",
> '\000' <repeats 13 times>,
> "\001\000\000\000\000\000\000\000`R\277\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\020P\312",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000\300V\277\000\000\000\000\000\r\000\000\000\000\000\000\000\027\000\000\000\000\000\000\000\060^\274\000\000\000\000\000\060\327\324\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\320%\325",
> '\000' <repeats 12 times>,
> "\200\003\000\000\000\000\000\000\000d\227R\000\000\000\000\000\002\000\000\000\000\000\000\000\005\000\000\000\000\000\000\000\320\330\301\000\000\000\000\000\360\330\310\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\370\372\316",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000\302u\317\000\000\000\000\000!\000\000\000\000\000\000\000#\000\000\000\000\000\000\000\300u\317\000\000\000\000\000\220\341\306\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\340\021\315\000\000\000\000\000\260u\310\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\330\033\307",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\r\000\000\000\000\000\000\000\021\000\000\000\000\000\000\000\200*\317\000\000\000\000\000\005\000\000\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\330\033\307\000\000\000\000\000\200\067\302\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\360\221\303",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000\202c\273\000\000\000\000\000\004\000\000\000\000\000\000\000\025\000\000\000\000\000\000\000\200c\273",
> '\000' <repeats 21 times>,
> "\347\327R\000\000\000\000\000\360\221\303\000\000\000\000\000@\221\303", '\000'
> <repeats 12 times>, "\200X\230R", '\000' <repeats 13 times>,
> "\005\000\000\000\000\000\000\000\002\000\000\000\000\000\000\000\002\327\271\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\000\327\271",
> '\000' <repeats 12 times>,
> "\200\000\000\000\000\000\000\000\000\277\226R\000\000\000\000\000\004\000\000\000\000\000\000\000d\227R",
> '\000' <repeats 12 times>,
> "\200\300\262\270\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\340z\271",
> '\000' <repeats 12 times>,
> "\200\002\000\000\000\000\000\000\000:\245R\000\000\000\000\000\003\000\000\000\000\000\000\000d\227R",
> '\000' <repeats 13 times>, "\347\327R", '\000' <repeats 12 times>,
> "\200\200Y\304\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\340z\271",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000H\204\274\000\000\000\000\000\270\203\271\000\000\000\000\000@|\273\000\000\000\000\000PX\304\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\340z\271",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@p^\320\000\000\000\000\000\342z\271\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\340z\271",
> '\000' <repeats 12 times>,
> "\200\000\000\000\000\000\000\000\000\277\226R\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@p^\320\000\000\000\000\000P\214\305\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@P*\272",
> '\000' <repeats 12 times>,
> "\200\002\000\000\000\000\000\000\000d\227R\000\000\000\000\000\200\240\300",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000R*\272\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@P*\272",
> '\000' <repeats 12 times>,
> "\200\000\000\000\000\000\000\000\000\220\226R\000\000\000\000\000\200\240\300\000\000\000\000\000\060\240\300",
> '\000' <repeats 12 times>,
> "\200p%\302\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\260\375\270",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\220w\305\000\000\000\000\000\220\227\326\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\300ù",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000f\000\000\000\000\000\000\000\200VQ\000\000\000\000\000\220w\305\000\000\000\000\000\300\227\326\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\300ù",
> '\000' <repeats 12 times>, "\200\001\000\000\000\000\000\000\000d\227R",
> '\000' <repeats 12 times>,
> "\200X\230R\000\000\000\000\000\220w\305\000\000\000\000\000\060\220\326\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\300ù",
> '\000' <repeats 12 times>,
> "\200\002\000\000\000\000\000\000\000d\227R\000\000\000\000\000pŹ",
> '\000' <repeats 12 times>,
> "\200\003\000\000\000\000\000\000\000p\220\326\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\300ù",
> '\000' <repeats 12 times>,
> "\200\002\000\000\000\000\000\000\000d\227R\000\000\000\000\000\003\000\000\000\000\000\000\000\004\000\000\000\000\000\000\000\340S\272\000\000\000\000\000`̼\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\320¹",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\370e\275\000\000\000\000\000\005\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000\322\b\300",
> '\000' <repeats 13 times>, "\t\000\000\000\000\000\000\000\320\b\300",
> '\000' <repeats 13 times>,
> "\001\000\000\000\000\000\000\000\347\327R\000\000\000\000\000\020Z\275\000\000\000\000\000\020\002\303",
> '\000' <repeats 12 times>,
> "\200d\227R\000\000\000\000\000\250\003\303\000\000\000\000\000\005\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000`'\276\000\000\000\000\000
> \000\000\000\000\000\000\000(\000\000\000\000\000\000\000\200\327\272\000\000\000\000\000\003\000\000\000\000\000\000\000\001\000\000\000\000\000\000\000\214\330R\000\000\000\000\000\250\003\303\000\000\000\000\000`\002\303",
> '\000' <repeats 12 times>,
> "\200\036\370Z\000\000\000\000\000\001\000\000\000\000\000\000\000\037\000\000\000\000\000\000\000\377\377\377\377\377\377\377\377Q\204\325\000\000\000\000\000H\276\377\377\377\177\000\000P\276\377\377\377\177\000\000X\276\377\377\377\177\000\000\225\237[\000\000\000\000\000\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\002\000\000\000\000\000\000\000\037\000\000\000\000\000\000\000\037\000\000\000\000\000\000\000\037\000\000\000\000\000\000\000\001\000\000\000\000\000\000\000
> \000\000\000\000\000\000\000\377\377\377\377\377\377\377\377:\036I\000\000\000\000\000Q\204\325\000\000\000\000\000@:\326",
> '\000' <repeats 13 times>,
> "\064\000\000\000\000\000\000\000\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\000\300\377\377\377\177\000\000\221\203\325\000\000\000\000\000\064",
> '\000' <repeats 15 times>,
> "\064\000\000\000\000\000\000\000P\305\377\377\377\177\000\000\220:\326\000\000\000\000\000lkR\000\000\000\000\000\204\305\377\377\377\177\000\000
> \325\377\377\377\177\000\000^\270\301\000\000\000\000\000\001\000\000\000\000\000\000\000]\270\301\000\000\000\000\000\244\366S\000\000\000\000\000\377\377\377\377\377\377\377\377\000\000\000?\000\000\000@0\253\313\000\000\000\000\000\b\000\000\000\000\000\000\000(\000\000\000\000\000\000\000d\227R\000\000\000\000\000\377\377\377\377\377\377\377\377pA\307\000\000\000\000\000\020",
> '\000' <repeats 15 times>, "\001\001", '\000' <repeats 13 times>,
> "@0\253\313", '\000' <repeats 12 times>,
> "\200@\017\300\000\000\000\000\000@\023\300\000\000\000\000\000\002\000\000\000\000\000\000\000d\227R\000\000\000\000\000\f\000\000\000\000\000\000\000\001\300\377\377\377\177\000\000\240\276\377\377\377\177\000\000\340\325\377\377\377\177\000\000\002\000\000\000\000\000\000\000\001",
> '\000' <repeats 15 times>, "\064", '\000' <repeats 14 times>,
> "\200X\230R", '\000' <repeats 13 times>,
> "\350\325\377\377\377\177\000\000\001\000\000\000\000\000\000\000\000\000\000?\000\000\000@\200\226\273",
> '\000' <repeats 13 times>, "
> \000\000\000\000\000\000\000\277\226R\001\000\000\000\000H\270\301\000\000\000\000\000\350\276\377\377\377\177\000\000
> \000\000\000\000\000\000\000^\270\301\000\000\000\000\000^\270\301\000\000\000\000\000\240\017\000\000\000\000\000\000\060\002\314\000\000\000\000\000Q\270\301\000\000\000\000\000\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\340\021\315\000\000\000\000\000\260\216\306\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@0\002\314",
> '\000' <repeats 12 times>, "\200\002\000\000\000\000\000\000\000d\227R",
> '\000' <repeats 13 times>,
> "\277\226R\000\000\000\000\000\200*\317\000\000\000\000\000\320\336\325\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\240q\271",
> '\000' <repeats 12 times>, "\200\001\000\000\000\000\000\000\000d\227R",
> '\000' <repeats 13 times>,
> "\277\226R\000\000\000\000\000\001\000\000\000\000\000\000\000\220\330\325\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\240q\271",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\003\000\000\000\000\000\000\000\347\327R\000\000\000\000\000\240\372\271\000\000\000\000\000p\331\325\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\240q\271",
> '\000' <repeats 12 times>,
> "\200\005\000\000\000\000\000\000\000d\227R\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\300\241\271\000\000\000\000\000\300\331\325\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\240q\271",
> '\000' <repeats 12 times>,
> "\200\b\000\000\000\000\000\000\000d\227R\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\300\241\271\000\000\000\000\000\020-\327\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\240q\271",
> '\000' <repeats 12 times>, "\200\t\000\000\000\000\000\000\000d\227R",
> '\000' <repeats 13 times>,
> "\001\000\000\000\000\000\000\000\300\241\271\000\000\000\000\000\242q\271\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\240q\271",
> '\000' <repeats 12 times>,
> "\200\000\000\000\000\000\000\000\000\277\226R\000\000\000\000\000\000\000\000\006\000\000\000@\005\000\000\000\000\000\000@\340z\271\000\000\000\000\000\320\334\325\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\360\215\271",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\000\000\000\006\000\000\000@UXQ\000\000\000\000\000и\273\000\000\000\000\000p\335\325\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\360\215\271",
> '\000' <repeats 12 times>,
> "\200\003\000\000\000\000\000\000\000d\227R\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@и\273\000\000\000\000\000\300\335\325\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\360\215\271",
> '\000' <repeats 12 times>,
> "\200\006\000\000\000\000\000\000\000d\227R\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@и\273\000\000\000\000\000\000\336\325\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\360\215\271",
> '\000' <repeats 12 times>,
> "\200\002\000\000\000\000\000\000\000d\227R\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\320¹\000\000\000\000\000\260;\327\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\360\215\271",
> '\000' <repeats 12 times>,
> "\200\021\000\000\000\000\000\000\000\340\"\302\000\000\000\000\000\004\000\000\000\000\000\000\000\t\000\000\000\000\000\000\000@\252\276\000\000\000\000\000@f\323\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@(\023\324",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\006\000\000\000\000\000\000\000\n\000\000\000\000\000\000\000@\252\276\000\000\000\000\000\005\000\000\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@(\023\324\000\000\000\000\000\000\023\324",
> '\000' <repeats 12 times>,
> "\200X\230R\000\000\000\000\000x\334\302\000\000\000\000\000\006\000\000\000\000\000\000\000\065\000\000\000\000\000\000\000b!\324\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@`!\324",
> '\000' <repeats 12 times>,
> "\200\000\000\000\000\000\000\000\000\277\226R", '\000' <repeats 13
> times>,
> "\277\226R\000\000\000\000\000\b\000\000\000\000\000\000\000\240\262\270\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@Pz\271",
> '\000' <repeats 12 times>,
> "\200\002\000\000\000\000\000\000\000:\245R\000\000\000\000\000\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\003\000\000\000\000\000\000\000\a",
> '\000' <repeats 14 times>,
> "\200\340-\304\000\000\000\000\000\000\000\000\006\000\000\000@UXQ\000\000\000\000\000Loading
> /src/emacs-24.5/lisp/loaddefs.el
> (source)...\000\000\000\000\000.\304\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@Pz\271\000\000\000\000\000UXQ\000\000\000\000\000l\000\000\000\000\000\000\000p\201I\000\000\000\000\000\324c\330\000\000\000\000\000UXQ\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@P+\321\000\000\000\000\000UXQ\000\000\000\000\000\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\r\000\000\000\000\000\000\000\020\000\000\000\000\000\000\000\200+\321\000\000\000\000\000\004\000\000\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@P+\321\000\000\000\000\000H\336\321",
> '\000' <repeats 12 times>,
> "\200UXQ\000\000\000\000\000`\020\324\000\000\000\000\000\005\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000\342\230\323\000\000\000\000\000\001\000\000\000\000\000\000\000\004\000\000\000\000\000\000\000\340\230\323",
> '\000' <repeats 13 times>,
> "\005\000\000\000\000\000\000\000\347\327R\000\000\000\000\000\370s\324\000\000\000\000\000UXQ",
> '\000' <repeats 12 times>,
> "\200X\230R\000\000\000\000\000\060l\325\000\000\000\000\000\005\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000\302\232\323\000\000\000\000\000\036\000\000\000\000\000\000\000!\000\000\000\000\000\000\000\300\232\323",
> '\000' <repeats 13 times>,
> "\005\000\000\000\000\000\000\000\347\327R\000\000\000\000\000\060l\325\000\000\000\000\000\340`\323\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\000\024\324",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\001\000\000\000\000\000\000\000\002\000\000\000\000\000\000\000\260\230\323\000\000\000\000\000\005\000\000\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\000\024\324\000\000\000\000\000\260\357\310\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\210\225\317",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\006\000\000\000\000\000\000\000\v\000\000\000\000\000\000\000@\235\323\000\000\000\000\000\004\000\000\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\210\225\317\000\000\000\000\000ȴ\317",
> '\000' <repeats 12 times>,
> "\200X\230R\000\000\000\000\000`\224\302\000\000\000\000\000\005\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000ʹ\317\000\000\000\000\000G\000\000\000\000\000\000\000p\201I\000\000\000\000\000\223\240\273\000\000\000\000\000UXQ",
> '\000' <repeats 13 times>,
> "\354\326R\000\000\000\000\000\070P\320\000\000\000\000\000\020\270\316", '\000'
> <repeats 12 times>,
> "\200X\230R\000\000\000\000\000\b\226\302\000\000\000\000\000\005\000\000\000\000\000\000\200\001",
> '\000' <repeats 15 times>,
> "\001\000\000\000\000\000\000\000\002\000\000\000\000\000\000\000p\002\275\000\000\000\000\000a\331\377\377\377\177\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@",
> '\000' <repeats 16 times>, "\001", '\000' <repeats 15 times>,
> "a\331\377\377\377\177\000\000y\240\273\000\000\000\000\000B\377\271\000\000\000\000\000@\245\305\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\000\006\273",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\020\000\000\000\000\000\000\000`\273\377\377\377\177\000\000`\370\263\000\000\000\000\000\200\231\307\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\000\006\273",
> '\000' <repeats 12 times>,
> "\200\a\000\000\000\000\000\000\000d\227R\000\000\000\000\000\215\240\273\000\000\000\000\000UXQ\000\000\000\000\000\n\000\000\000\000\000\000\000R\221\271\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@P\221\271",
> '\000' <repeats 12 times>,
> "\200\000\000\000\000\000\000\000\000\277\226R\000\000\000\000\000`\000\000\000\000\000\000\000J\332\377\377\377\177\000\000\000\000\000\000\000\000\000\000p\350\307\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@
> {\273", '\000' <repeats 12 times>,
> "\200\005\000\000\000\000\000\000\000d\227R\000\000\000\000\000\250\026\374\367\377\177\000\000\026\000\000\000",
> '\377' <repeats 12 times>,
> "\220E\306\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@и\273",
> '\000' <repeats 12 times>,
> "\200\002\000\000\000\000\000\000\000d\227R\000\000\000\000\000y\216\324\000\000\000\000\000:\000\000\000\000\000\000\000x\216\324\000\000\000\000\000@D\306\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@и\273",
> '\000' <repeats 12 times>,
> "\200\002\000\000\000\000\000\000\000d\227R\000\000\000\000\000B\377\271\000\000\000\000\000\a\305O",
> '\000' <repeats 13 times>,
> "Ҹ\273\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@и\273",
> '\000' <repeats 12 times>,
> "\200\000\000\000\000\000\000\000\000\220\226R\000\000\000\000\000\226K\322",
> '\000' <repeats 21 times>,
> "\220l\277\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@p\365\272",
> '\000' <repeats 12 times>,
> "\200\002\000\000\000\000\000\000\000d\227R\000\000\000\000\000\024\000\000\000\000\000\000\000\070\367\263",
> '\000' <repeats 13 times>,
> "\020\215\305\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@0\276\313",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\001\366\263",
> '\000' <repeats 13 times>,
> "\004\000\000\000\000\000\000\000Ќ\305\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@0\276\313",
> '\000' <repeats 12 times>,
> "\200\002\000\000\000\000\000\000\000d\227R\000\000\000\000\000\377\377\377\377\377\377\377\377\b",
> '\000' <repeats 15 times>,
> "\060\222\305\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\020\250\313",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000Ȏ\324\000\000\000\000\000Q\243\320\000\000\000\000\000\200\315\377\377\377\177\000\000`\357\310\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\220\356\316",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\200\315\377\377\377\177\000\000
> wU", '\000' <repeats 13 times>,
> "\005\000\000\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\220\356\316\000\000\000\000\000p\345\303",
> '\000' <repeats 12 times>,
> "\200X\230R\000\000\000\000\000\026\000\000\000\000\000\000\000\006\000\000\000\000\000\000\000\026\000\000\000\000\000\000\000\"\233\304\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@
> \233\304", '\000' <repeats 12 times>,
> "\200\000\000\000\000\000\000\000\000\277\226R", '\000' <repeats 13
> times>,
> "\230\315\377\377\377\177\000\000\000\000\000\000\000\000\177\003\000\222\305\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@
> \275\313", '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000@\316\377\377\377\177\000\000u\244\355\365\377\177\000\000\000\000\000\000\000\000\000\000\300\221\305\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@
> \275\313", '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000-\000\000\000\000\000\000\000`\316\377\377\377\177\000\000\000\000\000\000\000\000\000\000\242n\274\000\000\000\000\000\000\000\000\006\000\000\000@\370\024\306",
> '\000' <repeats 12 times>, "\200\000\000\000?\000\000\000@\340\345\324",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000\375\024\306\000\000\000\000\000\r\000\000\000\000\000\000\000\022\000\000\000\000\000\000\000\370\024\306",
> '\000' <repeats 13 times>,
> "\005\000\000\000\000\000\000\000\354\326R\000\000\000\000\000\340\345\324\000\000\000\000\000\370\036\324",
> '\000' <repeats 12 times>,
> "\200X\230R\000\000\000\000\000\220\037\324\000\000\000\000\000\005\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000\375\036\324\000\000\000\000\000
> \000\000\000\000\000\000\000+\000\000\000\000\000\000\000\370\036\324",
> '\000' <repeats 13 times>,
> "\005\000\000\000\000\000\000\000\354\326R\000\000\000\000\000\220\037\324\000\000\000\000\000\020j\324",
> '\000' <repeats 12 times>,
> "\200X\230R\000\000\000\000\000\240o\271\000\000\000\000\000\006\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000bF\324",
> '\000' <repeats 13 times>, "\001\000\000\000\000\000\000\000`F\324",
> '\000' <repeats 13 times>,
> "\005\000\000\000\000\000\000\000\347\327R\000\000\000\000\000\240o\271\000\000\000\000\000hD\311",
> '\000' <repeats 12 times>,
> "\200d\227R\000\000\000\000\000rŹ\000\000\000\177\003\020(\303\000\000\000\000\000~Q\202\000\000\000\000\000mD\311\000\000\000\000\000\a\000\000\000\000\000\000\000\017\000\000\000\000\000\000\000hD\311",
> '\000' <repeats 13 times>, "\005\000\000\000\000\000\000\000\354\326R",
> '\000' <repeats 13 times>, "hl\324", '\000' <repeats 12 times>,
> "\200\000\000\000?\000\000\000@\360m\324", '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000\020S\323\000\000\000\000\000\035\000\000\000\000\000\000\000
> \000\000\000\000\000\000\000hl\324\000\000\000\000\000\002\000\000\000\000\000\000\000\005\000\000\000\000\000\000\000\214\330R\000\000\000\000\000\360m\324\000\000\000\000\000\350l\324",
> '\000' <repeats 12 times>,
> "\200X\230R\000\000\000\000\000\310\037\324\000\000\000\000\000\006\000\000\000\000\000\000\200\001\000\000\000\000\000\000\000\200\347\312\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\300\236\323",
> '\000' <repeats 12 times>,
> "\200\001\000\000\000\000\000\000\000d\227R\000\000\000\000\000\310\037\324\000\000\000\000\000pk\324",
> '\000' <repeats 12 times>,
> "\200@\347\312\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\300\236\323",
> '\000' <repeats 12 times>,
> "\200\002\000\000\000\000\000\000\000d\227R\000\000\000\000\000@T\326",
> '\000' <repeats 13 times>,
> "\005\000\000\000\000\000\000\000\020{\322\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@\300\236\323\000\000\000\000\000\300\343\300\000\000\000\000\000\000\000\000\006\000\000\000@\000\000\000?\000\000\000@Xx\305\000\000\000\000\000@V$\366\377\177\000\000\260\b\000\000\000\000\000\000\241\b\000\000\000\000\000\000@V$\366\377\177\000\000\300$\275\000\000\000\000\000\340\000\000\000\000\000\000\000\227\201\361\365\377\177\000\000\000\000\000\006\000\000\000@R\000\000\000\000\000\000@H\223\303\000\000\000\000\000P\301\330\000\000\000\000\000\320\b",
> '\000' <repeats 14 times>, "\001", '\000' <repeats 23 times>,
> "\213\000\000\000R\000\000\000_\000\000\000n\000\000\000w\000\000\000|\000\000\000@V$\366\377\177\000\000\340#\275\000\000\000\000\000\300)\331\000\000\000\000\000\340\000\000\000\000\000\000\000@V$\366\377\177\000\000\300$\275\000\000\000\000\000\340\000\000\000\000\000\000\000\060\231\361\365\377\177\000\000\006\000\000\000\000\000\000\000\260\b\000\000\000\000\000\000@V$\366\377\177\000\000\360#\275\000\000\000\000\000\001\000\000\000\000\000\000\000\031\374\377\377\377\377\377\377\364\000\000\000\000\000\000\000\300)\331\000\000\000\000\000\060\027\275\000\000\000\000\000\203,Q\000\000\000\000\000\060\027\275",
> '\000' <repeats 13 times>,
> "\001\000\000\000\000\000\000\000\060\027\275\000\000\000\000\000\001\000\000\000\000\000\000\000X\323\377\377\377\177\000\000'\000\000\000\377\177\000\000\002\000\000\000\000\000\000\000\321\a",
> '\000' <repeats 14 times>,
> "\324\000\000\000\000\000\000\000\377\377\377\377\377\377\377\377r\373\270\000\000\000\000\000|\253N\000\000\000\000\000\002\357\272\000\000\000\000\000\313\306P\000\000\000\000\000r\373\270\000\000\000\000\000\001\000\000\000\000\000\000\000\001\000\000\000\000\000\000\000\033a\271\000\000\000\000\000\363`\271\000\000\000\000\000\300\000\000\000\000\000\000\000\300\000\000\000\000\000\000\000R.Q\000\000\000\000\000P\323\377\377\377\177\000\000\300\000\000\000\000\000\000\000\060\027\275\000\000\000\000\000\003$\361\365\377\177\000\000\060\027\275\000\000\000\000\000\200`$\366\377\177\000\000\064\000\000\000\000\000\000\000\003$\361\365\377\177\000\000\220:\326\000\000\000\000\000\200`$\366\377\177\000\000\001\000\000\000\000\000\000\000\003a$\366\377\177\000\000\377\377\377\377\377\377\
377\377\342\"\361\365\377\177\000\000\001\000\000\000\000\000\000\000\n\000\000\000\000\000\000\000\064\000\000\000\000\000\000\000\365\065\361\365\377\177\000\000\200`$\366\377\177\000\000?9\361\3
65
>
> \377\177\000\000\200`$\366\377\177\000\000
> \325\377\377\377\177\000\000\064\000\000\000\000\000\000\000\"\364\360\365\377\177\000\000\221\203\325\000\000\000\000\000DuD\000\000\000\000\000\200`$\366\377\177\000\000[x\360\365\377\177\000\000\221\203\325\000\000\000\000\000+wD\000\000\000\000\000Loading
> /src/emacs-24.5/lisp/loaddefs.el
> (source)...\000\000\000\000\301\253\302\000\000\000\000\000(\270\301\000\000\000\000\000\fwD\000\000\000\000\000P\204\325\000\000\000\000\000\030\325\377\377\377\177\000\000\370\"\256\000\000\000\000\000\030\325\377\377\377\177\000\000\003\000\000\000\000\000\000\000r\373\270\000\000\000\000\000p\325\377\377\377\177\000\000ۮT\000\000\000\000\000
> \000\000\000\000\000\000\000\037\000\000\000\000\000\000"
> coding = {
> id = 0,
> common_flags = 0,
> mode = 0,
> spec = {
> iso_2022 = {
> flags = 0,
> current_invocation = {0, 0},
> current_designation = {0, 0, 0, 0},
> ctext_extended_segment_len = 0,
> single_shifting = false,
> bol = false,
> embedded_utf_8 = false,
> cmp_status = {
> state = COMPOSING_NO,
> method = COMPOSITION_RELATIVE,
> old_form = false,
> length = 0,
> nchars = 0,
> ncomps = 0,
> carryover = {0 <repeats 68 times>}
> }
> },
> ccl = 0x0,
> utf_16 = {
> bom = utf_detect_bom,
> endian = utf_16_big_endian,
> surrogate = 0
> },
> utf_8_bom = utf_detect_bom,
> emacs_mule = {
> cmp_status = {
> state = COMPOSING_NO,
> method = COMPOSITION_RELATIVE,
> old_form = false,
> length = 0,
> nchars = 0,
> ncomps = 0,
> carryover = {0 <repeats 68 times>}
> }
> },
> undecided = {
> inhibit_nbd = 0,
> inhibit_ied = 0,
> prefer_utf_8 = false
> }
> },
> max_charset_id = 0,
> safe_charsets = 0x0,
> src_multibyte = false,
> dst_multibyte = false,
> head_ascii = 0,
> detected_utf8_bytes = 0,
> detected_utf8_chars = 0,
> eol_seen = 0,
> produced = 0,
> produced_char = 0,
> consumed = 0,
> consumed_char = 0,
> errors = 0,
> error_positions = 0x0,
> result = CODING_RESULT_SUCCESS,
> src_pos = 0,
> src_pos_byte = 0,
> src_chars = 0,
> src_bytes = 0,
> src_object = 0,
> source = 0x0,
> dst_pos = 0,
> dst_pos_byte = 0,
> dst_bytes = 0,
> dst_object = 0,
> destination = 0x0,
> charbuf = 0x0,
> charbuf_size = 0,
> charbuf_used = 0,
> chars_at_source = false,
> raw_destination = false,
> annotated = false,
> carryover = '\000' <repeats 63 times>,
> carryover_bytes = 0,
> default_char = 0,
> detector = 0x0,
> decoder = 0x0,
> encoder = 0x0
> }
> #13 0x000000000054c0bb in Ffuncall (nargs=2,
> args=args@entry=0x7fffffffd5d8) at eval.c:2827
> fun = 8504725
> original_fun = <optimized out>
> numargs = <optimized out>
> val = <optimized out>
> internal_args = 0x7fffffffd510
> i = <optimized out>
> #14 0x00000000005919a3 in exec_byte_code (bytestr=<optimized out>,
> vector=12772597, maxdepth=<optimized out>, args_template=<optimized
> out>, nargs=nargs@entry=0, args=args@entry=0x0) at bytecode.c:916
> targets = {0x591b40 <exec_byte_code+1232>, 0x5932a8
> <exec_byte_code+7224>, 0x5932b0 <exec_byte_code+7232>, 0x5932b8
> <exec_byte_code+7240>, 0x5918f0 <exec_byte_code+640>, 0x5918f0
> <exec_byte_code+640>, 0x591bf8 <exec_byte_code+1416>, 0x591c48
> <exec_byte_code+1496>, 0x591cd0 <exec_byte_code+1632>, 0x591cc8
> <exec_byte_code+1624>, 0x591b90 <exec_byte_code+1312>, 0x591cd8
> <exec_byte_code+1640>, 0x591ac8 <exec_byte_code+1112>, 0x591ad0
> <exec_byte_code+1120>, 0x593340 <exec_byte_code+7376>, 0x591bd0
> <exec_byte_code+1376>, 0x591ce0 <exec_byte_code+1648>, 0x593120
> <exec_byte_code+6832>, 0x593620 <exec_byte_code+8112>, 0x593168
> <exec_byte_code+6904>, 0x591a50 <exec_byte_code+992>, 0x591a50
> <exec_byte_code+992>, 0x593460 <exec_byte_code+7664>, 0x593128
> <exec_byte_code+6840>, 0x593198 <exec_byte_code+6952>, 0x5931a0
> <exec_byte_code+6960>, 0x5931f8 <exec_byte_code+7048>, 0x5931a8
> <exec_byte_code+6968>, 0x591930 <exec_byte_code+704>, 0x591930
> <exec_byte_code+704>, 0x593150 <exec_byte_code+6880>, 0x593170
> <exec_byte_code+6912>, 0x5931f0 <exec_byte_code+7040>, 0x593200
> <exec_byte_code+7056>, 0x593208 <exec_byte_code+7064>, 0x591ca8
> <exec_byte_code+1592>, 0x591978 <exec_byte_code+776>, 0x591980
> <exec_byte_code+784>, 0x5931b0 <exec_byte_code+6976>, 0x5931c8
> <exec_byte_code+7000>, 0x593240 <exec_byte_code+7120>, 0x593238
> <exec_byte_code+7112>, 0x593248 <exec_byte_code+7128>, 0x591b98
> <exec_byte_code+1320>, 0x5919c8 <exec_byte_code+856>, 0x5919d0
> <exec_byte_code+864>, 0x591cb0 <exec_byte_code+1600>, 0x593210
> <exec_byte_code+7072>, 0x592c40 <exec_byte_code+5584>, 0x592ad0
> <exec_byte_code+5216>, 0x593298 <exec_byte_code+7208>, 0x591b40
> <exec_byte_code+1232>, 0x591b40 <exec_byte_code+1232>, 0x591b40
> <exec_byte_code+1232>, 0x591b40 <exec_byte_code+1232>, 0x591b40
> <exec_byte_code+1232>, 0x5921a0 <exec_byte_code+2864>, 0x592918
> <exec_byte_code+4776>, 0x592960 <exec_byte_code+4848>, 0x592800
> <exec_byte_code+4496>, 0x592850 <exec_byte_code+4576>, 0x5934c0
> <exec_byte_code+7760>, 0x5933d8 <exec_byte_code+7528>, 0x5928a0
> <exec_byte_code+4656>, 0x593478 <exec_byte_code+7688>, 0x593418
> <exec_byte_code+7592>, 0x5928d8 <exec_byte_code+4712>, 0x592620
> <exec_byte_code+4016>, 0x592650 <exec_byte_code+4064>, 0x592690
> <exec_byte_code+4128>, 0x5926c8 <exec_byte_code+4184>, 0x592750
> <exec_byte_code+4320>, 0x592780 <exec_byte_code+4368>, 0x5927c0
> <exec_byte_code+4432>, 0x592238 <exec_byte_code+3016>, 0x592268
> <exec_byte_code+3064>, 0x592298 <exec_byte_code+3112>, 0x5922d8
> <exec_byte_code+3176>, 0x592318 <exec_byte_code+3240>, 0x592358
> <exec_byte_code+3304>, 0x5923a0 <exec_byte_code+3376>, 0x5923d8
> <exec_byte_code+3432>, 0x592410 <exec_byte_code+3488>, 0x592498
> <exec_byte_code+3624>, 0x5924d8 <exec_byte_code+3688>, 0x592518
> <exec_byte_code+3752>, 0x5925e0 <exec_byte_code+3952>, 0x592560
> <exec_byte_code+3824>, 0x5925a0 <exec_byte_code+3888>, 0x5929a8
> <exec_byte_code+4920>, 0x5929f0 <exec_byte_code+4992>, 0x592a28
> <exec_byte_code+5048>, 0x592a60 <exec_byte_code+5104>, 0x593b80
> <exec_byte_code+9488>, 0x593bb8 <exec_byte_code+9544>, 0x593bf0
> <exec_byte_code+9600>, 0x5939e0 <exec_byte_code+9072>, 0x591a18
> <exec_byte_code+936>, 0x593a20 <exec_byte_code+9136>, 0x593a50
> <exec_byte_code+9184>, 0x593ad0 <exec_byte_code+9312>, 0x593b10
> <exec_byte_code+9376>, 0x593b50 <exec_byte_code+9440>, 0x593660
> <exec_byte_code+8176>, 0x593690 <exec_byte_code+8224>, 0x5936c0
> <exec_byte_code+8272>, 0x5936f8 <exec_byte_code+8328>, 0x591b40
> <exec_byte_code+1232>, 0x593730 <exec_byte_code+8384>, 0x593760
> <exec_byte_code+8432>, 0x593790 <exec_byte_code+8480>, 0x5937c0
> <exec_byte_code+8528>, 0x5937f0 <exec_byte_code+8576>, 0x593820
> <exec_byte_code+8624>, 0x591a18 <exec_byte_code+936>, 0x591b40
> <exec_byte_code+1232>, 0x593850 <exec_byte_code+8672>, 0x593890
> <exec_byte_code+8736>, 0x5938c0 <exec_byte_code+8784>, 0x5938f0
> <exec_byte_code+8832>, 0x593930 <exec_byte_code+8896>, 0x593970
> <exec_byte_code+8960>, 0x592f30 <exec_byte_code+6336>, 0x593008
> <exec_byte_code+6552>, 0x594090 <exec_byte_code+10784>, 0x5940d0
> <exec_byte_code+10848>, 0x593048 <exec_byte_code+6616>, 0x593078
> <exec_byte_code+6664>, 0x591b40 <exec_byte_code+1232>, 0x5935d0
> <exec_byte_code+8032>, 0x591ce8 <exec_byte_code+1656>, 0x593358
> <exec_byte_code+7400>, 0x591d80 <exec_byte_code+1808>, 0x591e30
> <exec_byte_code+1984>, 0x591ea8 <exec_byte_code+2104>, 0x593250
> <exec_byte_code+7136>, 0x5935a8 <exec_byte_code+7992>, 0x593628
> <exec_byte_code+8120>, 0x593508 <exec_byte_code+7832>, 0x593540
> <exec_byte_code+7888>, 0x592a98 <exec_byte_code+5160>, 0x592c00
> <exec_byte_code+5520>, 0x592c70 <exec_byte_code+5632>, 0x592cc8
> <exec_byte_code+5720>, 0x592d10 <exec_byte_code+5792>, 0x592140
> <exec_byte_code+2768>, 0x591ba0 <exec_byte_code+1328>, 0x5930a8
> <exec_byte_code+6712>, 0x5930f0 <exec_byte_code+6784>, 0x593e48
> <exec_byte_code+10200>, 0x593e78 <exec_byte_code+10248>, 0x593ea8
> <exec_byte_code+10296>, 0x593ed8 <exec_byte_code+10344>, 0x593f18
> <exec_byte_code+10408>, 0x593f58 <exec_byte_code+10472>, 0x593f98
> <exec_byte_code+10536>, 0x593fd8 <exec_byte_code+10600>, 0x593c60
> <exec_byte_code+9712>, 0x593ca0 <exec_byte_code+9776>, 0x593ce0
> <exec_byte_code+9840>, 0x593d10 <exec_byte_code+9888>, 0x593d50
> <exec_byte_code+9952>, 0x593d90 <exec_byte_code+10016>, 0x593dd0
> <exec_byte_code+10080>, 0x593e10 <exec_byte_code+10144>, 0x593c28
> <exec_byte_code+9656>, 0x5939a0 <exec_byte_code+9008>, 0x5932c0
> <exec_byte_code+7248>, 0x593308 <exec_byte_code+7320>, 0x591b40
> <exec_byte_code+1232>, 0x591f50 <exec_byte_code+2272>, 0x591fd0
> <exec_byte_code+2400>, 0x592038 <exec_byte_code+2504>, 0x5920d0
> <exec_byte_code+2656>, 0x592e98 <exec_byte_code+6184>, 0x592700
> <exec_byte_code+4240>, 0x592448 <exec_byte_code+3544>, 0x593a80
> <exec_byte_code+9232>, 0x592d60 <exec_byte_code+5872>, 0x592db0
> <exec_byte_code+5952>, 0x591b40 <exec_byte_code+1232>, 0x591b40
> <exec_byte_code+1232>, 0x592e10 <exec_byte_code+6048>, 0x591b40
> <exec_byte_code+1232>, 0x591b40 <exec_byte_code+1232>, 0x591b40
> <exec_byte_code+1232>, 0x591b40 <exec_byte_code+1232>, 0x591b40
> <exec_byte_code+1232>, 0x591b40 <exec_byte_code+1232>, 0x591b40
> <exec_byte_code+1232>, 0x591b40 <exec_byte_code+1232>, 0x591b40
> <exec_byte_code+1232>, 0x592e60 <exec_byte_code+6128> <repeats 64 times>}
> count = 28
> op = <optimized out>
> vectorp = 0xc2e4f8
> stack = {
> pc = 0xc1b79b "\210)\016)\203w",
> byte_string = 12768529,
> byte_string_start = 0xc1b738 "\306\b!\204\022",
> next = 0x0
> }
> top = 0x7fffffffd5d8
> result = <optimized out>
> type = <optimized out>
> #15 0x000000000054b832 in funcall_lambda (fun=fun@entry=12772957,
> nargs=nargs@entry=4, arg_vector=arg_vector@entry=0x7fffffffd7c8) at
> eval.c:3044
> val = <optimized out>
> syms_left = 12122994
> lexenv = 12122994
> i = <optimized out>
> optional = <optimized out>
> rest = <optimized out>
> #16 0x000000000054bdc8 in Ffuncall (nargs=nargs@entry=5,
> args=args@entry=0x7fffffffd7c0) at eval.c:2872
> fun = 12772957
> original_fun = 12592146
> numargs = 4
> val = <optimized out>
> internal_args = <optimized out>
> i = <optimized out>
> #17 0x000000000054c299 in call4 (fn=<optimized out>, arg1=<optimized
> out>, arg2=<optimized out>, arg3=<optimized out>, arg4=<optimized out>)
> at eval.c:2659
> ret_ungc_val = 140737488274800
> gcpro1 = {
> next = <optimized out>,
> var = <optimized out>,
> nvars = 5
> }
> args = {12592146, 13993041, 13993041, 12122994, 12122994}
> #18 0x000000000057e0c7 in Fload (file=1, noerror=140737488276144,
> nomessage=140737488275040, nosuffix=13993041, must_suffix=5) at
> lread.c:1305
> val = 140737488274800
> stream = 0x5
> fd = 5
> found = 13993041
> efound = 7
> hist_file_name = 13993041
> handler = 140737488274800
> safe_p = 114
> #19 0x000000000054aea5 in eval_sub (form=form@entry=12096582) at
> eval.c:2195
> numargs = <optimized out>
> args_left = 12122994
> i = <optimized out>
> maxargs = 5
> argvals = {13994081, 12122994, 12122994, 12122994, 12122994,
> 17, 4268070197446523707, 4268070197446523707}
> fun = 11410973
> val = <optimized out>
> original_args = 12096390
> gcpro3 = {
> next = <optimized out>,
> var = 0x7fffffffdb50,
> nvars = <optimized out>
> }
> #20 0x00000000005500b9 in internal_lisp_condition_case (var=<optimized
> out>, bodyform=12096582, handlers=<optimized out>) at eval.c:1317
> val = <optimized out>
> c = <optimized out>
> oldhandlerlist = 0xbd06b0
> clausenb = <optimized out>
> #21 0x000000000054af52 in eval_sub (form=form@entry=12096614) at
> eval.c:2131
> numargs = <optimized out>
> args_left = 12096598
> i = <optimized out>
> maxargs = <optimized out>
> argvals = {14206241, 12122994, 12241554, 5731783, 12122994,
> 12241554, 0, 5736763}
> fun = 11402901
> val = <optimized out>
> original_args = 12096598
> gcpro3 = <optimized out>
> #22 0x000000000057d53e in readevalloop (readcharfun=12241554,
> stream=0xbd07e0, sourcename=12386241, printflag=false,
> unibyte=<optimized out>, readfun=12122994, start=12122994, end=12122994)
> at lread.c:1934
> c = <optimized out>
> val = 12096614
> b = 0x0
> continue_reading_p = true
> lex_bound = <optimized out>
> whole_buffer = false
> first_sexp = <optimized out>
> macroexpand = 12122994
> #23 0x000000000057e462 in Fload (file=1, noerror=140737488276144,
> nomessage=140737488275040, nosuffix=12386241, must_suffix=12388320) at
> lread.c:1363
> stream = 0xbd07e0
> fd = 12388320
> found = 12386177
> efound = 7
> hist_file_name = 12386241
> handler = 140737488274800
> safe_p = true
> #24 0x000000000054aea5 in eval_sub (form=form@entry=12378326) at
> eval.c:2195
> numargs = <optimized out>
> args_left = 12122994
> i = <optimized out>
> maxargs = 5
> argvals = {12385985, 12122994, 12122994, 12122994, 12122994, 0,
> 0, 223338299411}
> fun = 11410973
> val = <optimized out>
> original_args = 12378310
> gcpro3 = {
> next = <optimized out>,
> var = 0x7fffffffe110,
> nvars = <optimized out>
> }
> #25 0x000000000054e10f in Feval (form=12378326, lexical=<optimized out>)
> at eval.c:1996
> No locals.
> #26 0x0000000000549ec7 in internal_condition_case
> (bfun=bfun@entry=0x4b7830 <top_level_2>, handlers=<optimized out>,
> hfun=hfun@entry=0x4bb760 <cmd_error>) at eval.c:1348
> val = <optimized out>
> c = <optimized out>
> #27 0x00000000004b7816 in top_level_1 (ignore=ignore@entry=12122994) at
> keyboard.c:1195
> No locals.
> #28 0x0000000000549dab in internal_catch (tag=12170210,
> func=func@entry=0x4b77b0 <top_level_1>, arg=12122994) at eval.c:1112
> val = <optimized out>
> c = <optimized out>
> #29 0x00000000004bd1af in command_loop () at keyboard.c:1156
> No locals.
> #30 recursive_edit_1 () at keyboard.c:778
> val = 140737488348168
> #31 0x00000000004bd350 in Frecursive_edit () at keyboard.c:849
> buffer = <optimized out>
> #32 0x0000000000407c76 in main (argc=12385985, argv=0x7fffffffe408) at
> emacs.c:1642
> dummy = 140737353917640
> stack_bottom_variable = -11 '\365'
> skip_args = 3
> rlim = {
> rlim_cur = 8720000,
> rlim_max = 18446744073709551615
> }
> junk = 0x0
> dname_arg = 0x0
> ch_to_dir = 0x0
> gdb /mnt/new/src/emacs-24.5 quit
>
>
>
>
>
> On 13.04.2015 00:58, Paul Eggert wrote:
>> I don't observe this problem on Fedora 21 x86-64, when configuring
>> similar to the way you did:
>>
>> ./configure CFLAGS='-m32' --with-kerberos5 --with-wide-int --without-x
>>
>> Could you give more details about your platform? In particular, I'm
>> puzzled about the "CFLAGS='-pipe -O3 -fno-fat-lto-objects -flto
>> -mssse3'" and the "LDFLAGS='-Wl,-O1 -Wl,-z,relro -Wl,-S'" settings, if
>> all you ran was "./configure --with-kerberos5 --with-wide-int
>> --without-x" and "make". As far as I can see, the Emacs 24.5 source
>> code does not specify -pipe, or -O3, or -mssse3, or -flto and
>> -ffat-lto-objects (unless you configure with
>> --enable-link-time-optimization), or -Wl,-z,relro, etc. If your build
>> system is specifying those options, I suggest bypassing it and building
>> Emacs without the extra options; then you can turn the options on one at
>> a time and see which one is causing your problem.
>>
>>> The problem is the variable RUN_TEMACS in src/Makefile(.in), which is
>>> "./temacs", but shall be the path to temacs, relative to the build-root.
>>
>> I don't see why this is the problem. Your build is trying to run
>> ./temacs and ./temacs is dumping core with an illegal instruction. This
>> sounds like a bug, regardless of how temacs was invoked.
>>
>> Also, can you build the Emacs master branch? Please try:
>>
>> git clone git://git.savannah.gnu.org/emacs.git
>> cd emacs
>> ./autogen.sh
>> ./configure
>> make
>>
>> If this works for you, then your bug is probably fixed already in
>> Emacs 25.
^ permalink raw reply [flat|nested] 5+ messages in thread
* bug#20297: compiling emacs 24.5 (src/Makefile and RUN_TEMACS)
2015-04-13 11:42 ` Дилян Палаузов
@ 2015-04-13 14:06 ` Paul Eggert
0 siblings, 0 replies; 5+ messages in thread
From: Paul Eggert @ 2015-04-13 14:06 UTC (permalink / raw)
To: 20297-done
Дилян Палаузов wrote:
> the problem was in the -mssse3 C-flag
Thanks, closing the bug.
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2015-04-13 14:06 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-04-10 20:36 bug#20297: compiling emasc 24.5 (src/Makefile and RUN_TEMACS) Дилян Палаузов
2015-04-12 22:58 ` bug#20297: compiling emacs " Paul Eggert
2015-04-13 11:05 ` Дилян Палаузов
2015-04-13 11:42 ` Дилян Палаузов
2015-04-13 14:06 ` Paul Eggert
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.