diff --git a/doc/Glossary-Concise.txt b/doc/Glossary-Concise.txt
index 331898b..06f42ad 100644
--- a/doc/Glossary-Concise.txt
+++ b/doc/Glossary-Concise.txt
@@ -868,15 +868,24 @@ Given a file name, open it and run the quote once for each line in the file.
file:open D: sm-h A: - F: -
Open a named file (s) with the given mode (m). Returns a handle identifying the file.
-file:open D: s-nn A: - F: -
+file:open-for-append D: s-nn A: - F: -
Open a file for reading & writing. Returns the size (NOS) and a file ID (TOS)
-file:open D: s-nn A: - F: -
+file:open-for-reading D: s-nn A: - F: -
Open a file for reading. Returns the size (NOS) and a file ID (TOS)
-file:open D: s-n A: - F: -
+file:open-for-writing D: s-n A: - F: -
Open a file for writing. Returns the file ID
+file:open D: s-nn A: - F: -
+Open a file for reading & writing. Returns the size (NOS) and a file ID (TOS). Deprecated.
+
+file:open D: s-nn A: - F: -
+Open a file for reading. Returns the size (NOS) and a file ID (TOS). Deprecated.
+
+file:open D: s-n A: - F: -
+Open a file for writing. Returns the file ID. Deprecated.
+
file:read D: h-c A: - F: -
Given a file handle, read and return the next character in it.
diff --git a/doc/Glossary-Names-and-Stack.txt b/doc/Glossary-Names-and-Stack.txt
index 417caaf..c85ce0e 100644
--- a/doc/Glossary-Names-and-Stack.txt
+++ b/doc/Glossary-Names-and-Stack.txt
@@ -288,6 +288,9 @@ file:exists? D: s-f A: - F: -
file:flush D: h- A: - F: -
file:for-each-line D: sq- A: - F: -
file:open D: sm-h A: - F: -
+file:open-for-append D: s-nn A: - F: -
+file:open-for-reading D: s-nn A: - F: -
+file:open-for-writing D: s-n A: - F: -
file:open D: s-nn A: - F: -
file:open D: s-nn A: - F: -
file:open D: s-n A: - F: -
diff --git a/doc/Glossary.html b/doc/Glossary.html
index 51445df..4cf2e06 100644
--- a/doc/Glossary.html
+++ b/doc/Glossary.html
@@ -2164,27 +2164,48 @@
'/etc/motd file:R file:open
-file:open<for-append>
+file:open-for-append
Data: s-nn
Addr: -
Float: -
Open a file for reading & writing. Returns the size (NOS) and a file ID (TOS)
Class: | class:word |
Namespace: | file |
Interface Layer: | rre |
-file:open<for-reading>
+file:open-for-reading
Data: s-nn
Addr: -
Float: -
Open a file for reading. Returns the size (NOS) and a file ID (TOS)
Class: | class:word |
Namespace: | file |
Interface Layer: | rre |
-file:open<for-writing>
+file:open-for-writing
Data: s-n
Addr: -
Float: -
Open a file for writing. Returns the file ID
Class: | class:word |
Namespace: | file |
Interface Layer: | rre |
+file:open<for-append>
+Data: s-nn
+Addr: -
+Float: -
+
+Open a file for reading & writing. Returns the size (NOS) and a file ID (TOS). Deprecated.
+Class: | class:word |
Namespace: | file |
Interface Layer: | rre |
+file:open<for-reading>
+Data: s-nn
+Addr: -
+Float: -
+
+Open a file for reading. Returns the size (NOS) and a file ID (TOS). Deprecated.
+Class: | class:word |
Namespace: | file |
Interface Layer: | rre |
+file:open<for-writing>
+Data: s-n
+Addr: -
+Float: -
+
+Open a file for writing. Returns the file ID. Deprecated.
+Class: | class:word |
Namespace: | file |
Interface Layer: | rre |
file:read
Data: h-c
Addr: -
@@ -3805,7 +3826,7 @@
Create a variable with the specified initial value.
Class: | class:word |
Namespace: | global |
Interface Layer: | all |
Example:
-
#10 'Base var
+ #10 'Base var-n
@@ -3817,7 +3838,7 @@
Create a variable with the specified initial value. Deprecated. Use `var-n` instead.
Class: | class:word |
Namespace: | global |
Interface Layer: | all |
Example:
-
#10 'Base var
+ #10 'Base var-n
diff --git a/doc/Glossary.txt b/doc/Glossary.txt
index 6d2e3c4..e793aff 100644
--- a/doc/Glossary.txt
+++ b/doc/Glossary.txt
@@ -3350,7 +3350,7 @@ Example #1:
------------------------------------------------------------------------
-file:open
+file:open-for-append
Data: s-nn
Addr: -
@@ -3361,7 +3361,7 @@ Open a file for reading & writing. Returns the size (NOS) and a file ID (TOS)
Class: class:word | Namespace: file | Interface Layer: rre
------------------------------------------------------------------------
-file:open
+file:open-for-reading
Data: s-nn
Addr: -
@@ -3372,7 +3372,7 @@ Open a file for reading. Returns the size (NOS) and a file ID (TOS)
Class: class:word | Namespace: file | Interface Layer: rre
------------------------------------------------------------------------
-file:open
+file:open-for-writing
Data: s-n
Addr: -
@@ -3383,6 +3383,39 @@ Open a file for writing. Returns the file ID
Class: class:word | Namespace: file | Interface Layer: rre
------------------------------------------------------------------------
+file:open
+
+ Data: s-nn
+ Addr: -
+ Float: -
+
+Open a file for reading & writing. Returns the size (NOS) and a file ID (TOS). Deprecated.
+
+Class: class:word | Namespace: file | Interface Layer: rre
+------------------------------------------------------------------------
+
+file:open
+
+ Data: s-nn
+ Addr: -
+ Float: -
+
+Open a file for reading. Returns the size (NOS) and a file ID (TOS). Deprecated.
+
+Class: class:word | Namespace: file | Interface Layer: rre
+------------------------------------------------------------------------
+
+file:open
+
+ Data: s-n
+ Addr: -
+ Float: -
+
+Open a file for writing. Returns the file ID. Deprecated.
+
+Class: class:word | Namespace: file | Interface Layer: rre
+------------------------------------------------------------------------
+
file:read
Data: h-c
@@ -5838,7 +5871,7 @@ Class: class:word | Namespace: global | Interface Layer: all
Example #1:
- #10 'Base var
+ #10 'Base var-n
------------------------------------------------------------------------
@@ -5855,7 +5888,7 @@ Class: class:word | Namespace: global | Interface Layer: all
Example #1:
- #10 'Base var
+ #10 'Base var-n
------------------------------------------------------------------------
diff --git a/doc/words.tsv b/doc/words.tsv
index c9b82d3..8358ae7 100644
--- a/doc/words.tsv
+++ b/doc/words.tsv
@@ -288,9 +288,12 @@ file:exists? s-f - - Given a file name, return `TRUE` if it exists or `FALSE` if
file:flush h- - - Given a file handle, flush any pending writes to disk. class:word {n/a} {n/a} file rre
file:for-each-line sq- - - Given a file name, open it and run the quote once for each line in the file. class:word {n/a} {n/a} file rre
file:open sm-h - - Open a named file (s) with the given mode (m). Returns a handle identifying the file. class:word '/etc/motd file:R file:open {n/a} file rre
-file:open s-nn - - Open a file for reading & writing. Returns the size (NOS) and a file ID (TOS) class:word {n/a} {n/a} file rre
-file:open s-nn - - Open a file for reading. Returns the size (NOS) and a file ID (TOS) class:word {n/a} {n/a} file rre
-file:open s-n - - Open a file for writing. Returns the file ID class:word {n/a} {n/a} file rre
+file:open-for-append s-nn - - Open a file for reading & writing. Returns the size (NOS) and a file ID (TOS) class:word {n/a} {n/a} file rre
+file:open-for-reading s-nn - - Open a file for reading. Returns the size (NOS) and a file ID (TOS) class:word {n/a} {n/a} file rre
+file:open-for-writing s-n - - Open a file for writing. Returns the file ID class:word {n/a} {n/a} file rre
+file:open s-nn - - Open a file for reading & writing. Returns the size (NOS) and a file ID (TOS). Deprecated. class:word {n/a} {n/a} file rre
+file:open s-nn - - Open a file for reading. Returns the size (NOS) and a file ID (TOS). Deprecated. class:word {n/a} {n/a} file rre
+file:open s-n - - Open a file for writing. Returns the file ID. Deprecated. class:word {n/a} {n/a} file rre
file:read h-c - - Given a file handle, read and return the next character in it. class:word {n/a} {n/a} file rre
file:read-line f-s - - Given a file handle, read a line and return a pointer to it. class:word {n/a} {n/a} file rre
file:seek nh- - - Move the current offset into a file to the specified one. class:word {n/a} {n/a} file rre
@@ -491,8 +494,8 @@ v:on a- - - Set a variable to -1. class:word {n/a} {n/a} v all
v:preserve aq- - - Make a copy of the value at the address, then run the quote. Once the quote completes, restore the address to the specified value. class:word {n/a} {n/a} v all
v:update aq- - - Fetch a value from the specified address, then run the quotation with this value on the stack. Afterwards, store the returned value at the original address. class:word {n/a} {n/a} v all
var s- - - Create a variable. The variable is initialized to 0. class:word 'Base var {n/a} global all
-var-n ns- - - Create a variable with the specified initial value. class:word #10 'Base var\n {n/a} global all
-var ns- - - Create a variable with the specified initial value. Deprecated. Use `var-n` instead. class:word #10 'Base var\n {n/a} global all
+var-n ns- - - Create a variable with the specified initial value. class:word #10 'Base var-n\n {n/a} global all
+var ns- - - Create a variable with the specified initial value. Deprecated. Use `var-n` instead. class:word #10 'Base var-n\n {n/a} global all
while q- - - Execute quote repeatedly while the quote returns a `TRUE` value. The quote should return a flag of either `TRUE` or `FALSE`, though `while` will treat any non-zero value as `TRUE`. class:word #10 [ dup n:put nl n:dec dup n:-zero? ] while {n/a} global all
xor mn-o - - Perform a bitwise XOR operation. class:primitive {n/a} {n/a} global all
{ - - - Begin an array. This is intended to make creating arrays a bit cleaner than using a quotation and `a:counted-results`. class:word {n/a} {n/a} global all
diff --git a/example/socket-client.retro b/example/socket-client.retro
index 14586c6..3acd558 100644
--- a/example/socket-client.retro
+++ b/example/socket-client.retro
@@ -3,8 +3,8 @@ This uses the new `socket:` words to download a file via Gopher.
Open a file to store the data and a socket.
~~~
-'Output.txt file:open 'File var
-socket:create dup n:put nl 'Sock var
+'Output.txt file:open-for-writing 'File var-n
+socket:create dup n:put nl 'Sock var-n
~~~
Connect to the server.
diff --git a/example/socket-server.retro b/example/socket-server.retro
index 152a6ff..f04e3b5 100644
--- a/example/socket-server.retro
+++ b/example/socket-server.retro
@@ -1,7 +1,7 @@
Get a socket.
~~~
-socket:create 'Sock var
+socket:create 'Sock var-n
~~~
Bind to port 9998.
diff --git a/example/strip-html.retro b/example/strip-html.retro
index 46a648e..f0bf731 100644
--- a/example/strip-html.retro
+++ b/example/strip-html.retro
@@ -8,7 +8,7 @@ may serve as a starting point for something more useful later on.
'Tag d:create #1025 allot
'In-Tag var
-#0 sys:argv file:open swap
+#0 sys:argv file:open-for-reading swap
[ dup file:read
$< [ &Tag buffer:set &In-Tag v:on ] case
$> [ &Tag 'head [ here buffer:set ] s:case
diff --git a/example/words-four-column.retro b/example/words-four-column.retro
index 906e616..75ded71 100644
--- a/example/words-four-column.retro
+++ b/example/words-four-column.retro
@@ -6,7 +6,7 @@ name, updating a column counter and adding newlines when needed.
~~~
{{
- #3 'Columns var
+ #3 'Columns var-n
'PadTo var
:determine-padding
#0 [ d:name s:length n:max ] d:for-each !PadTo ;
diff --git a/example/wordwrap.retro b/example/wordwrap.retro
index 40b2745..859afca 100644
--- a/example/wordwrap.retro
+++ b/example/wordwrap.retro
@@ -2,14 +2,14 @@ This implements a variation of `s:put` which wraps text based
on a maximum width set by the user.
~~~
-#80 'WrapAt var
+#80 'WrapAt var-n
{{
'Displayed var
:wrap? dup @Displayed + @WrapAt gt? ;
:display [ nl !Displayed ] [ &Displayed v:inc-by ] choose s:put sp ;
---reveal---
- :s:put (s-)
+ :s:put-wrapped (s-)
#0 !WrapAt
&Heap [ ASCII:SPACE s:tokenize [ dup s:length wrap? display ] a:for-each ] v:preserve ;
}}
diff --git a/interface/filesystem.retro b/interface/filesystem.retro
index 9f1db90..edf2832 100644
--- a/interface/filesystem.retro
+++ b/interface/filesystem.retro
@@ -108,6 +108,15 @@ Given a file name, return `TRUE` if it exists or `FALSE` otherwise.
:file:open (s-n)
file:W file:open ;
+
+:file:open-for-reading (s-nn)
+ file:R file:open dup file:size swap ;
+
+:file:open-for-append (s-nn)
+ file:A file:open dup file:size swap ;
+
+:file:open-for-writing (s-n)
+ file:W file:open ;
~~~
With that out of the way, we can begin building higher level functionality.
@@ -140,7 +149,7 @@ once for each line in a file. This makes some things trivial. E.g., a simple
:file:for-each-line (sq-)
[ !Action
- file:open !FID !Size
+ file:open-for-reading !FID !Size
[ @FID file:read-line @Action call -eof? ] while
@FID file:close
] preserve ;
@@ -154,7 +163,7 @@ once for each line in a file. This makes some things trivial. E.g., a simple
'FID var
---reveal---
:file:slurp (as-)
- [ swap buffer:set file:open !FID
+ [ swap buffer:set file:open-for-reading !FID
[ @FID file:read buffer:add ] times
@FID file:close
] buffer:preserve ;
@@ -165,5 +174,5 @@ once for each line in a file. This makes some things trivial. E.g., a simple
~~~
:file:spew (ss-)
- file:open swap [ over file:write ] s:for-each file:close ;
+ file:open-for-writing swap [ over file:write ] s:for-each file:close ;
~~~
diff --git a/vm/nga-c-native-x86/image.c b/vm/nga-c-native-x86/image.c
index 7b7de28..2df87d3 100644
--- a/vm/nga-c-native-x86/image.c
+++ b/vm/nga-c-native-x86/image.c
@@ -2,16 +2,16 @@
#ifndef CELL
#define CELL int32_t
#endif
-CELL ngaImageCells = 13827;
-CELL ngaImage[] = { 1793,13738,13728,13826,202007,0,10,1,10,2,10,3,10,4,10,5,10,6,10,
+CELL ngaImageCells = 13789;
+CELL ngaImage[] = { 1793,13700,13690,13788,202007,0,10,1,10,2,10,3,10,4,10,5,10,6,10,
7,10,8,10,9,10,10,11,10,12,10,13,10,14,10,15,10,16,10,17,
10,18,10,19,10,20,10,21,10,22,10,23,10,24,10,25,10,68223234,1,2575,
- 85000450,1,656912,3215,3224,268505089,63,62,135205121,63,10,101384453,0,9,10,2049,56,25,459011,74,
+ 85000450,1,656912,3211,3220,268505089,63,62,135205121,63,10,101384453,0,9,10,2049,56,25,459011,74,
524546,74,302256641,1,10,16974595,0,50529798,10,25,524547,93,50529798,10,17108738,1,251790353,101777669,1,17565186,
84,524545,88,64,167838467,-1,134287105,3,59,659457,3,459023,105,2049,56,25,2049,105,1793,112,
2049,112,117506307,0,105,0,524545,25,110,168820993,0,124,1642241,124,134283523,7,110,1793,105,7,
524545,2049,105,1793,105,16846593,124,139,138,1793,64,16846593,124,110,138,1793,64,7,10,659713,
- 1,659713,2,659713,3,17108737,3,2,524559,105,2049,105,2049,105,2049,119,168820998,2,3200,1025,
+ 1,659713,2,659713,3,17108737,3,2,524559,105,2049,105,2049,105,2049,119,168820998,2,3196,1025,
167841793,177,5,17826049,0,177,2,15,25,524546,162,134287105,178,93,2305,179,459023,187,134287361,178,
182,659201,177,2049,56,25,84152833,48,286458116,10,459014,202,184618754,45,25,16974851,-1,168886532,1,134284289,
1,211,134284289,0,202,660227,32,0,0,112,114,101,102,105,120,58,125,0,285278479,228,
@@ -19,7 +19,7 @@ CELL ngaImage[] = { 1793,13738,13728,13826,202007,0,10,1,10,2,10,3,10,4,10,5,10,
2049,218,1793,131,459023,131,17760513,144,3,164,8,251727617,3,2,2049,158,16,168820993,-1,124,
2049,197,2049,158,459023,131,285282049,3,2,134287105,124,276,524545,1793,105,16846593,3,0,105,8,
659201,3,524545,25,110,17043201,3,7,2049,110,2049,105,268505092,124,1642241,124,656131,659201,3,524545,
- 7,110,2049,105,459009,19,110,459009,54,110,459009,15,110,459009,17,110,1793,13794,10,524546,
+ 7,110,2049,105,459009,19,110,459009,54,110,459009,15,110,459009,17,110,1793,13756,10,524546,
158,134284303,160,1807,1025,0,0,1642241,227,285282049,343,1,459012,338,117509889,177,338,134287105,343,197,
16845825,0,353,335,1793,64,1793,367,17826050,343,247,8,117506305,344,356,64,2116,11340,11700,11400,
13685,13104,12432,12402,9603,9801,11514,11413,11110,12528,11948,10302,13340,9700,13455,12753,10500,10670,12654,13320,
@@ -81,448 +81,446 @@ CELL ngaImage[] = { 1793,13738,13728,13826,202007,0,10,1,10,2,10,3,10,4,10,5,10,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,997,1543,144,
69,79,77,0,1,-3,15,10,1536,1556,144,100,101,112,116,104,0,1,-1,15,
- 10,1547,1570,144,100,58,108,97,115,116,0,1,2,15,10,1560,1588,144,100,58,
- 108,97,115,116,60,120,116,62,0,2049,1570,2049,158,15,10,1574,1611,144,100,58,
- 108,97,115,116,60,99,108,97,115,115,62,0,2049,1570,2049,160,15,10,1594,1633,
- 144,100,58,108,97,115,116,60,110,97,109,101,62,0,2049,1570,2049,162,10,1617,
- 1649,144,114,101,99,108,97,115,115,0,2049,1570,2049,160,16,10,1638,1668,144,105,
- 109,109,101,100,105,97,116,101,0,1,156,2049,1649,10,1655,1681,144,100,97,116,
- 97,0,1,131,2049,1649,10,1673,1699,144,112,114,105,109,105,116,105,118,101,0,
- 1,150,2049,1649,10,1686,1709,156,40,0,10,1704,1715,156,41,0,10,1710,1731,144,
- 99,111,109,112,105,108,101,58,108,105,116,0,1,1,2049,105,2049,105,10,1716,
- 1754,144,99,111,109,112,105,108,101,58,106,117,109,112,0,1,1793,2049,105,2049,
- 105,10,1738,1777,144,99,111,109,112,105,108,101,58,99,97,108,108,0,1,2049,
- 2049,105,2049,105,10,1761,1799,144,99,111,109,112,105,108,101,58,114,101,116,0,
- 1,10,2049,105,10,1784,1818,144,99,111,109,112,105,108,105,110,103,63,0,1,
- 124,15,10,1804,1834,156,112,114,101,102,105,120,58,96,0,2049,218,2049,105,10,
- 1822,1851,156,112,114,101,102,105,120,58,92,0,2049,412,10,1839,1866,156,112,114,
- 101,102,105,120,58,94,0,2049,406,10,1854,1877,144,104,101,114,101,0,1,3,
- 15,10,1869,1893,156,112,114,101,102,105,120,58,64,0,2049,197,2049,158,15,2049,
- 1818,1793,1909,1,3841,2049,105,2049,105,10,1,1902,1793,1915,15,10,1,1913,2049,64,
- 10,1881,1932,156,112,114,101,102,105,120,58,33,0,2049,197,2049,158,15,2049,1818,
- 1793,1948,1,4097,2049,105,2049,105,10,1,1941,1793,1954,16,10,1,1952,2049,64,10,
- 1920,1971,144,100,58,99,114,101,97,116,101,0,1,131,1,0,2049,164,2049,1877,
- 2049,1570,2049,158,16,10,1959,1995,144,118,97,114,60,110,62,0,2049,1971,2049,105,
- 10,1985,2007,144,118,97,114,0,134284289,0,1995,10,2000,2020,144,99,111,110,115,116,
- 0,2049,1971,2049,1570,2049,158,16,10,2011,2036,150,116,117,99,107,0,100926722,10,2028,
- 2046,150,111,118,101,114,0,67502597,10,2038,2055,150,110,105,112,0,772,10,2048,2070,
- 150,100,114,111,112,45,112,97,105,114,0,771,10,2057,2080,150,63,100,117,112,
- 0,6402,10,2072,2094,144,100,117,112,45,112,97,105,114,0,67502597,67502597,10,2082,2104,
- 144,100,105,112,0,525572,6,10,2097,2114,144,115,105,112,0,67502597,1,21,2049,2104,
- 10,2107,2126,144,98,105,0,1,2114,2049,2104,8,10,2120,2139,144,98,105,42,0,
- 1,2104,2049,2104,8,10,2132,2152,144,98,105,64,0,2,2049,2139,10,2145,2163,144,
- 116,114,105,0,1793,2172,1,2114,2049,2104,2049,2114,10,1,2165,2049,2104,8,10,2156,
- 2186,144,116,114,105,42,0,1793,2203,1793,2196,4,1,2104,2049,2104,10,1,2190,2049,
- 2104,2049,2104,10,1,2188,2049,2104,8,10,2178,2217,144,116,114,105,64,0,2,2,
- 2049,2186,10,2209,2231,144,119,104,105,108,101,0,1793,2240,525570,1639430,3,1,2233,7,
- 10,1,2233,8,3,10,2222,2254,144,117,110,116,105,108,0,1793,2265,525570,385942534,-1,
- 25,3,1,2256,7,10,1,2256,8,3,10,2245,2279,144,116,105,109,101,115,0,
- 1793,2291,4,25,33886721,1,2053,1542,1,2282,7,10,1,2281,8,3,10,2270,2308,156,
- 112,114,101,102,105,120,58,124,0,2049,197,1793,2316,2049,158,15,10,1,2312,1793,
- 2324,2049,160,15,10,1,2320,2049,2126,2049,1818,1793,2339,1,131,2049,2104,2049,1777,10,
- 1,2332,1,21,2049,64,10,2296,2354,144,84,82,85,69,0,1,-1,10,2346,2366,
- 144,70,65,76,83,69,0,1,0,10,2357,2377,144,99,97,115,101,0,1793,2382,
- 67502597,11,10,1,2379,2049,2104,4,1793,2394,772,8,2049,2354,10,1,2389,1793,2402,3,
- 2049,2366,10,1,2398,2049,64,25,6,3,3,10,2369,2421,144,115,58,99,97,115,
- 101,0,1793,2427,67502597,2049,93,10,1,2423,2049,2104,4,1793,2439,772,8,2049,2354,10,
- 1,2434,1793,2447,3,2049,2366,10,1,2443,2049,64,25,6,3,3,10,2411,2463,144,
- 110,111,116,0,1,-1,23,10,2456,2476,144,108,116,101,113,63,0,2049,2094,101516555,
- 22,10,2467,2490,144,103,116,101,113,63,0,4,2049,2476,10,2481,2503,144,110,58,
- 77,65,88,0,1,-5,15,10,2494,2516,144,110,58,77,73,78,0,1,-4,15,
- 10,2507,2531,144,110,58,122,101,114,111,63,0,1,0,11,10,2520,2547,144,110,
- 58,45,122,101,114,111,63,0,1,0,12,10,2535,2566,144,110,58,110,101,103,
- 97,116,105,118,101,63,0,1,0,13,10,2551,2585,144,110,58,112,111,115,105,
- 116,105,118,101,63,0,1,-1,14,10,2570,2613,144,110,58,115,116,114,105,99,
- 116,108,121,45,112,111,115,105,116,105,118,101,63,0,1,0,14,10,2589,2628,
- 144,110,58,101,118,101,110,63,0,1,2,20,3,2049,2531,10,2617,2645,144,110,
- 58,111,100,100,63,0,2049,2628,2049,2463,10,2635,2657,144,105,102,59,0,67502597,1,
- 72,2049,2104,25,6,771,10,2650,2674,144,45,105,102,59,0,67502597,1,70,2049,2104,
- 2049,2463,25,6,771,10,2666,2692,150,114,111,116,0,67503109,10,2685,2699,150,47,0,
- 197652,10,2694,2708,150,109,111,100,0,788,10,2701,2719,144,110,58,112,111,119,0,
- 1,1,4,1793,2727,67502597,19,10,1,2724,2049,2279,772,10,2710,2745,144,110,58,110,
- 101,103,97,116,101,0,1,-1,19,10,2733,2761,144,110,58,115,113,117,97,114,
- 101,0,4866,10,2749,2773,144,110,58,115,113,114,116,0,1,1,1793,2791,2049,2094,
- 197652,67502597,18,1,2,197652,25,17,1,2777,7,10,1,2777,8,772,10,2763,2805,144,
- 110,58,109,105,110,0,2049,2094,13,1793,2812,3,10,1,2810,1793,2818,772,10,1,
- 2816,2049,64,10,2796,2832,144,110,58,109,97,120,0,2049,2094,14,1793,2839,3,10,
- 1,2837,1793,2845,772,10,1,2843,2049,64,10,2823,2859,144,110,58,97,98,115,0,
- 2,2049,2566,1,2745,9,10,2850,2877,144,110,58,108,105,109,105,116,0,4,5,
- 2049,2805,6,2049,2832,10,2866,2894,144,110,58,105,110,99,0,1,1,17,10,2885,
- 2907,144,110,58,100,101,99,0,1,1,18,10,2898,2925,144,110,58,98,101,116,
- 119,101,101,110,63,0,67503109,1793,2933,67503109,67503109,2049,2877,10,1,2928,2049,2114,11,10,
- 2911,2951,144,118,58,105,110,99,45,98,121,0,1793,2955,4367,10,1,2953,2049,2114,
- 16,10,2939,2973,144,118,58,100,101,99,45,98,121,0,1793,2977,1180687,10,1,2975,
- 2049,2114,16,10,2961,2992,144,118,58,105,110,99,0,1,1,4,2049,2951,10,2983,
- 3007,144,118,58,100,101,99,0,1,1,4,2049,2973,10,2998,3024,144,118,58,108,
- 105,109,105,116,0,251790597,1542,2049,2877,4100,10,3013,3038,144,118,58,111,110,0,2049,
- 2354,4100,10,3030,3051,144,118,58,111,102,102,0,2049,2366,4100,10,3042,3064,144,97,
- 108,108,111,116,0,1,3,2049,2951,10,3055,3083,144,118,58,112,114,101,115,101,
- 114,118,101,0,983556,1793,3091,1,21,2049,2104,10,1,3086,2049,2104,4100,10,3069,3109,
- 144,118,58,117,112,100,97,116,101,0,4,1793,3116,15,4,8,10,1,3112,2049,
- 2114,16,10,3097,3130,144,99,111,112,121,0,1793,3139,285278725,1,33951492,268767489,1,6,10,
- 1,3132,2049,2279,771,10,3122,3158,144,83,99,111,112,101,76,105,115,116,0,13464,
- 13563,10,3145,3167,144,123,123,0,2049,1570,2,1,3158,2049,59,16,10,3161,3192,144,
- 45,45,45,114,101,118,101,97,108,45,45,45,0,2049,1570,1,3158,2049,2894,16,
- 10,3176,3206,144,125,125,0,1,3158,2049,56,4,15,11,1793,3220,3841,3158,4097,2,
- 10,1,3215,1793,3246,3841,3158,1793,3241,1,2,983567,1,3158,2049,2894,1641487,3,1,3230,
- 7,10,1,3228,8,16,10,1,3224,2049,64,10,3200,3260,131,83,116,97,114,116,
- 0,0,10,3251,3269,131,69,110,100,0,0,10,3262,3284,144,116,101,114,109,105,
- 110,97,116,101,0,1,0,3841,3269,16,10,3200,3306,144,98,117,102,102,101,114,
- 58,115,116,97,114,116,0,3841,3260,10,3290,3323,144,98,117,102,102,101,114,58,
- 101,110,100,0,3841,3269,10,3309,3340,144,98,117,102,102,101,114,58,97,100,100,
- 0,3841,3269,16,1,3269,2049,2992,2049,3284,10,3326,3364,144,98,117,102,102,101,114,
- 58,103,101,116,0,1,3269,2049,3007,3841,3269,15,2049,3284,10,3350,3390,144,98,117,
- 102,102,101,114,58,101,109,112,116,121,0,3841,3260,4097,3269,2049,3284,10,3374,3412,
- 144,98,117,102,102,101,114,58,115,105,122,101,0,3841,3269,3841,3260,18,10,3397,
- 3432,144,98,117,102,102,101,114,58,115,101,116,0,4097,3260,2049,3390,10,3418,3456,
- 144,98,117,102,102,101,114,58,112,114,101,115,101,114,118,101,0,3841,3260,3841,
- 3269,1793,3469,1,21,2049,2104,4097,3260,10,1,3462,2049,2104,4097,3269,10,3437,3491,131,
- 84,101,109,112,83,116,114,105,110,103,115,0,32,3476,3509,131,84,101,109,112,
- 83,116,114,105,110,103,77,97,120,0,512,3492,3521,144,83,84,82,73,78,71,
- 83,0,2049,1543,3841,3491,3841,3509,19,18,10,3510,3541,131,67,117,114,114,101,110,
- 116,0,4,10,3530,3556,144,115,58,112,111,105,110,116,101,114,0,3841,3541,3841,
- 3509,19,2049,3521,17,10,3543,3575,144,115,58,110,101,120,116,0,1,3541,2049,2992,
- 3841,3541,3841,3491,11,1793,3591,1,0,4097,3541,10,1,3586,9,10,3510,3605,144,115,
- 58,116,101,109,112,0,2,2049,79,2049,2894,2049,3556,4,2049,3130,2049,3556,2049,3575,
- 10,3595,3631,144,115,58,101,109,112,116,121,0,2049,3556,2049,3575,1,0,67502597,16,
- 10,3620,3650,144,115,58,115,107,105,112,0,6,1793,3658,68223234,1,786703,0,10,1,
- 3653,2049,2231,2049,2907,5,10,3640,3676,144,115,58,107,101,101,112,0,2049,1818,1793,
- 3685,1,3650,2049,1777,10,1,3680,9,2049,1877,1,119,2049,2104,2049,131,10,3666,3709,
- 156,112,114,101,102,105,120,58,39,0,2049,1818,1,3676,1,3605,2049,64,10,3697,
- 3728,144,115,58,99,104,111,112,0,2049,3605,2,2049,79,67502597,17,2049,2907,1,0,
- 4,16,10,3718,3755,144,115,58,114,101,118,101,114,115,101,0,1793,3797,2,2049,
- 3605,2049,3432,1,79,1793,3773,2,2049,79,17,2049,2907,10,1,3766,2049,2126,4,1793,
- 3787,2,15,2049,3340,2049,2907,10,1,3780,2049,2279,3,2049,3306,2049,3605,10,1,3757,
- 2049,3456,10,3742,3815,144,115,58,112,114,101,112,101,110,100,0,2049,3605,1793,3839,
- 2,2049,79,17,1793,3831,2,2049,79,2049,2894,10,1,3825,2049,2104,4,2049,3130,10,
- 1,3819,2049,2114,10,3802,3856,144,115,58,97,112,112,101,110,100,0,4,2049,3815,
- 10,3844,3874,144,115,58,102,111,114,45,101,97,99,104,0,1793,3889,67502597,6415,3,
- 67502597,67502597,251987205,2054,101777670,1,1,3876,7,10,1,3876,8,771,10,3860,3908,144,115,58,
- 105,110,100,101,120,45,111,102,0,4,1793,3922,68223234,1,6415,33883396,101450758,6404,3,1,
- 3911,7,10,1,3911,1793,3931,18,2049,2907,772,10,1,3926,1793,3940,2049,79,67502597,11,
- 10,1,3935,2049,2163,1793,3950,3,1,-1,10,1,3946,9,10,3894,3974,144,115,58,
- 99,111,110,116,97,105,110,115,45,99,104,97,114,63,0,2049,3908,1,-1,12,
- 10,3954,3990,144,115,58,104,97,115,104,0,1,5381,4,1793,3998,286458116,33,10,1,
- 3995,2049,3874,10,3980,4010,131,83,114,99,0,0,4003,4018,131,84,97,114,0,0,
- 4011,4026,131,80,97,100,0,0,4019,4032,131,73,0,0,4027,4038,131,70,0,0,
- 4033,4045,131,65,116,0,0,4039,4059,144,116,101,114,109,105,110,97,116,101,0,
- 1,0,3841,4026,3841,4018,2049,79,17,16,10,4046,4081,144,101,120,116,114,97,99,
- 116,0,3841,4010,3841,4032,17,3841,4026,3841,4018,2049,79,2049,3130,10,4070,4106,144,99,
- 111,109,112,97,114,101,0,3841,4026,3841,4018,2049,93,3841,4038,22,4097,4038,3841,4038,
- 1793,4126,3841,4032,4097,4045,10,1,4121,2049,70,10,4095,4139,144,110,101,120,116,0,
- 1,4032,2049,2992,10,3980,4166,144,115,58,99,111,110,116,97,105,110,115,45,115,
- 116,114,105,110,103,63,0,4097,4018,4097,4010,2049,3631,4097,4026,1,0,4097,4032,1,
- 0,4097,4038,3841,4010,2049,79,1793,4197,2049,4081,2049,4059,2049,4106,2049,4139,10,1,4188,
- 2049,2279,3841,4038,10,4144,4211,131,83,116,114,0,0,4204,4223,144,101,120,116,114,
- 97,99,116,0,2049,2094,3841,4211,4,2049,3130,3841,-1,67502597,17,1,0,4,16,10,
- 4212,4248,144,99,104,101,99,107,0,1,4223,2049,2104,1793,4259,1,2894,2049,2104,10,
- 1,4254,2049,2104,3841,4211,2049,3990,67502597,11,10,4239,4282,144,108,111,99,97,116,105,
- 111,110,0,67503109,67503109,1793,4315,1793,4310,4,1793,4296,67502597,2049,2531,21,10,1,4291,2049,
- 2104,4,1793,4306,772,2,10,1,4303,9,10,1,4288,2049,2104,10,1,4286,2049,2104,
- 10,4270,4329,144,115,101,116,117,112,0,2049,3631,4097,4211,1,0,67503109,67503109,1,79,
- 1,3990,2049,2126,2049,3631,2049,3432,1793,4353,67502597,2049,79,10,1,4349,2049,2104,4,10,
- 4144,4380,144,115,58,105,110,100,101,120,45,111,102,45,115,116,114,105,110,103,
- 0,67502597,1793,4406,1793,4399,2049,4329,1793,4394,2049,4248,2049,4282,10,1,4389,2049,2279,10,
- 1,4385,2049,3456,771,3,10,1,4383,2049,2104,18,1,2,18,1,-1,2049,2832,10,
- 4359,4431,144,115,58,102,105,108,116,101,114,0,1793,4459,2049,3631,2049,3432,4,1793,
- 4451,2049,2094,4,8,1,3340,1,11,2049,64,10,1,4440,2049,3874,3,2049,3306,10,
- 1,4433,2049,3456,10,4419,4473,144,115,58,109,97,112,0,1793,4495,2049,3631,2049,3432,
- 4,1793,4487,67502597,8,2049,3340,10,1,4482,2049,3874,3,2049,3306,10,1,4475,2049,3456,
- 10,4464,4512,144,115,58,115,117,98,115,116,114,0,1793,4518,17,2049,3631,10,1,
- 4514,2049,2104,1793,4530,67502597,1,3130,2049,2104,10,1,4524,2049,2114,67502597,1793,4543,17,1,
- 0,4,16,10,1,4537,2049,2104,10,4500,4559,144,115,58,114,105,103,104,116,0,
- 67502597,2049,79,67502597,18,4,2049,4512,10,4548,4578,144,115,58,108,101,102,116,0,1,
- 0,4,2049,4512,10,4568,4602,144,115,58,98,101,103,105,110,115,45,119,105,116,
- 104,63,0,2,2049,79,1,13,2049,2104,2049,4578,2049,93,10,4584,4630,144,115,58,
- 101,110,100,115,45,119,105,116,104,63,0,2,2049,79,1,13,2049,2104,2049,4559,
- 2049,93,10,4614,4652,144,115,58,99,111,112,121,0,67502597,2049,79,2049,2894,2049,3130,
- 10,4642,4672,144,115,58,68,73,71,73,84,83,0,2049,3650,48,49,50,51,52,
- 53,54,55,56,57,0,1,4674,10,4660,4709,144,115,58,65,83,67,73,73,45,
- 76,79,87,69,82,67,65,83,69,0,2049,3650,97,98,99,100,101,102,103,104,
- 105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,0,1,
- 4711,10,4688,4762,144,115,58,65,83,67,73,73,45,85,80,80,69,82,67,65,
- 83,69,0,2049,3650,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,
- 80,81,82,83,84,85,86,87,88,89,90,0,1,4764,10,4741,4813,144,115,58,
- 65,83,67,73,73,45,76,69,84,84,69,82,83,0,2049,3650,97,98,99,100,
- 101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,
- 121,122,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,
- 83,84,85,86,87,88,89,90,0,1,4815,10,4794,4888,144,115,58,80,85,78,
- 67,84,85,65,84,73,79,78,0,2049,3650,95,33,34,35,36,37,38,39,40,
- 41,42,43,44,45,46,47,58,59,60,61,62,63,64,91,92,93,94,96,123,
- 124,125,126,0,1,4890,1,95,67502597,16,10,4871,4946,131,115,58,87,72,73,84,
- 69,83,80,65,67,69,0,32,9,10,13,0,4930,4956,156,39,0,1,3631,2049,
- 144,10,4951,4966,156,36,0,1,0,2049,131,10,4961,0,131,65,83,67,73,73,
- 58,78,85,76,0,4971,27,131,65,83,67,73,73,58,69,83,67,0,4984,8,
- 131,65,83,67,73,73,58,66,83,0,4997,9,131,65,83,67,73,73,58,72,
- 84,0,5009,10,131,65,83,67,73,73,58,76,70,0,5021,11,131,65,83,67,
- 73,73,58,86,84,0,5033,12,131,65,83,67,73,73,58,70,70,0,5045,13,
- 131,65,83,67,73,73,58,67,82,0,5057,32,131,65,83,67,73,73,58,83,
- 80,65,67,69,0,5069,127,131,65,83,67,73,73,58,68,69,76,0,5084,1,
- 131,65,83,67,73,73,58,83,79,72,0,5097,2,131,65,83,67,73,73,58,
- 83,84,88,0,5110,3,131,65,83,67,73,73,58,69,84,88,0,5123,4,131,
- 65,83,67,73,73,58,69,79,84,0,5136,5,131,65,83,67,73,73,58,69,
- 78,81,0,5149,6,131,65,83,67,73,73,58,65,67,75,0,5162,7,131,65,
- 83,67,73,73,58,66,69,76,0,5175,14,131,65,83,67,73,73,58,83,79,
- 0,5188,15,131,65,83,67,73,73,58,83,73,0,5200,16,131,65,83,67,73,
- 73,58,68,76,69,0,5212,17,131,65,83,67,73,73,58,68,67,49,0,5225,
- 18,131,65,83,67,73,73,58,68,67,50,0,5238,19,131,65,83,67,73,73,
- 58,68,67,51,0,5251,20,131,65,83,67,73,73,58,68,67,52,0,5264,21,
- 131,65,83,67,73,73,58,78,65,75,0,5277,22,131,65,83,67,73,73,58,
- 83,89,78,0,5290,23,131,65,83,67,73,73,58,69,84,66,0,5303,24,131,
- 65,83,67,73,73,58,67,65,78,0,5316,25,131,65,83,67,73,73,58,69,
- 77,0,5329,26,131,65,83,67,73,73,58,83,85,66,0,5341,28,131,65,83,
- 67,73,73,58,70,83,0,5354,29,131,65,83,67,73,73,58,71,83,0,5366,
- 30,131,65,83,67,73,73,58,82,83,0,5378,31,131,65,83,67,73,73,58,
- 85,83,0,5390,5418,144,99,58,108,111,119,101,114,99,97,115,101,63,0,1,
- 97,1,122,2049,2925,10,5402,5441,144,99,58,117,112,112,101,114,99,97,115,101,
- 63,0,1,65,1,90,2049,2925,10,5425,5461,144,99,58,108,101,116,116,101,114,
- 63,0,1,5418,1,5441,2049,2126,22,10,5448,5481,144,99,58,100,105,103,105,116,
- 63,0,1,48,1,57,2049,2925,10,5469,5502,144,99,58,118,105,115,105,98,108,
- 101,63,0,1,32,1,126,2049,2925,10,5488,5521,144,99,58,118,111,119,101,108,
- 63,0,2049,3650,97,101,105,111,117,65,69,73,79,85,0,1,5523,4,2049,3974,
- 10,5509,5556,144,99,58,99,111,110,115,111,110,97,110,116,63,0,2,2049,5461,
- 1793,5566,2049,5521,2049,2463,10,1,5561,1793,5574,3,2049,2366,10,1,5570,2049,64,10,
- 5540,5596,144,99,58,119,104,105,116,101,115,112,97,99,101,63,0,1,4946,4,
- 2049,3974,10,5579,5619,144,99,58,45,108,111,119,101,114,99,97,115,101,63,0,
- 2049,5418,2049,2463,10,5602,5641,144,99,58,45,117,112,112,101,114,99,97,115,101,
- 63,0,2049,5441,2049,2463,10,5624,5659,144,99,58,45,100,105,103,105,116,63,0,
- 2049,5481,2049,2463,10,5646,5682,144,99,58,45,119,104,105,116,101,115,112,97,99,
- 101,63,0,2049,5596,2049,2463,10,5664,5702,144,99,58,45,118,105,115,105,98,108,
- 101,63,0,2049,5502,2049,2463,10,5687,5720,144,99,58,45,118,111,119,101,108,63,
- 0,2049,5521,2049,2463,10,5707,5742,144,99,58,45,99,111,110,115,111,110,97,110,
- 116,63,0,2049,5556,2049,2463,10,5725,5761,144,99,58,116,111,45,117,112,112,101,
- 114,0,2,2049,5418,25,3,1,32,18,10,5747,5784,144,99,58,116,111,45,108,
- 111,119,101,114,0,2,2049,5441,25,3,1,32,17,10,5770,5808,144,99,58,116,
- 111,45,115,116,114,105,110,103,0,2049,3650,46,0,1,5810,2049,3605,1,36,2049,
- 2114,10,5793,5838,144,99,58,116,111,103,103,108,101,45,99,97,115,101,0,2,
- 2049,5418,1,5761,1,5784,2049,64,10,5821,5863,144,99,58,116,111,45,110,117,109,
- 98,101,114,0,2,2049,5481,1793,5872,1,48,18,10,1,5868,1793,5880,3,1,0,
- 10,1,5876,2049,64,10,5848,5899,144,115,58,116,111,45,117,112,112,101,114,0,
- 1,5761,2049,4473,10,5885,5918,144,115,58,116,111,45,108,111,119,101,114,0,1,
- 5784,2049,4473,10,5904,5938,144,115,58,116,114,105,109,45,108,101,102,116,0,2049,
- 3605,1793,5952,2049,56,1,5596,1,2547,2049,2126,21,10,1,5942,2049,2231,2049,2907,10,
- 5923,5975,144,115,58,116,114,105,109,45,114,105,103,104,116,0,2049,3605,2049,3755,
- 2049,5938,2049,3755,10,5959,5994,144,115,58,116,114,105,109,0,2049,5975,2049,5938,10,
- 5984,6010,144,99,111,114,114,101,99,116,0,2,1,48,13,1793,6025,1,48,67502597,
- 18,1,2,19,17,10,1,6016,9,10,5984,6044,144,110,58,116,111,45,115,116,
- 114,105,110,103,0,1793,6092,2049,1877,2049,3432,2,2049,2859,1793,6070,1,10,20,4,
- 1,48,17,2049,6010,2049,3340,2,2049,2547,10,1,6055,2049,2231,3,2049,2566,1793,6084,
- 1,45,2049,3340,10,1,6079,9,2049,3306,2049,3755,10,1,6046,2049,3456,10,6029,6119,
- 131,82,101,119,114,105,116,101,85,110,100,101,114,115,99,111,114,101,115,0,
- -1,6097,6127,144,115,117,98,0,1,95,1793,6134,1,32,10,1,6131,2049,2377,10,
- 6120,6150,144,114,101,119,114,105,116,101,0,3841,6119,1793,6159,1,6127,2049,4473,10,
- 1,6154,9,10,6139,6173,144,104,97,110,100,108,101,0,1,3709,8,10,6097,6189,
- 156,112,114,101,102,105,120,58,39,0,2049,6150,2049,6173,10,6177,6205,144,115,58,
- 115,112,108,105,116,0,2049,2094,2049,3908,772,2049,2094,2049,4578,1,38,2049,2104,10,
- 6194,6240,144,115,58,115,112,108,105,116,45,111,110,45,115,116,114,105,110,103,
- 0,2049,2094,2049,4380,2049,2894,772,2049,2094,2049,4578,1,38,2049,2104,10,6219,6269,144,
- 115,58,114,101,112,108,97,99,101,0,67502597,2049,79,2049,1877,16,1793,6285,2049,6240,
- 4,2049,1877,15,17,10,1,6277,2049,2104,2049,3815,2049,3856,10,6256,6306,131,83,112,
- 108,105,116,45,79,110,0,0,6294,6317,144,109,97,116,99,104,63,0,3841,6306,
- 11,10,6307,6334,144,116,101,114,109,105,110,97,116,101,0,1,0,67502597,2049,2907,
- 16,10,6321,6349,144,115,116,101,112,0,1,2894,2049,2104,2049,6317,1793,6363,2,2049,
- 105,2049,6334,10,1,6357,9,10,6256,6381,144,115,58,116,111,107,101,110,105,122,
- 101,0,4097,6306,2049,3676,2049,1877,1,0,2049,105,1793,6403,2,2049,105,2,1,6349,
- 2049,3874,3,10,1,6393,2049,2104,2049,1877,67502597,18,2049,2907,67502597,16,10,6367,6426,131,
- 78,101,101,100,108,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6416,6561,131,76,101,
- 110,0,0,6554,6572,131,84,111,107,101,110,115,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
- 0,6562,6706,131,84,80,0,0,6700,6715,144,115,97,118,101,0,2049,3676,3841,6706,
- 1,6572,17,2049,2894,16,1,6706,2049,2992,10,6707,6738,144,110,101,120,116,0,1793,
- 6744,3841,6561,17,10,1,6740,2049,2114,10,6730,6758,144,100,111,110,101,63,0,2049,
- 79,2049,2531,10,6367,6787,144,115,58,116,111,107,101,110,105,122,101,45,111,110,
- 45,115,116,114,105,110,103,0,1,0,4097,6706,1793,6801,2,1,6426,2049,4652,2049,
- 3856,10,1,6793,1793,6810,2049,79,4097,6561,10,1,6805,2049,2126,1793,6827,1,6426,2049,
- 6240,2049,6715,2049,6738,2049,6758,10,1,6816,2049,2254,1,6572,3841,6706,2049,2907,4097,6572,
- 10,6763,6852,144,102,111,114,45,101,97,99,104,0,4,2049,56,1,13,2049,2104,
- 1793,6868,5,2049,56,84018692,525572,1542,10,1,6861,2049,2279,771,10,6840,6888,144,115,117,
- 98,115,116,105,116,117,116,101,0,2049,3521,1,129,18,10,6874,6905,144,101,120,
- 116,114,97,99,116,0,2049,6888,2049,4652,10,6894,6922,144,116,111,107,101,110,105,
- 122,101,0,2049,6787,2049,3631,10,6910,6938,144,99,111,109,98,105,110,101,0,2049,
- 6888,2049,3856,2049,3856,10,6927,6954,144,109,101,114,103,101,0,4,1,6938,2049,6852,
- 772,10,6945,6973,144,102,105,110,100,45,101,110,100,0,2,2049,79,2049,6888,2049,
- 79,18,67502597,17,10,6961,6993,144,99,108,101,97,110,0,2049,6973,1,0,4,16,
- 10,6763,7017,144,115,58,114,101,112,108,97,99,101,45,97,108,108,0,1,3,
- 1793,7032,2049,6905,2049,6922,2049,6954,2049,6993,2049,3605,10,1,7021,2049,3083,10,7000,7045,
- 144,99,104,97,114,0,1,32,1793,7054,1,95,2049,3340,10,1,7049,2049,2377,1,
- 114,1793,7067,1,13,2049,3340,10,1,7062,2049,2377,1,110,1793,7080,1,10,2049,3340,
- 10,1,7075,2049,2377,1,116,1793,7093,1,9,2049,3340,10,1,7088,2049,2377,1,48,
- 1793,7106,1,0,2049,3340,10,1,7101,2049,2377,2049,3340,10,7037,7121,144,116,121,112,
- 101,0,1,99,1793,7129,4,2049,3340,10,1,7125,2049,2377,1,115,1793,7143,4,1,
- 3340,2049,3874,10,1,7137,2049,2377,1,110,1793,7159,4,2049,6044,1,3340,2049,3874,10,
- 1,7151,2049,2377,3,10,7113,7175,144,104,97,110,100,108,101,0,1,92,1793,7184,
- 2049,56,2049,7045,10,1,7179,2049,2377,1,37,1793,7197,2049,56,2049,7121,10,1,7192,
- 2049,2377,2049,3340,10,7000,7216,144,115,58,102,111,114,109,97,116,0,1793,7245,2049,
- 3631,1793,7240,2049,3432,1793,7235,2049,56,25,2049,7175,1,7226,7,10,1,7226,8,3,
- 10,1,7222,2049,2114,10,1,7218,2049,3456,10,7204,7261,144,115,58,99,111,110,115,
- 116,0,1,3676,2049,2104,2049,2020,10,7250,7278,131,86,97,108,117,101,115,0,0,
- 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,7268,7314,144,102,114,111,109,0,2049,79,2,1793,7332,
- 1793,7325,1,7278,4113,10,1,7321,2049,2114,2049,2907,10,1,7319,2049,2279,3,10,7306,
- 7344,144,116,111,0,2,2049,79,1793,7360,2049,56,1,97,18,2049,2894,1,7278,266001,
- 10,1,7349,2049,2279,3,10,7250,7377,144,114,101,111,114,100,101,114,0,1,7314,
- 2049,2104,2049,7344,10,7366,7393,144,99,117,114,114,121,0,2049,1877,1793,7403,4,2049,
- 1731,2049,1754,10,1,7397,2049,2104,10,7384,7416,144,100,111,101,115,0,2049,1588,4,
- 2049,7393,2049,1570,2049,158,16,1,144,2049,1649,10,7408,7445,144,100,58,102,111,114,
- 45,101,97,99,104,0,1,2,1793,7471,6415,2049,2094,1793,7463,1793,7458,2052,10,1,
- 7456,2049,2104,10,1,7454,2049,2104,1,7449,7,10,1,7449,8,3,10,7431,7491,144,
- 100,58,108,111,111,107,117,112,45,120,116,0,1,0,4,1793,7516,2049,2094,2049,
- 158,2831,1793,7509,4,1,2055,2049,2104,10,1,7503,1,11,2049,64,10,1,7496,2049,
- 7445,3,10,7476,7534,144,97,58,108,101,110,103,116,104,0,15,10,7522,7557,144,
- 97,58,99,111,117,110,116,101,100,45,114,101,115,117,108,116,115,0,8,2049,
- 1877,1793,7570,2,2049,105,1,105,2049,2279,10,1,7562,2049,2104,10,7536,7592,144,97,
- 58,102,114,111,109,45,115,116,114,105,110,103,0,2049,1877,1793,7606,2,2049,79,
- 2049,105,1,105,2049,3874,10,1,7596,2049,2104,10,7575,7625,144,97,58,102,111,114,
- 45,101,97,99,104,0,4,2049,56,1,13,2049,2104,1793,7641,5,2049,56,84018692,525572,
- 1542,10,1,7634,2049,2279,771,10,7611,7656,144,97,58,100,117,112,0,2049,1877,1793,
- 7669,2,15,2049,105,1,105,2049,7625,10,1,7660,2049,2104,10,7647,7684,144,97,58,
- 99,111,112,121,0,1,3,1793,7700,4097,3,2,2049,7534,2049,105,1,105,2049,7625,
- 10,1,7688,2049,3083,10,7674,7720,144,97,58,116,111,45,115,116,114,105,110,103,
- 0,1,3,1793,7733,2049,7656,1,0,2049,105,2049,2894,10,1,7724,2049,3083,2049,3605,
- 10,7705,7752,144,97,58,97,112,112,101,110,100,0,2049,2094,1,34,2049,2152,17,
- 2049,1877,1793,7777,2049,105,1793,7772,1,105,2049,7625,10,1,7767,2049,2152,10,1,7763,
- 2049,2104,10,7740,7795,144,97,58,112,114,101,112,101,110,100,0,4,2049,7752,10,
- 7782,7809,144,97,58,99,104,111,112,0,2049,7656,1,-1,2049,3064,2,2049,3007,10,
- 7799,7831,144,97,58,102,105,108,116,101,114,0,1793,7846,67502597,1,21,2049,2104,4,
- 1,105,1,11,2049,64,10,1,7833,2049,7393,2049,1877,1793,7861,67502597,15,2049,105,2049,
- 7625,10,1,7854,2049,2104,2049,1877,67502597,18,2049,2907,67502597,16,10,7819,7889,144,97,58,
- 99,111,110,116,97,105,110,115,63,0,1,0,4,1793,7901,4,5,67502597,11,6,
- 22,10,1,7894,2049,7625,772,10,7874,7929,144,97,58,99,111,110,116,97,105,110,
- 115,45,115,116,114,105,110,103,63,0,1,0,4,1793,7942,4,5,67502597,2049,93,
- 6,22,10,1,7934,2049,7625,772,10,7907,7957,144,97,58,109,97,112,0,1793,7963,
- 8,2049,105,10,1,7959,2049,7393,2049,1877,1793,7978,67502597,15,2049,105,2049,7625,10,1,
- 7971,2049,2104,10,7948,7996,144,97,58,114,101,118,101,114,115,101,0,2049,1877,1793,
- 8030,2049,56,1793,8008,17,2049,2907,10,1,8004,2049,2114,2,2049,105,1793,8024,2,15,
- 2049,105,2049,2907,10,1,8017,2049,2279,3,10,1,8000,2049,2104,10,7983,8043,144,97,
- 58,116,104,0,17,2049,2894,10,8035,8058,144,97,58,102,101,116,99,104,0,2049,
- 8043,15,10,8047,8073,144,97,58,115,116,111,114,101,0,2049,8043,16,10,8062,8089,
- 144,97,58,114,101,100,117,99,101,0,1,13,2049,2104,2049,7625,10,8077,8108,144,
- 105,100,101,110,116,105,102,121,0,1,-1,4,1,0,1793,8139,2049,2354,11,1793,
- 8133,67502597,1,-1,11,1793,8129,772,2,10,1,8126,9,10,1,8120,9,2049,2894,10,
- 1,8115,2049,8089,3,10,8077,8159,144,97,58,105,110,100,101,120,45,111,102,0,
- 1,3,1793,8172,1,26,2049,7393,2049,7957,2049,8108,10,1,8163,2049,3083,10,8145,8198,
- 144,97,58,105,110,100,101,120,45,111,102,45,115,116,114,105,110,103,0,1,
- 3,1793,8211,1,93,2049,7393,2049,7957,2049,8108,10,1,8202,2049,3083,10,8177,8226,144,
- 97,58,109,97,107,101,0,2049,7557,2049,7996,10,8216,8236,156,123,0,1,285,2049,
- 156,1,1556,2049,144,1,285,2049,156,10,8231,8254,156,125,0,1,301,2049,156,1,
- 2104,2049,144,1,1556,2049,144,1,13,2049,150,1,40,2049,150,1,2907,2049,144,1,
- 301,2049,156,1,8226,2049,144,10,8249,8298,144,98,111,117,110,100,115,63,0,67502597,
- 2049,7534,67502597,13,10,8287,8312,144,99,111,112,121,0,2049,56,2049,105,10,8304,8327,
- 144,116,111,45,101,110,100,0,2,2049,7534,17,2049,2894,10,8249,8344,144,97,58,
- 108,101,102,116,0,2049,8298,1793,8352,771,1,-1,10,1,8348,2049,2657,2049,1877,67502597,
- 2049,105,1793,8373,1,2894,2049,2104,1,8312,2049,2279,3,10,1,8363,2049,2104,10,8334,
- 8389,144,97,58,114,105,103,104,116,0,2049,8298,1793,8397,771,1,-1,10,1,8393,
- 2049,2657,2049,1877,67502597,2049,105,1793,8420,4,2049,8327,67502597,18,4,1,8312,2049,2279,3,
- 10,1,8408,2049,2104,10,8378,8437,144,97,58,109,105,100,100,108,101,0,1,2046,
- 2049,2104,4,67502597,2049,8298,1793,8452,771,3,1,-1,10,1,8447,2049,2657,771,2049,2094,
- 4,18,2049,2894,2049,1877,67502597,2049,105,1793,8487,772,1793,8477,17,2049,2894,10,1,8473,
- 2049,2104,1,8312,2049,2279,3,10,1,8470,2049,2104,10,8425,8500,131,70,108,97,103,
- 0,0,8492,8512,144,99,111,109,112,97,114,101,0,67440386,184946434,10,8501,8525,144,108,
- 101,110,103,116,104,0,659202,10,8515,8535,144,110,101,120,116,0,17043713,1,1,2577,
- 10,8527,8553,144,110,111,116,45,101,113,117,97,108,0,50529030,2561,0,10,8540,8565,
- 144,108,111,111,112,0,524549,8535,2049,8512,18157313,8500,8500,16,420610310,1,1,8565,7,10,
- 8425,8588,144,97,58,101,113,63,0,1048833,-1,8500,2049,8512,151066369,-1,8553,2049,8525,2049,
- 8565,251724547,8500,10,8579,8613,144,97,58,45,101,113,63,0,2049,8588,2049,2463,10,8603,
- 8636,144,97,58,98,101,103,105,110,115,45,119,105,116,104,63,0,1,3,1793,
- 8652,2,2049,7534,1,13,2049,2104,2049,8344,2049,8588,10,1,8640,2049,3083,10,8618,8673,
- 144,97,58,101,110,100,115,45,119,105,116,104,63,0,1,3,1793,8689,2,2049,
- 7534,1,13,2049,2104,2049,8389,2049,8588,10,1,8677,2049,3083,10,8657,8710,144,99,117,
- 114,114,101,110,116,45,108,105,110,101,0,2049,3521,1,1025,18,10,8694,8732,144,
- 99,111,117,110,116,45,116,111,107,101,110,115,0,1793,8738,1,32,11,10,1,
- 8734,2049,4431,2049,79,10,8716,8763,144,112,114,111,99,101,115,115,45,116,111,107,
- 101,110,115,0,1793,8791,1,32,2049,6205,4,1793,8784,2,2049,79,2049,2547,1,365,
- 1,11,2049,64,10,1,8772,2049,2104,2049,2894,10,1,8765,2049,2279,2049,365,10,8657,
- 8812,144,115,58,101,118,97,108,117,97,116,101,0,2049,8710,2049,4652,2049,8710,2,
- 2049,8732,2049,8763,10,8798,8830,131,76,80,0,0,8824,8840,131,73,110,100,101,120,
- 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,0,0,0,8831,8880,144,110,101,120,116,
- 0,3841,8830,1,8840,17,2049,2992,10,8872,8896,144,112,114,101,112,0,1,8830,2049,
- 2992,1,0,3841,8830,1,8840,17,16,10,8888,8917,144,100,111,110,101,0,1,8830,
- 2049,3007,10,8798,8927,144,73,0,3841,8830,1,8840,17,15,10,8922,8939,144,74,0,
- 3841,8830,1,8840,17,2049,2907,15,10,8934,8953,144,75,0,3841,8830,1,8840,17,1,
- 2,18,15,10,8948,8984,144,116,105,109,101,115,60,119,105,116,104,45,105,110,
- 100,101,120,62,0,2049,8896,4,1793,9000,25,33886721,1,2053,1542,2049,8880,1,8989,7,
- 10,1,8989,8,3,2049,8917,10,8963,9015,156,104,111,111,107,0,2049,3650,108,105,
- 106,117,46,46,46,46,0,1,9017,2049,412,2049,1877,2049,2894,2049,105,10,9007,9049,
- 144,115,101,116,45,104,111,111,107,0,2049,2894,16,10,9037,9063,144,117,110,104,
- 111,111,107,0,2049,2894,2,2049,2894,4,16,10,9053,9087,144,105,111,58,101,110,
- 117,109,101,114,97,116,101,0,27,10,9071,9101,144,105,111,58,113,117,101,114,
- 121,0,28,10,9089,9116,144,105,111,58,105,110,118,111,107,101,0,29,10,9103,
- 9133,144,105,111,58,115,99,97,110,45,102,111,114,0,1,-1,4,2049,9087,1793,
- 9164,2049,8927,2049,9101,772,67502597,11,1793,9160,1793,9155,3,2049,8927,10,1,9151,2049,2104,
- 10,1,9149,9,10,1,9140,2049,8984,3,10,9118,9179,144,99,58,112,117,116,0,
- 1793,9181,1,0,2049,9116,10,9170,9192,144,110,108,0,1,10,2049,9179,10,9186,9203,
- 144,115,112,0,1,32,2049,9179,10,9197,9215,144,116,97,98,0,1,9,2049,9179,
- 10,9208,9229,144,115,58,112,117,116,0,1,9179,2049,3874,10,9220,9243,144,110,58,
- 112,117,116,0,2049,6044,2049,9229,10,9234,9257,144,114,101,115,101,116,0,2049,1556,
- 25,771,1,9257,7,10,9248,9279,144,100,117,109,112,45,115,116,97,99,107,0,
- 2049,1556,25,134284547,9279,134283782,9243,2049,9203,10,9265,9297,144,70,82,69,69,0,2049,3521,
- 1,1025,18,2049,1877,18,10,9289,9316,131,105,111,58,88,56,54,0,0,9306,9329,
- 144,105,100,101,110,116,105,102,121,0,3841,9316,2049,2531,1793,9396,1,2000,2049,9133,
- 2,2049,2566,1793,9384,3,2049,3650,73,79,32,68,69,86,73,67,69,32,84,89,
- 80,69,32,50,48,48,48,32,78,79,84,32,70,79,85,78,68,0,1,9347,
- 2049,9229,2049,9192,10,1,9344,1793,9391,4097,9316,10,1,9388,2049,64,10,1,9335,9,
- 10,9289,9410,144,105,111,58,120,56,54,0,2049,9329,3841,9316,2049,9116,10,9400,9432,
- 144,112,105,111,58,105,110,45,98,121,116,101,0,1,0,2049,9410,10,9417,9453,
- 144,112,105,111,58,111,117,116,45,98,121,116,101,0,1,1,2049,9410,10,9437,
- 9473,144,112,105,111,58,105,110,45,119,111,114,100,0,1,6,2049,9410,10,9458,
- 9494,144,112,105,111,58,111,117,116,45,119,111,114,100,0,1,7,2049,9410,10,
- 9478,9512,144,114,97,109,58,115,116,111,114,101,0,1,2,2049,9410,10,9499,9530,
- 144,114,97,109,58,102,101,116,99,104,0,1,3,2049,9410,10,9517,9553,144,114,
- 97,109,58,115,116,111,114,101,45,98,121,116,101,0,1,4,2049,9410,10,9535,
- 9576,144,114,97,109,58,102,101,116,99,104,45,98,121,116,101,0,1,5,2049,
- 9410,10,9558,9588,144,104,101,120,0,2,15,1,45,11,1793,9600,2049,2894,1,-1,
- 10,1,9595,1793,9607,1,0,10,1,9604,2049,64,4,1,0,4,1793,9646,2049,3650,
- 48,49,50,51,52,53,54,55,56,57,65,66,67,68,69,70,0,1,9619,4,
- 2049,3908,17,1,16,19,10,1,9617,2049,3874,1,16,197652,4,25,19,10,9558,9669,
- 156,112,114,101,102,105,120,58,48,0,2,2049,2907,2049,197,2049,2547,1793,9702,2049,
- 2907,2049,197,1793,9688,2049,158,15,10,1,9684,1793,9696,2049,160,15,10,1,9692,2049,
- 2126,8,10,1,9678,2049,2657,2049,2894,2049,9588,2049,131,10,9657,112,131,67,77,79,
- 83,58,65,68,68,82,69,83,83,0,9713,113,131,67,77,79,83,58,68,65,
- 84,65,0,9729,9755,144,114,116,99,58,113,117,101,114,121,0,1,112,2049,9453,
- 1,113,2049,9432,10,9742,9778,144,114,116,99,58,115,101,99,111,110,100,0,1,
- 0,2049,9755,10,9764,9797,144,114,116,99,58,109,105,110,117,116,101,0,1,2,
- 2049,9755,10,9783,9814,144,114,116,99,58,104,111,117,114,0,1,4,2049,9755,10,
- 9802,9830,144,114,116,99,58,100,97,121,0,1,7,2049,9755,10,9819,9848,144,114,
- 116,99,58,109,111,110,116,104,0,1,8,2049,9755,10,9835,9865,144,114,116,99,
- 58,121,101,97,114,0,1,9,2049,9755,10,9853,9878,144,116,105,109,101,0,2049,
- 9814,2049,9243,1,58,2049,9179,2049,9797,2049,9243,2049,9192,10,9870,1016,131,115,101,114,
- 105,97,108,58,67,79,77,49,0,9893,760,131,115,101,114,105,97,108,58,67,
- 79,77,50,0,9908,1000,131,115,101,114,105,97,108,58,67,79,77,51,0,9923,
- 744,131,115,101,114,105,97,108,58,67,79,77,52,0,9938,9968,131,115,101,114,
- 105,97,108,58,80,111,114,116,0,1016,9953,9989,144,115,101,114,105,97,108,58,
- 114,101,99,101,105,118,101,100,63,0,3841,9968,1,5,17,2049,9432,1,1,21,
- 2049,2547,10,9969,10019,144,115,101,114,105,97,108,58,101,109,112,116,121,63,0,
- 3841,9968,1,5,17,2049,9432,1,32,21,2049,2547,10,10002,10047,144,115,101,114,105,
- 97,108,58,114,101,97,100,0,2049,9989,1793,10056,3841,9968,2049,9432,10,1,10051,2049,
- 2657,2049,10047,10,10032,10079,144,115,101,114,105,97,108,58,119,114,105,116,101,0,
- 2049,10019,1793,10088,3841,9968,2049,9453,10,1,10083,2049,2657,2049,10079,10,10063,10110,144,115,
- 101,114,105,97,108,58,115,101,110,100,0,1793,10115,2049,10079,10,1,10112,2049,3874,
- 10,10095,10135,144,115,101,114,105,97,108,58,105,110,105,116,0,1,0,3841,9968,
- 1,1,17,2049,9453,1,128,3841,9968,1,3,17,2049,9453,1,3,3841,9968,2049,9453,
- 1,0,3841,9968,1,1,17,2049,9453,1,3,3841,9968,1,3,17,2049,9453,1,199,
- 3841,9968,1,2,17,2049,9453,1,11,3841,9968,1,4,17,2049,9453,10,10120,753664,131,
- 86,71,65,45,66,65,83,69,0,10196,80,131,67,79,76,85,77,78,83,0,
- 10208,25,131,82,79,87,83,0,10219,980,131,86,71,65,45,67,85,82,83,79,
- 82,0,10227,981,131,86,71,65,45,68,65,84,65,0,10241,10264,131,118,103,97,
- 58,82,111,119,0,0,10253,10279,131,118,103,97,58,67,111,108,117,109,110,0,
- 0,10265,10301,144,118,103,97,58,117,112,100,97,116,101,45,99,117,114,115,111,
- 114,0,3841,10264,1,80,19,3841,10279,17,2,1,15,1,980,2049,9453,1,255,21,
- 1,981,2049,9453,1,14,1,980,2049,9453,1,8,24,1,255,21,1,981,2049,9453,
- 10,10280,10359,144,118,103,97,58,109,111,118,101,45,99,117,114,115,111,114,0,
- 4097,10279,4097,10264,2049,10301,10,10340,10381,131,118,103,97,58,68,105,115,112,108,97,
- 121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 10,1547,1570,144,100,58,108,97,115,116,0,1,2,15,10,1560,1587,144,100,58,
+ 108,97,115,116,46,120,116,0,2049,1570,2049,158,15,10,1574,1609,144,100,58,108,
+ 97,115,116,46,99,108,97,115,115,0,2049,1570,2049,160,15,10,1593,1630,144,100,
+ 58,108,97,115,116,46,110,97,109,101,0,2049,1570,2049,162,10,1615,1646,144,114,
+ 101,99,108,97,115,115,0,2049,1570,2049,160,16,10,1635,1665,144,105,109,109,101,
+ 100,105,97,116,101,0,1,156,2049,1646,10,1652,1678,144,100,97,116,97,0,1,
+ 131,2049,1646,10,1670,1696,144,112,114,105,109,105,116,105,118,101,0,1,150,2049,
+ 1646,10,1683,1706,156,40,0,10,1701,1712,156,41,0,10,1707,1728,144,99,111,109,
+ 112,105,108,101,58,108,105,116,0,1,1,2049,105,2049,105,10,1713,1751,144,99,
+ 111,109,112,105,108,101,58,106,117,109,112,0,1,1793,2049,105,2049,105,10,1735,
+ 1774,144,99,111,109,112,105,108,101,58,99,97,108,108,0,1,2049,2049,105,2049,
+ 105,10,1758,1796,144,99,111,109,112,105,108,101,58,114,101,116,0,1,10,2049,
+ 105,10,1781,1815,144,99,111,109,112,105,108,105,110,103,63,0,1,124,15,10,
+ 1801,1831,156,112,114,101,102,105,120,58,96,0,2049,218,2049,105,10,1819,1848,156,
+ 112,114,101,102,105,120,58,92,0,2049,412,10,1836,1863,156,112,114,101,102,105,
+ 120,58,94,0,2049,406,10,1851,1874,144,104,101,114,101,0,1,3,15,10,1866,
+ 1890,156,112,114,101,102,105,120,58,64,0,2049,197,2049,158,15,2049,1815,1793,1906,
+ 1,3841,2049,105,2049,105,10,1,1899,1793,1912,15,10,1,1910,2049,64,10,1878,1929,
+ 156,112,114,101,102,105,120,58,33,0,2049,197,2049,158,15,2049,1815,1793,1945,1,
+ 4097,2049,105,2049,105,10,1,1938,1793,1951,16,10,1,1949,2049,64,10,1917,1968,144,
+ 100,58,99,114,101,97,116,101,0,1,131,1,0,2049,164,2049,1874,2049,1570,2049,
+ 158,16,10,1956,1991,144,118,97,114,45,110,0,2049,1968,2049,105,10,1982,2003,144,
+ 118,97,114,0,134284289,0,1991,10,1996,2016,144,99,111,110,115,116,0,2049,1968,2049,
+ 1570,2049,158,16,10,2007,2032,150,116,117,99,107,0,100926722,10,2024,2042,150,111,118,
+ 101,114,0,67502597,10,2034,2051,150,110,105,112,0,772,10,2044,2066,150,100,114,111,
+ 112,45,112,97,105,114,0,771,10,2053,2076,150,63,100,117,112,0,6402,10,2068,
+ 2090,144,100,117,112,45,112,97,105,114,0,67502597,67502597,10,2078,2100,144,100,105,112,
+ 0,525572,6,10,2093,2110,144,115,105,112,0,67502597,1,21,2049,2100,10,2103,2122,144,
+ 98,105,0,1,2110,2049,2100,8,10,2116,2135,144,98,105,42,0,1,2100,2049,2100,
+ 8,10,2128,2148,144,98,105,64,0,2,2049,2135,10,2141,2159,144,116,114,105,0,
+ 1793,2168,1,2110,2049,2100,2049,2110,10,1,2161,2049,2100,8,10,2152,2182,144,116,114,
+ 105,42,0,1793,2199,1793,2192,4,1,2100,2049,2100,10,1,2186,2049,2100,2049,2100,10,
+ 1,2184,2049,2100,8,10,2174,2213,144,116,114,105,64,0,2,2,2049,2182,10,2205,
+ 2227,144,119,104,105,108,101,0,1793,2236,525570,1639430,3,1,2229,7,10,1,2229,8,
+ 3,10,2218,2250,144,117,110,116,105,108,0,1793,2261,525570,385942534,-1,25,3,1,2252,
+ 7,10,1,2252,8,3,10,2241,2275,144,116,105,109,101,115,0,1793,2287,4,25,
+ 33886721,1,2053,1542,1,2278,7,10,1,2277,8,3,10,2266,2304,156,112,114,101,102,
+ 105,120,58,124,0,2049,197,1793,2312,2049,158,15,10,1,2308,1793,2320,2049,160,15,
+ 10,1,2316,2049,2122,2049,1815,1793,2335,1,131,2049,2100,2049,1774,10,1,2328,1,21,
+ 2049,64,10,2292,2350,144,84,82,85,69,0,1,-1,10,2342,2362,144,70,65,76,
+ 83,69,0,1,0,10,2353,2373,144,99,97,115,101,0,1793,2378,67502597,11,10,1,
+ 2375,2049,2100,4,1793,2390,772,8,2049,2350,10,1,2385,1793,2398,3,2049,2362,10,1,
+ 2394,2049,64,25,6,3,3,10,2365,2417,144,115,58,99,97,115,101,0,1793,2423,
+ 67502597,2049,93,10,1,2419,2049,2100,4,1793,2435,772,8,2049,2350,10,1,2430,1793,2443,
+ 3,2049,2362,10,1,2439,2049,64,25,6,3,3,10,2407,2459,144,110,111,116,0,
+ 1,-1,23,10,2452,2472,144,108,116,101,113,63,0,2049,2090,101516555,22,10,2463,2486,
+ 144,103,116,101,113,63,0,4,2049,2472,10,2477,2499,144,110,58,77,65,88,0,
+ 1,-5,15,10,2490,2512,144,110,58,77,73,78,0,1,-4,15,10,2503,2527,144,
+ 110,58,122,101,114,111,63,0,1,0,11,10,2516,2543,144,110,58,45,122,101,
+ 114,111,63,0,1,0,12,10,2531,2562,144,110,58,110,101,103,97,116,105,118,
+ 101,63,0,1,0,13,10,2547,2581,144,110,58,112,111,115,105,116,105,118,101,
+ 63,0,1,-1,14,10,2566,2609,144,110,58,115,116,114,105,99,116,108,121,45,
+ 112,111,115,105,116,105,118,101,63,0,1,0,14,10,2585,2624,144,110,58,101,
+ 118,101,110,63,0,1,2,20,3,2049,2527,10,2613,2641,144,110,58,111,100,100,
+ 63,0,2049,2624,2049,2459,10,2631,2653,144,105,102,59,0,67502597,1,72,2049,2100,25,
+ 6,771,10,2646,2670,144,45,105,102,59,0,67502597,1,70,2049,2100,2049,2459,25,6,
+ 771,10,2662,2688,150,114,111,116,0,67503109,10,2681,2695,150,47,0,197652,10,2690,2704,
+ 150,109,111,100,0,788,10,2697,2715,144,110,58,112,111,119,0,1,1,4,1793,
+ 2723,67502597,19,10,1,2720,2049,2275,772,10,2706,2741,144,110,58,110,101,103,97,116,
+ 101,0,1,-1,19,10,2729,2757,144,110,58,115,113,117,97,114,101,0,4866,10,
+ 2745,2769,144,110,58,115,113,114,116,0,1,1,1793,2787,2049,2090,197652,67502597,18,1,
+ 2,197652,25,17,1,2773,7,10,1,2773,8,772,10,2759,2801,144,110,58,109,105,
+ 110,0,2049,2090,13,1793,2808,3,10,1,2806,1793,2814,772,10,1,2812,2049,64,10,
+ 2792,2828,144,110,58,109,97,120,0,2049,2090,14,1793,2835,3,10,1,2833,1793,2841,
+ 772,10,1,2839,2049,64,10,2819,2855,144,110,58,97,98,115,0,2,2049,2562,1,
+ 2741,9,10,2846,2873,144,110,58,108,105,109,105,116,0,4,5,2049,2801,6,2049,
+ 2828,10,2862,2890,144,110,58,105,110,99,0,1,1,17,10,2881,2903,144,110,58,
+ 100,101,99,0,1,1,18,10,2894,2921,144,110,58,98,101,116,119,101,101,110,
+ 63,0,67503109,1793,2929,67503109,67503109,2049,2873,10,1,2924,2049,2110,11,10,2907,2947,144,118,
+ 58,105,110,99,45,98,121,0,1793,2951,4367,10,1,2949,2049,2110,16,10,2935,2969,
+ 144,118,58,100,101,99,45,98,121,0,1793,2973,1180687,10,1,2971,2049,2110,16,10,
+ 2957,2988,144,118,58,105,110,99,0,1,1,4,2049,2947,10,2979,3003,144,118,58,
+ 100,101,99,0,1,1,4,2049,2969,10,2994,3020,144,118,58,108,105,109,105,116,
+ 0,251790597,1542,2049,2873,4100,10,3009,3034,144,118,58,111,110,0,2049,2350,4100,10,3026,
+ 3047,144,118,58,111,102,102,0,2049,2362,4100,10,3038,3060,144,97,108,108,111,116,
+ 0,1,3,2049,2947,10,3051,3079,144,118,58,112,114,101,115,101,114,118,101,0,
+ 983556,1793,3087,1,21,2049,2100,10,1,3082,2049,2100,4100,10,3065,3105,144,118,58,117,
+ 112,100,97,116,101,0,4,1793,3112,15,4,8,10,1,3108,2049,2110,16,10,3093,
+ 3126,144,99,111,112,121,0,1793,3135,285278725,1,33951492,268767489,1,6,10,1,3128,2049,2275,
+ 771,10,3118,3154,144,83,99,111,112,101,76,105,115,116,0,13426,13525,10,3141,3163,
+ 144,123,123,0,2049,1570,2,1,3154,2049,59,16,10,3157,3188,144,45,45,45,114,
+ 101,118,101,97,108,45,45,45,0,2049,1570,1,3154,2049,2890,16,10,3172,3202,144,
+ 125,125,0,1,3154,2049,56,4,15,11,1793,3216,3841,3154,4097,2,10,1,3211,1793,
+ 3242,3841,3154,1793,3237,1,2,983567,1,3154,2049,2890,1641487,3,1,3226,7,10,1,3224,
+ 8,16,10,1,3220,2049,64,10,3196,3256,131,83,116,97,114,116,0,0,10,3247,
+ 3265,131,69,110,100,0,0,10,3258,3280,144,116,101,114,109,105,110,97,116,101,
+ 0,1,0,3841,3265,16,10,3196,3302,144,98,117,102,102,101,114,58,115,116,97,
+ 114,116,0,3841,3256,10,3286,3319,144,98,117,102,102,101,114,58,101,110,100,0,
+ 3841,3265,10,3305,3336,144,98,117,102,102,101,114,58,97,100,100,0,3841,3265,16,
+ 1,3265,2049,2988,2049,3280,10,3322,3360,144,98,117,102,102,101,114,58,103,101,116,
+ 0,1,3265,2049,3003,3841,3265,15,2049,3280,10,3346,3386,144,98,117,102,102,101,114,
+ 58,101,109,112,116,121,0,3841,3256,4097,3265,2049,3280,10,3370,3408,144,98,117,102,
+ 102,101,114,58,115,105,122,101,0,3841,3265,3841,3256,18,10,3393,3428,144,98,117,
+ 102,102,101,114,58,115,101,116,0,4097,3256,2049,3386,10,3414,3452,144,98,117,102,
+ 102,101,114,58,112,114,101,115,101,114,118,101,0,3841,3256,3841,3265,1793,3465,1,
+ 21,2049,2100,4097,3256,10,1,3458,2049,2100,4097,3265,10,3433,3487,131,84,101,109,112,
+ 83,116,114,105,110,103,115,0,32,3472,3505,131,84,101,109,112,83,116,114,105,
+ 110,103,77,97,120,0,512,3488,3517,144,83,84,82,73,78,71,83,0,2049,1543,
+ 3841,3487,3841,3505,19,18,10,3506,3537,131,67,117,114,114,101,110,116,0,4,10,
+ 3526,3552,144,115,58,112,111,105,110,116,101,114,0,3841,3537,3841,3505,19,2049,3517,
+ 17,10,3539,3571,144,115,58,110,101,120,116,0,1,3537,2049,2988,3841,3537,3841,3487,
+ 11,1793,3587,1,0,4097,3537,10,1,3582,9,10,3506,3601,144,115,58,116,101,109,
+ 112,0,2,2049,79,2049,2890,2049,3552,4,2049,3126,2049,3552,2049,3571,10,3591,3627,144,
+ 115,58,101,109,112,116,121,0,2049,3552,2049,3571,1,0,67502597,16,10,3616,3646,144,
+ 115,58,115,107,105,112,0,6,1793,3654,68223234,1,786703,0,10,1,3649,2049,2227,2049,
+ 2903,5,10,3636,3672,144,115,58,107,101,101,112,0,2049,1815,1793,3681,1,3646,2049,
+ 1774,10,1,3676,9,2049,1874,1,119,2049,2100,2049,131,10,3662,3705,156,112,114,101,
+ 102,105,120,58,39,0,2049,1815,1,3672,1,3601,2049,64,10,3693,3724,144,115,58,
+ 99,104,111,112,0,2049,3601,2,2049,79,67502597,17,2049,2903,1,0,4,16,10,3714,
+ 3751,144,115,58,114,101,118,101,114,115,101,0,1793,3793,2,2049,3601,2049,3428,1,
+ 79,1793,3769,2,2049,79,17,2049,2903,10,1,3762,2049,2122,4,1793,3783,2,15,2049,
+ 3336,2049,2903,10,1,3776,2049,2275,3,2049,3302,2049,3601,10,1,3753,2049,3452,10,3738,
+ 3811,144,115,58,112,114,101,112,101,110,100,0,2049,3601,1793,3835,2,2049,79,17,
+ 1793,3827,2,2049,79,2049,2890,10,1,3821,2049,2100,4,2049,3126,10,1,3815,2049,2110,
+ 10,3798,3852,144,115,58,97,112,112,101,110,100,0,4,2049,3811,10,3840,3870,144,
+ 115,58,102,111,114,45,101,97,99,104,0,1793,3885,67502597,6415,3,67502597,67502597,251987205,2054,
+ 101777670,1,1,3872,7,10,1,3872,8,771,10,3856,3904,144,115,58,105,110,100,101,
+ 120,45,111,102,0,4,1793,3918,68223234,1,6415,33883396,101450758,6404,3,1,3907,7,10,1,
+ 3907,1793,3927,18,2049,2903,772,10,1,3922,1793,3936,2049,79,67502597,11,10,1,3931,2049,
+ 2159,1793,3946,3,1,-1,10,1,3942,9,10,3890,3970,144,115,58,99,111,110,116,
+ 97,105,110,115,45,99,104,97,114,63,0,2049,3904,1,-1,12,10,3950,3986,144,
+ 115,58,104,97,115,104,0,1,5381,4,1793,3994,286458116,33,10,1,3991,2049,3870,10,
+ 3976,4006,131,83,114,99,0,0,3999,4014,131,84,97,114,0,0,4007,4022,131,80,
+ 97,100,0,0,4015,4028,131,73,0,0,4023,4034,131,70,0,0,4029,4041,131,65,
+ 116,0,0,4035,4055,144,116,101,114,109,105,110,97,116,101,0,1,0,3841,4022,
+ 3841,4014,2049,79,17,16,10,4042,4077,144,101,120,116,114,97,99,116,0,3841,4006,
+ 3841,4028,17,3841,4022,3841,4014,2049,79,2049,3126,10,4066,4102,144,99,111,109,112,97,
+ 114,101,0,3841,4022,3841,4014,2049,93,3841,4034,22,4097,4034,3841,4034,1793,4122,3841,4028,
+ 4097,4041,10,1,4117,2049,70,10,4091,4135,144,110,101,120,116,0,1,4028,2049,2988,
+ 10,3976,4162,144,115,58,99,111,110,116,97,105,110,115,45,115,116,114,105,110,
+ 103,63,0,4097,4014,4097,4006,2049,3627,4097,4022,1,0,4097,4028,1,0,4097,4034,3841,
+ 4006,2049,79,1793,4193,2049,4077,2049,4055,2049,4102,2049,4135,10,1,4184,2049,2275,3841,4034,
+ 10,4140,4207,131,83,116,114,0,0,4200,4219,144,101,120,116,114,97,99,116,0,
+ 2049,2090,3841,4207,4,2049,3126,3841,-1,67502597,17,1,0,4,16,10,4208,4244,144,99,
+ 104,101,99,107,0,1,4219,2049,2100,1793,4255,1,2890,2049,2100,10,1,4250,2049,2100,
+ 3841,4207,2049,3986,67502597,11,10,4235,4278,144,108,111,99,97,116,105,111,110,0,67503109,
+ 67503109,1793,4311,1793,4306,4,1793,4292,67502597,2049,2527,21,10,1,4287,2049,2100,4,1793,4302,
+ 772,2,10,1,4299,9,10,1,4284,2049,2100,10,1,4282,2049,2100,10,4266,4325,144,
+ 115,101,116,117,112,0,2049,3627,4097,4207,1,0,67503109,67503109,1,79,1,3986,2049,2122,
+ 2049,3627,2049,3428,1793,4349,67502597,2049,79,10,1,4345,2049,2100,4,10,4140,4376,144,115,
+ 58,105,110,100,101,120,45,111,102,45,115,116,114,105,110,103,0,67502597,1793,4402,
+ 1793,4395,2049,4325,1793,4390,2049,4244,2049,4278,10,1,4385,2049,2275,10,1,4381,2049,3452,
+ 771,3,10,1,4379,2049,2100,18,1,2,18,1,-1,2049,2828,10,4355,4427,144,115,
+ 58,102,105,108,116,101,114,0,1793,4455,2049,3627,2049,3428,4,1793,4447,2049,2090,4,
+ 8,1,3336,1,11,2049,64,10,1,4436,2049,3870,3,2049,3302,10,1,4429,2049,3452,
+ 10,4415,4469,144,115,58,109,97,112,0,1793,4491,2049,3627,2049,3428,4,1793,4483,67502597,
+ 8,2049,3336,10,1,4478,2049,3870,3,2049,3302,10,1,4471,2049,3452,10,4460,4508,144,
+ 115,58,115,117,98,115,116,114,0,1793,4514,17,2049,3627,10,1,4510,2049,2100,1793,
+ 4526,67502597,1,3126,2049,2100,10,1,4520,2049,2110,67502597,1793,4539,17,1,0,4,16,10,
+ 1,4533,2049,2100,10,4496,4555,144,115,58,114,105,103,104,116,0,67502597,2049,79,67502597,
+ 18,4,2049,4508,10,4544,4574,144,115,58,108,101,102,116,0,1,0,4,2049,4508,
+ 10,4564,4598,144,115,58,98,101,103,105,110,115,45,119,105,116,104,63,0,2,
+ 2049,79,1,13,2049,2100,2049,4574,2049,93,10,4580,4626,144,115,58,101,110,100,115,
+ 45,119,105,116,104,63,0,2,2049,79,1,13,2049,2100,2049,4555,2049,93,10,4610,
+ 4648,144,115,58,99,111,112,121,0,67502597,2049,79,2049,2890,2049,3126,10,4638,4668,144,
+ 115,58,68,73,71,73,84,83,0,2049,3646,48,49,50,51,52,53,54,55,56,
+ 57,0,1,4670,10,4656,4705,144,115,58,65,83,67,73,73,45,76,79,87,69,
+ 82,67,65,83,69,0,2049,3646,97,98,99,100,101,102,103,104,105,106,107,108,
+ 109,110,111,112,113,114,115,116,117,118,119,120,121,122,0,1,4707,10,4684,4758,
+ 144,115,58,65,83,67,73,73,45,85,80,80,69,82,67,65,83,69,0,2049,
+ 3646,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,
+ 84,85,86,87,88,89,90,0,1,4760,10,4737,4809,144,115,58,65,83,67,73,
+ 73,45,76,69,84,84,69,82,83,0,2049,3646,97,98,99,100,101,102,103,104,
+ 105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,65,66,
+ 67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,
+ 87,88,89,90,0,1,4811,10,4790,4884,144,115,58,80,85,78,67,84,85,65,
+ 84,73,79,78,0,2049,3646,95,33,34,35,36,37,38,39,40,41,42,43,44,
+ 45,46,47,58,59,60,61,62,63,64,91,92,93,94,96,123,124,125,126,0,
+ 1,4886,1,95,67502597,16,10,4867,4942,131,115,58,87,72,73,84,69,83,80,65,
+ 67,69,0,32,9,10,13,0,4926,4952,156,39,0,1,3627,2049,144,10,4947,4962,
+ 156,36,0,1,0,2049,131,10,4957,0,131,65,83,67,73,73,58,78,85,76,
+ 0,4967,27,131,65,83,67,73,73,58,69,83,67,0,4980,8,131,65,83,67,
+ 73,73,58,66,83,0,4993,9,131,65,83,67,73,73,58,72,84,0,5005,10,
+ 131,65,83,67,73,73,58,76,70,0,5017,11,131,65,83,67,73,73,58,86,
+ 84,0,5029,12,131,65,83,67,73,73,58,70,70,0,5041,13,131,65,83,67,
+ 73,73,58,67,82,0,5053,32,131,65,83,67,73,73,58,83,80,65,67,69,
+ 0,5065,127,131,65,83,67,73,73,58,68,69,76,0,5080,1,131,65,83,67,
+ 73,73,58,83,79,72,0,5093,2,131,65,83,67,73,73,58,83,84,88,0,
+ 5106,3,131,65,83,67,73,73,58,69,84,88,0,5119,4,131,65,83,67,73,
+ 73,58,69,79,84,0,5132,5,131,65,83,67,73,73,58,69,78,81,0,5145,
+ 6,131,65,83,67,73,73,58,65,67,75,0,5158,7,131,65,83,67,73,73,
+ 58,66,69,76,0,5171,14,131,65,83,67,73,73,58,83,79,0,5184,15,131,
+ 65,83,67,73,73,58,83,73,0,5196,16,131,65,83,67,73,73,58,68,76,
+ 69,0,5208,17,131,65,83,67,73,73,58,68,67,49,0,5221,18,131,65,83,
+ 67,73,73,58,68,67,50,0,5234,19,131,65,83,67,73,73,58,68,67,51,
+ 0,5247,20,131,65,83,67,73,73,58,68,67,52,0,5260,21,131,65,83,67,
+ 73,73,58,78,65,75,0,5273,22,131,65,83,67,73,73,58,83,89,78,0,
+ 5286,23,131,65,83,67,73,73,58,69,84,66,0,5299,24,131,65,83,67,73,
+ 73,58,67,65,78,0,5312,25,131,65,83,67,73,73,58,69,77,0,5325,26,
+ 131,65,83,67,73,73,58,83,85,66,0,5337,28,131,65,83,67,73,73,58,
+ 70,83,0,5350,29,131,65,83,67,73,73,58,71,83,0,5362,30,131,65,83,
+ 67,73,73,58,82,83,0,5374,31,131,65,83,67,73,73,58,85,83,0,5386,
+ 5414,144,99,58,108,111,119,101,114,99,97,115,101,63,0,1,97,1,122,2049,
+ 2921,10,5398,5437,144,99,58,117,112,112,101,114,99,97,115,101,63,0,1,65,
+ 1,90,2049,2921,10,5421,5457,144,99,58,108,101,116,116,101,114,63,0,1,5414,
+ 1,5437,2049,2122,22,10,5444,5477,144,99,58,100,105,103,105,116,63,0,1,48,
+ 1,57,2049,2921,10,5465,5498,144,99,58,118,105,115,105,98,108,101,63,0,1,
+ 32,1,126,2049,2921,10,5484,5517,144,99,58,118,111,119,101,108,63,0,2049,3646,
+ 97,101,105,111,117,65,69,73,79,85,0,1,5519,4,2049,3970,10,5505,5552,144,
+ 99,58,99,111,110,115,111,110,97,110,116,63,0,2,2049,5457,1793,5562,2049,5517,
+ 2049,2459,10,1,5557,1793,5570,3,2049,2362,10,1,5566,2049,64,10,5536,5592,144,99,
+ 58,119,104,105,116,101,115,112,97,99,101,63,0,1,4942,4,2049,3970,10,5575,
+ 5615,144,99,58,45,108,111,119,101,114,99,97,115,101,63,0,2049,5414,2049,2459,
+ 10,5598,5637,144,99,58,45,117,112,112,101,114,99,97,115,101,63,0,2049,5437,
+ 2049,2459,10,5620,5655,144,99,58,45,100,105,103,105,116,63,0,2049,5477,2049,2459,
+ 10,5642,5678,144,99,58,45,119,104,105,116,101,115,112,97,99,101,63,0,2049,
+ 5592,2049,2459,10,5660,5698,144,99,58,45,118,105,115,105,98,108,101,63,0,2049,
+ 5498,2049,2459,10,5683,5716,144,99,58,45,118,111,119,101,108,63,0,2049,5517,2049,
+ 2459,10,5703,5738,144,99,58,45,99,111,110,115,111,110,97,110,116,63,0,2049,
+ 5552,2049,2459,10,5721,5757,144,99,58,116,111,45,117,112,112,101,114,0,2,2049,
+ 5414,25,3,1,32,18,10,5743,5780,144,99,58,116,111,45,108,111,119,101,114,
+ 0,2,2049,5437,25,3,1,32,17,10,5766,5804,144,99,58,116,111,45,115,116,
+ 114,105,110,103,0,2049,3646,46,0,1,5806,2049,3601,1,36,2049,2110,10,5789,5834,
+ 144,99,58,116,111,103,103,108,101,45,99,97,115,101,0,2,2049,5414,1,5757,
+ 1,5780,2049,64,10,5817,5859,144,99,58,116,111,45,110,117,109,98,101,114,0,
+ 2,2049,5477,1793,5868,1,48,18,10,1,5864,1793,5876,3,1,0,10,1,5872,2049,
+ 64,10,5844,5895,144,115,58,116,111,45,117,112,112,101,114,0,1,5757,2049,4469,
+ 10,5881,5914,144,115,58,116,111,45,108,111,119,101,114,0,1,5780,2049,4469,10,
+ 5900,5934,144,115,58,116,114,105,109,45,108,101,102,116,0,2049,3601,1793,5948,2049,
+ 56,1,5592,1,2543,2049,2122,21,10,1,5938,2049,2227,2049,2903,10,5919,5971,144,115,
+ 58,116,114,105,109,45,114,105,103,104,116,0,2049,3601,2049,3751,2049,5934,2049,3751,
+ 10,5955,5990,144,115,58,116,114,105,109,0,2049,5971,2049,5934,10,5980,6006,144,99,
+ 111,114,114,101,99,116,0,2,1,48,13,1793,6021,1,48,67502597,18,1,2,19,
+ 17,10,1,6012,9,10,5980,6040,144,110,58,116,111,45,115,116,114,105,110,103,
+ 0,1793,6088,2049,1874,2049,3428,2,2049,2855,1793,6066,1,10,20,4,1,48,17,2049,
+ 6006,2049,3336,2,2049,2543,10,1,6051,2049,2227,3,2049,2562,1793,6080,1,45,2049,3336,
+ 10,1,6075,9,2049,3302,2049,3751,10,1,6042,2049,3452,10,6025,6115,131,82,101,119,
+ 114,105,116,101,85,110,100,101,114,115,99,111,114,101,115,0,-1,6093,6123,144,
+ 115,117,98,0,1,95,1793,6130,1,32,10,1,6127,2049,2373,10,6116,6146,144,114,
+ 101,119,114,105,116,101,0,3841,6115,1793,6155,1,6123,2049,4469,10,1,6150,9,10,
+ 6135,6169,144,104,97,110,100,108,101,0,1,3705,8,10,6093,6185,156,112,114,101,
+ 102,105,120,58,39,0,2049,6146,2049,6169,10,6173,6201,144,115,58,115,112,108,105,
+ 116,0,2049,2090,2049,3904,772,2049,2090,2049,4574,1,38,2049,2100,10,6190,6236,144,115,
+ 58,115,112,108,105,116,45,111,110,45,115,116,114,105,110,103,0,2049,2090,2049,
+ 4376,2049,2890,772,2049,2090,2049,4574,1,38,2049,2100,10,6215,6265,144,115,58,114,101,
+ 112,108,97,99,101,0,67502597,2049,79,2049,1874,16,1793,6281,2049,6236,4,2049,1874,15,
+ 17,10,1,6273,2049,2100,2049,3811,2049,3852,10,6252,6302,131,83,112,108,105,116,45,
+ 79,110,0,0,6290,6313,144,109,97,116,99,104,63,0,3841,6302,11,10,6303,6330,
+ 144,116,101,114,109,105,110,97,116,101,0,1,0,67502597,2049,2903,16,10,6317,6345,
+ 144,115,116,101,112,0,1,2890,2049,2100,2049,6313,1793,6359,2,2049,105,2049,6330,10,
+ 1,6353,9,10,6252,6377,144,115,58,116,111,107,101,110,105,122,101,0,4097,6302,
+ 2049,3672,2049,1874,1,0,2049,105,1793,6399,2,2049,105,2,1,6345,2049,3870,3,10,
+ 1,6389,2049,2100,2049,1874,67502597,18,2049,2903,67502597,16,10,6363,6422,131,78,101,101,100,
+ 108,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,6412,6557,131,76,101,110,0,0,6550,
+ 6568,131,84,111,107,101,110,115,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6558,6702,131,
+ 84,80,0,0,6696,6711,144,115,97,118,101,0,2049,3672,3841,6702,1,6568,17,2049,
+ 2890,16,1,6702,2049,2988,10,6703,6734,144,110,101,120,116,0,1793,6740,3841,6557,17,
+ 10,1,6736,2049,2110,10,6726,6754,144,100,111,110,101,63,0,2049,79,2049,2527,10,
+ 6363,6783,144,115,58,116,111,107,101,110,105,122,101,45,111,110,45,115,116,114,
+ 105,110,103,0,1,0,4097,6702,1793,6797,2,1,6422,2049,4648,2049,3852,10,1,6789,
+ 1793,6806,2049,79,4097,6557,10,1,6801,2049,2122,1793,6823,1,6422,2049,6236,2049,6711,2049,
+ 6734,2049,6754,10,1,6812,2049,2250,1,6568,3841,6702,2049,2903,4097,6568,10,6759,6848,144,
+ 102,111,114,45,101,97,99,104,0,4,2049,56,1,13,2049,2100,1793,6864,5,2049,
+ 56,84018692,525572,1542,10,1,6857,2049,2275,771,10,6836,6884,144,115,117,98,115,116,105,
+ 116,117,116,101,0,2049,3517,1,129,18,10,6870,6901,144,101,120,116,114,97,99,
+ 116,0,2049,6884,2049,4648,10,6890,6918,144,116,111,107,101,110,105,122,101,0,2049,
+ 6783,2049,3627,10,6906,6934,144,99,111,109,98,105,110,101,0,2049,6884,2049,3852,2049,
+ 3852,10,6923,6950,144,109,101,114,103,101,0,4,1,6934,2049,6848,772,10,6941,6969,
+ 144,102,105,110,100,45,101,110,100,0,2,2049,79,2049,6884,2049,79,18,67502597,17,
+ 10,6957,6989,144,99,108,101,97,110,0,2049,6969,1,0,4,16,10,6759,7013,144,
+ 115,58,114,101,112,108,97,99,101,45,97,108,108,0,1,3,1793,7028,2049,6901,
+ 2049,6918,2049,6950,2049,6989,2049,3601,10,1,7017,2049,3079,10,6996,7041,144,99,104,97,
+ 114,0,1,32,1793,7050,1,95,2049,3336,10,1,7045,2049,2373,1,114,1793,7063,1,
+ 13,2049,3336,10,1,7058,2049,2373,1,110,1793,7076,1,10,2049,3336,10,1,7071,2049,
+ 2373,1,116,1793,7089,1,9,2049,3336,10,1,7084,2049,2373,1,48,1793,7102,1,0,
+ 2049,3336,10,1,7097,2049,2373,2049,3336,10,7033,7117,144,116,121,112,101,0,1,99,
+ 1793,7125,4,2049,3336,10,1,7121,2049,2373,1,115,1793,7139,4,1,3336,2049,3870,10,
+ 1,7133,2049,2373,1,110,1793,7155,4,2049,6040,1,3336,2049,3870,10,1,7147,2049,2373,
+ 3,10,7109,7171,144,104,97,110,100,108,101,0,1,92,1793,7180,2049,56,2049,7041,
+ 10,1,7175,2049,2373,1,37,1793,7193,2049,56,2049,7117,10,1,7188,2049,2373,2049,3336,
+ 10,6996,7212,144,115,58,102,111,114,109,97,116,0,1793,7241,2049,3627,1793,7236,2049,
+ 3428,1793,7231,2049,56,25,2049,7171,1,7222,7,10,1,7222,8,3,10,1,7218,2049,
+ 2110,10,1,7214,2049,3452,10,7200,7257,144,115,58,99,111,110,115,116,0,1,3672,
+ 2049,2100,2049,2016,10,7246,7274,131,86,97,108,117,101,115,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,7264,7310,144,102,114,111,109,0,2049,79,2,1793,7328,1793,7321,1,7274,
+ 4113,10,1,7317,2049,2110,2049,2903,10,1,7315,2049,2275,3,10,7302,7340,144,116,111,
+ 0,2,2049,79,1793,7356,2049,56,1,97,18,2049,2890,1,7274,266001,10,1,7345,2049,
+ 2275,3,10,7246,7373,144,114,101,111,114,100,101,114,0,1,7310,2049,2100,2049,7340,
+ 10,7362,7389,144,99,117,114,114,121,0,2049,1874,1793,7399,4,2049,1728,2049,1751,10,
+ 1,7393,2049,2100,10,7380,7412,144,100,111,101,115,0,2049,1587,4,2049,7389,2049,1570,
+ 2049,158,16,1,144,2049,1646,10,7404,7441,144,100,58,102,111,114,45,101,97,99,
+ 104,0,1,2,1793,7467,6415,2049,2090,1793,7459,1793,7454,2052,10,1,7452,2049,2100,10,
+ 1,7450,2049,2100,1,7445,7,10,1,7445,8,3,10,7427,7487,144,100,58,108,111,
+ 111,107,117,112,45,120,116,0,1,0,4,1793,7512,2049,2090,2049,158,2831,1793,7505,
+ 4,1,2051,2049,2100,10,1,7499,1,11,2049,64,10,1,7492,2049,7441,3,10,7472,
+ 7530,144,97,58,108,101,110,103,116,104,0,15,10,7518,7553,144,97,58,99,111,
+ 117,110,116,101,100,45,114,101,115,117,108,116,115,0,8,2049,1874,1793,7566,2,
+ 2049,105,1,105,2049,2275,10,1,7558,2049,2100,10,7532,7588,144,97,58,102,114,111,
+ 109,45,115,116,114,105,110,103,0,2049,1874,1793,7602,2,2049,79,2049,105,1,105,
+ 2049,3870,10,1,7592,2049,2100,10,7571,7621,144,97,58,102,111,114,45,101,97,99,
+ 104,0,4,2049,56,1,13,2049,2100,1793,7637,5,2049,56,84018692,525572,1542,10,1,7630,
+ 2049,2275,771,10,7607,7652,144,97,58,100,117,112,0,2049,1874,1793,7665,2,15,2049,
+ 105,1,105,2049,7621,10,1,7656,2049,2100,10,7643,7680,144,97,58,99,111,112,121,
+ 0,1,3,1793,7696,4097,3,2,2049,7530,2049,105,1,105,2049,7621,10,1,7684,2049,
+ 3079,10,7670,7716,144,97,58,116,111,45,115,116,114,105,110,103,0,1,3,1793,
+ 7729,2049,7652,1,0,2049,105,2049,2890,10,1,7720,2049,3079,2049,3601,10,7701,7748,144,
+ 97,58,97,112,112,101,110,100,0,2049,2090,1,34,2049,2148,17,2049,1874,1793,7773,
+ 2049,105,1793,7768,1,105,2049,7621,10,1,7763,2049,2148,10,1,7759,2049,2100,10,7736,
+ 7791,144,97,58,112,114,101,112,101,110,100,0,4,2049,7748,10,7778,7805,144,97,
+ 58,99,104,111,112,0,2049,7652,1,-1,2049,3060,2,2049,3003,10,7795,7827,144,97,
+ 58,102,105,108,116,101,114,0,1793,7842,67502597,1,21,2049,2100,4,1,105,1,11,
+ 2049,64,10,1,7829,2049,7389,2049,1874,1793,7857,67502597,15,2049,105,2049,7621,10,1,7850,
+ 2049,2100,2049,1874,67502597,18,2049,2903,67502597,16,10,7815,7885,144,97,58,99,111,110,116,
+ 97,105,110,115,63,0,1,0,4,1793,7897,4,5,67502597,11,6,22,10,1,7890,
+ 2049,7621,772,10,7870,7925,144,97,58,99,111,110,116,97,105,110,115,45,115,116,
+ 114,105,110,103,63,0,1,0,4,1793,7938,4,5,67502597,2049,93,6,22,10,1,
+ 7930,2049,7621,772,10,7903,7953,144,97,58,109,97,112,0,1793,7959,8,2049,105,10,
+ 1,7955,2049,7389,2049,1874,1793,7974,67502597,15,2049,105,2049,7621,10,1,7967,2049,2100,10,
+ 7944,7992,144,97,58,114,101,118,101,114,115,101,0,2049,1874,1793,8026,2049,56,1793,
+ 8004,17,2049,2903,10,1,8000,2049,2110,2,2049,105,1793,8020,2,15,2049,105,2049,2903,
+ 10,1,8013,2049,2275,3,10,1,7996,2049,2100,10,7979,8039,144,97,58,116,104,0,
+ 17,2049,2890,10,8031,8054,144,97,58,102,101,116,99,104,0,2049,8039,15,10,8043,
+ 8069,144,97,58,115,116,111,114,101,0,2049,8039,16,10,8058,8085,144,97,58,114,
+ 101,100,117,99,101,0,1,13,2049,2100,2049,7621,10,8073,8104,144,105,100,101,110,
+ 116,105,102,121,0,1,-1,4,1,0,1793,8135,2049,2350,11,1793,8129,67502597,1,-1,
+ 11,1793,8125,772,2,10,1,8122,9,10,1,8116,9,2049,2890,10,1,8111,2049,8085,
+ 3,10,8073,8155,144,97,58,105,110,100,101,120,45,111,102,0,1,3,1793,8168,
+ 1,26,2049,7389,2049,7953,2049,8104,10,1,8159,2049,3079,10,8141,8194,144,97,58,105,
+ 110,100,101,120,45,111,102,45,115,116,114,105,110,103,0,1,3,1793,8207,1,
+ 93,2049,7389,2049,7953,2049,8104,10,1,8198,2049,3079,10,8173,8222,144,97,58,109,97,
+ 107,101,0,2049,7553,2049,7992,10,8212,8232,156,123,0,1,285,2049,156,1,1556,2049,
+ 144,1,285,2049,156,10,8227,8250,156,125,0,1,301,2049,156,1,2100,2049,144,1,
+ 1556,2049,144,1,13,2049,150,1,40,2049,150,1,2903,2049,144,1,301,2049,156,1,
+ 8222,2049,144,10,8245,8294,144,98,111,117,110,100,115,63,0,67502597,2049,7530,67502597,13,
+ 10,8283,8308,144,99,111,112,121,0,2049,56,2049,105,10,8300,8323,144,116,111,45,
+ 101,110,100,0,2,2049,7530,17,2049,2890,10,8245,8340,144,97,58,108,101,102,116,
+ 0,2049,8294,1793,8348,771,1,-1,10,1,8344,2049,2653,2049,1874,67502597,2049,105,1793,8369,
+ 1,2890,2049,2100,1,8308,2049,2275,3,10,1,8359,2049,2100,10,8330,8385,144,97,58,
+ 114,105,103,104,116,0,2049,8294,1793,8393,771,1,-1,10,1,8389,2049,2653,2049,1874,
+ 67502597,2049,105,1793,8416,4,2049,8323,67502597,18,4,1,8308,2049,2275,3,10,1,8404,2049,
+ 2100,10,8374,8433,144,97,58,109,105,100,100,108,101,0,1,2042,2049,2100,4,67502597,
+ 2049,8294,1793,8448,771,3,1,-1,10,1,8443,2049,2653,771,2049,2090,4,18,2049,2890,
+ 2049,1874,67502597,2049,105,1793,8483,772,1793,8473,17,2049,2890,10,1,8469,2049,2100,1,8308,
+ 2049,2275,3,10,1,8466,2049,2100,10,8421,8496,131,70,108,97,103,0,0,8488,8508,
+ 144,99,111,109,112,97,114,101,0,67440386,184946434,10,8497,8521,144,108,101,110,103,116,
+ 104,0,659202,10,8511,8531,144,110,101,120,116,0,17043713,1,1,2577,10,8523,8549,144,
+ 110,111,116,45,101,113,117,97,108,0,50529030,2561,0,10,8536,8561,144,108,111,111,
+ 112,0,524549,8531,2049,8508,18157313,8496,8496,16,420610310,1,1,8561,7,10,8421,8584,144,97,
+ 58,101,113,63,0,1048833,-1,8496,2049,8508,151066369,-1,8549,2049,8521,2049,8561,251724547,8496,10,
+ 8575,8609,144,97,58,45,101,113,63,0,2049,8584,2049,2459,10,8599,8632,144,97,58,
+ 98,101,103,105,110,115,45,119,105,116,104,63,0,1,3,1793,8648,2,2049,7530,
+ 1,13,2049,2100,2049,8340,2049,8584,10,1,8636,2049,3079,10,8614,8669,144,97,58,101,
+ 110,100,115,45,119,105,116,104,63,0,1,3,1793,8685,2,2049,7530,1,13,2049,
+ 2100,2049,8385,2049,8584,10,1,8673,2049,3079,10,8653,8706,144,99,117,114,114,101,110,
+ 116,45,108,105,110,101,0,2049,3517,1,1025,18,10,8690,8728,144,99,111,117,110,
+ 116,45,116,111,107,101,110,115,0,1793,8734,1,32,11,10,1,8730,2049,4427,2049,
+ 79,10,8712,8759,144,112,114,111,99,101,115,115,45,116,111,107,101,110,115,0,
+ 1793,8787,1,32,2049,6201,4,1793,8780,2,2049,79,2049,2543,1,365,1,11,2049,64,
+ 10,1,8768,2049,2100,2049,2890,10,1,8761,2049,2275,2049,365,10,8653,8808,144,115,58,
+ 101,118,97,108,117,97,116,101,0,2049,8706,2049,4648,2049,8706,2,2049,8728,2049,8759,
+ 10,8794,8826,131,76,80,0,0,8820,8836,131,73,110,100,101,120,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,8827,8876,144,110,101,120,116,0,3841,8826,1,
+ 8836,17,2049,2988,10,8868,8892,144,112,114,101,112,0,1,8826,2049,2988,1,0,3841,
+ 8826,1,8836,17,16,10,8884,8913,144,100,111,110,101,0,1,8826,2049,3003,10,8794,
+ 8923,144,73,0,3841,8826,1,8836,17,15,10,8918,8935,144,74,0,3841,8826,1,8836,
+ 17,2049,2903,15,10,8930,8949,144,75,0,3841,8826,1,8836,17,1,2,18,15,10,
+ 8944,8976,144,105,110,100,101,120,101,100,45,116,105,109,101,115,0,2049,8892,4,
+ 1793,8992,25,33886721,1,2053,1542,2049,8876,1,8981,7,10,1,8981,8,3,2049,8913,10,
+ 8959,9007,156,104,111,111,107,0,2049,3646,108,105,106,117,46,46,46,46,0,1,
+ 9009,2049,412,2049,1874,2049,2890,2049,105,10,8999,9041,144,115,101,116,45,104,111,111,
+ 107,0,2049,2890,16,10,9029,9055,144,117,110,104,111,111,107,0,2049,2890,2,2049,
+ 2890,4,16,10,9045,9079,144,105,111,58,101,110,117,109,101,114,97,116,101,0,
+ 27,10,9063,9093,144,105,111,58,113,117,101,114,121,0,28,10,9081,9108,144,105,
+ 111,58,105,110,118,111,107,101,0,29,10,9095,9125,144,105,111,58,115,99,97,
+ 110,45,102,111,114,0,1,-1,4,2049,9079,1793,9156,2049,8923,2049,9093,772,67502597,11,
+ 1793,9152,1793,9147,3,2049,8923,10,1,9143,2049,2100,10,1,9141,9,10,1,9132,2049,
+ 8976,3,10,9110,9171,144,99,58,112,117,116,0,1793,9173,1,0,2049,9108,10,9162,
+ 9184,144,110,108,0,1,10,2049,9171,10,9178,9195,144,115,112,0,1,32,2049,9171,
+ 10,9189,9207,144,116,97,98,0,1,9,2049,9171,10,9200,9221,144,115,58,112,117,
+ 116,0,1,9171,2049,3870,10,9212,9235,144,110,58,112,117,116,0,2049,6040,2049,9221,
+ 10,9226,9249,144,114,101,115,101,116,0,2049,1556,25,771,1,9249,7,10,9240,9271,
+ 144,100,117,109,112,45,115,116,97,99,107,0,2049,1556,25,134284547,9271,134283782,9235,2049,
+ 9195,10,9257,9289,144,70,82,69,69,0,2049,3517,1,1025,18,2049,1874,18,10,9281,
+ 9308,131,105,111,58,88,56,54,0,0,9298,9321,144,105,100,101,110,116,105,102,
+ 121,0,3841,9308,2049,2527,1793,9388,1,2000,2049,9125,2,2049,2562,1793,9376,3,2049,3646,
+ 73,79,32,68,69,86,73,67,69,32,84,89,80,69,32,50,48,48,48,32,
+ 78,79,84,32,70,79,85,78,68,0,1,9339,2049,9221,2049,9184,10,1,9336,1793,
+ 9383,4097,9308,10,1,9380,2049,64,10,1,9327,9,10,9281,9402,144,105,111,58,120,
+ 56,54,0,2049,9321,3841,9308,2049,9108,10,9392,9424,144,112,105,111,58,105,110,45,
+ 98,121,116,101,0,1,0,2049,9402,10,9409,9445,144,112,105,111,58,111,117,116,
+ 45,98,121,116,101,0,1,1,2049,9402,10,9429,9465,144,112,105,111,58,105,110,
+ 45,119,111,114,100,0,1,6,2049,9402,10,9450,9486,144,112,105,111,58,111,117,
+ 116,45,119,111,114,100,0,1,7,2049,9402,10,9470,9504,144,114,97,109,58,115,
+ 116,111,114,101,0,1,2,2049,9402,10,9491,9522,144,114,97,109,58,102,101,116,
+ 99,104,0,1,3,2049,9402,10,9509,9545,144,114,97,109,58,115,116,111,114,101,
+ 45,98,121,116,101,0,1,4,2049,9402,10,9527,9568,144,114,97,109,58,102,101,
+ 116,99,104,45,98,121,116,101,0,1,5,2049,9402,10,9550,9580,144,104,101,120,
+ 0,2,15,1,45,11,1793,9592,2049,2890,1,-1,10,1,9587,1793,9599,1,0,10,
+ 1,9596,2049,64,4,1,0,4,1793,9638,2049,3646,48,49,50,51,52,53,54,55,
+ 56,57,65,66,67,68,69,70,0,1,9611,4,2049,3904,17,1,16,19,10,1,
+ 9609,2049,3870,1,16,197652,4,25,19,10,9550,9661,156,112,114,101,102,105,120,58,
+ 48,0,2,2049,2903,2049,197,2049,2543,1793,9694,2049,2903,2049,197,1793,9680,2049,158,15,
+ 10,1,9676,1793,9688,2049,160,15,10,1,9684,2049,2122,8,10,1,9670,2049,2653,2049,
+ 2890,2049,9580,2049,131,10,9649,112,131,67,77,79,83,58,65,68,68,82,69,83,
+ 83,0,9705,113,131,67,77,79,83,58,68,65,84,65,0,9721,9747,144,114,116,
+ 99,58,113,117,101,114,121,0,1,112,2049,9445,1,113,2049,9424,10,9734,9770,144,
+ 114,116,99,58,115,101,99,111,110,100,0,1,0,2049,9747,10,9756,9789,144,114,
+ 116,99,58,109,105,110,117,116,101,0,1,2,2049,9747,10,9775,9806,144,114,116,
+ 99,58,104,111,117,114,0,1,4,2049,9747,10,9794,9822,144,114,116,99,58,100,
+ 97,121,0,1,7,2049,9747,10,9811,9840,144,114,116,99,58,109,111,110,116,104,
+ 0,1,8,2049,9747,10,9827,9857,144,114,116,99,58,121,101,97,114,0,1,9,
+ 2049,9747,10,9845,9870,144,116,105,109,101,0,2049,9806,2049,9235,1,58,2049,9171,2049,
+ 9789,2049,9235,2049,9184,10,9862,1016,131,115,101,114,105,97,108,58,67,79,77,49,
+ 0,9885,760,131,115,101,114,105,97,108,58,67,79,77,50,0,9900,1000,131,115,
+ 101,114,105,97,108,58,67,79,77,51,0,9915,744,131,115,101,114,105,97,108,
+ 58,67,79,77,52,0,9930,9965,144,115,101,114,105,97,108,58,114,101,99,101,
+ 105,118,101,100,63,0,3841,-1,1,5,17,2049,9424,1,1,21,2049,2543,10,9945,
+ 9995,144,115,101,114,105,97,108,58,101,109,112,116,121,63,0,3841,-1,1,5,
+ 17,2049,9424,1,32,21,2049,2543,10,9978,10023,144,115,101,114,105,97,108,58,114,
+ 101,97,100,0,2049,9965,1793,10032,3841,-1,2049,9424,10,1,10027,2049,2653,2049,10023,10,
+ 10008,10055,144,115,101,114,105,97,108,58,119,114,105,116,101,0,2049,9995,1793,10064,
+ 3841,-1,2049,9445,10,1,10059,2049,2653,2049,10055,10,10039,10086,144,115,101,114,105,97,
+ 108,58,115,101,110,100,0,1793,10091,2049,10055,10,1,10088,2049,3870,10,10071,10111,144,
+ 115,101,114,105,97,108,58,105,110,105,116,0,1,0,3841,-1,1,1,17,2049,
+ 9445,1,128,3841,-1,1,3,17,2049,9445,1,3,3841,-1,2049,9445,1,0,3841,-1,
+ 1,1,17,2049,9445,1,3,3841,-1,1,3,17,2049,9445,1,199,3841,-1,1,2,
+ 17,2049,9445,1,11,3841,-1,1,4,17,2049,9445,10,10096,753664,131,86,71,65,45,
+ 66,65,83,69,0,10172,80,131,67,79,76,85,77,78,83,0,10184,25,131,82,
+ 79,87,83,0,10195,980,131,86,71,65,45,67,85,82,83,79,82,0,10203,981,
+ 131,86,71,65,45,68,65,84,65,0,10217,10240,131,118,103,97,58,82,111,119,
+ 0,0,10229,10255,131,118,103,97,58,67,111,108,117,109,110,0,0,10241,10277,144,
+ 118,103,97,58,117,112,100,97,116,101,45,99,117,114,115,111,114,0,3841,10240,
+ 1,80,19,3841,10255,17,2,1,15,1,980,2049,9445,1,255,21,1,981,2049,9445,
+ 1,14,1,980,2049,9445,1,8,24,1,255,21,1,981,2049,9445,10,10256,10335,144,
+ 118,103,97,58,109,111,118,101,45,99,117,114,115,111,114,0,4097,10255,4097,10240,
+ 2049,10277,10,10316,10357,131,118,103,97,58,68,105,115,112,108,97,121,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
@@ -622,76 +620,76 @@ CELL ngaImage[] = { 1793,13738,13728,13826,202007,0,10,1,10,2,10,3,10,4,10,5,10,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
- 0,0,0,10366,12402,144,115,116,97,114,116,105,110,103,45,97,100,100,114,101,
- 115,115,0,1,753664,1,80,1,2,19,17,10,12382,12425,144,99,104,97,114,97,
- 99,116,101,114,115,0,1,25,2049,2907,1,80,19,10,12411,12446,144,115,97,118,
- 101,45,98,121,116,101,0,2,2049,9576,2049,3340,1,2,17,10,12433,12463,144,115,
- 97,118,101,0,1793,12468,2049,12446,10,1,12465,2049,2279,3,10,12455,12489,144,97,108,
- 108,45,98,117,116,45,116,111,112,0,1793,12502,1,10381,2049,3432,2049,12402,2049,12425,
- 2049,12463,10,1,12491,2049,3456,10,12474,12518,144,109,111,118,101,45,117,112,0,1,
- 753664,1,10381,1793,12531,67502597,2049,9553,1,2,17,10,1,12524,2049,3874,3,10,12507,12550,
- 144,108,97,115,116,45,108,105,110,101,0,1,753664,1,25,2049,2907,1,80,19,
- 1,2,19,17,10,12537,12573,144,101,114,97,115,101,0,1,32,67502597,2049,9553,1,
- 2,17,10,12564,12601,144,101,114,97,115,101,45,108,97,115,116,45,108,105,110,
- 101,0,2049,12550,1,80,1793,12610,2049,12573,10,1,12607,2049,2279,3,10,12582,12626,144,
- 115,99,114,111,108,108,0,2049,12489,2049,12518,2049,12601,10,12616,12645,144,112,111,115,
- 105,116,105,111,110,0,1,25,2049,2907,1,0,2049,10359,10,12633,12665,144,115,99,
- 114,111,108,108,63,0,3841,10264,1,25,11,10,10340,12683,144,118,103,97,58,119,
- 114,97,112,0,2049,12665,1793,12692,2049,12626,2049,12645,10,1,12687,9,2049,10301,10,12671,
- 12710,144,112,111,115,105,116,105,111,110,0,3841,10264,1,80,19,1,2,19,3841,
- 10279,1,2,19,17,1,753664,17,10,12698,12736,144,110,101,120,116,0,1,10279,2049,
- 2992,3841,10279,1,80,14,1793,12756,1,10264,2049,2992,1,0,4097,10279,10,1,12747,9,
- 2049,12683,10,12671,12775,144,118,103,97,58,99,58,112,117,116,0,1,10,1793,12790,
- 1,0,4097,10279,1,10264,2049,2992,2049,12683,10,1,12779,2049,2377,1,13,1793,12809,1,
- 0,4097,10279,1,10264,2049,2992,2049,12683,10,1,12798,2049,2377,1,8,1793,12832,1,10279,
- 2049,3007,1,32,2049,12775,1,10279,2049,3007,2049,10301,10,1,12817,2049,2377,2049,12710,2049,
- 9553,2049,12736,10,12762,12852,144,99,108,101,97,114,0,1,0,1,0,2049,10359,1,
- 753664,1,80,1,25,19,1793,12876,1,32,67502597,2049,9553,1,2,17,10,1,12867,2049,
- 2279,3,1,0,1,0,2049,10359,10,12843,12906,144,118,103,97,58,105,110,105,116,
- 105,97,108,105,122,101,0,1,1793,1,9179,1,2,17,16,1,12775,1,9179,1,
- 3,17,16,10,12888,12936,131,97,116,97,58,68,101,108,97,121,0,10000,12923,32,
- 131,97,116,97,58,82,69,65,68,0,12937,48,131,97,116,97,58,87,82,73,
- 84,69,0,12949,231,131,97,116,97,58,70,76,85,83,72,45,67,65,67,72,
- 69,0,12962,496,131,97,116,97,58,80,82,73,77,65,82,89,0,12981,496,131,
- 97,116,97,58,68,65,84,65,0,12996,497,131,97,116,97,58,69,82,82,79,
- 82,0,13008,497,131,97,116,97,58,70,69,65,84,85,82,69,83,0,13021,498,
- 131,97,116,97,58,83,69,67,84,79,82,45,67,79,85,78,84,0,13037,499,
- 131,97,116,97,58,83,69,67,84,79,82,45,78,85,77,66,69,82,0,13057,
- 500,131,97,116,97,58,67,89,76,73,78,68,69,82,45,76,79,87,0,13078,
- 501,131,97,116,97,58,67,89,76,73,78,68,69,82,45,72,73,71,72,0,
- 13098,502,131,97,116,97,58,68,82,73,86,69,0,13119,502,131,97,116,97,58,
- 72,69,65,68,0,13132,503,131,97,116,97,58,83,84,65,84,85,83,0,13144,
- 503,131,97,116,97,58,67,79,77,77,65,78,68,0,13158,1014,131,97,116,97,
- 58,80,82,73,77,65,82,89,45,68,67,82,45,65,83,0,13173,13212,144,97,
- 116,97,58,99,108,101,97,114,45,98,115,121,0,1793,13224,1,503,2049,9432,1,
- 128,21,2049,2531,10,1,13214,2049,2254,10,13195,13247,144,97,116,97,58,115,101,116,
- 45,115,101,99,116,111,114,0,1,224,1,502,2049,9453,1,0,1,497,2049,9453,
- 1,1,1,498,2049,9453,2,1,499,2049,9453,2,1,8,24,1,500,2049,9453,1,
- 16,24,1,501,2049,9453,10,13229,13294,144,109,97,115,107,0,1,255,21,10,13286,
- 13307,144,100,101,108,97,121,0,3841,12936,1793,13312,10,1,13311,2049,2279,10,13298,13334,
- 144,97,116,97,58,114,101,97,100,45,119,111,114,100,0,1,496,2049,9473,10,
- 13317,13353,144,115,116,111,114,101,45,119,111,114,100,0,1793,13362,2049,13294,67502597,16,
- 2049,2894,10,1,13355,2049,2114,1,8,24,67502597,16,2049,2894,10,13339,13386,144,97,116,
- 97,58,114,101,97,100,0,2049,13247,1,32,1,503,2049,9453,2049,13307,1,256,1793,
- 13405,2049,13334,2049,13353,10,1,13400,2049,2279,3,10,13374,13429,144,97,116,97,58,119,
- 114,105,116,101,45,119,111,114,100,0,1,496,2049,9494,10,13411,13448,144,102,101,
- 116,99,104,45,119,111,114,100,0,2049,56,1793,13458,2049,56,1,-8,24,10,1,
- 13452,2049,2104,17,10,13434,13477,144,97,116,97,58,119,114,105,116,101,0,2049,13247,
- 1,48,1,503,2049,9453,2049,13307,1,256,1793,13496,2049,13448,2049,13429,10,1,13491,2049,
- 2279,3,1,231,1,503,2049,9453,2049,13212,10,13464,13518,144,101,111,108,63,0,1793,
- 13524,1,13,11,10,1,13520,1793,13532,1,10,11,10,1,13528,1793,13540,1,32,11,
- 10,1,13536,2049,2163,22,22,10,13510,13557,144,118,97,108,105,100,63,0,2,2049,
- 79,2049,2547,10,13547,13575,144,99,104,101,99,107,45,98,115,0,2,1793,13582,1,
- 8,11,10,1,13578,1793,13590,1,127,11,10,1,13586,2049,2126,22,1793,13603,2049,3364,
- 2049,3364,771,10,1,13597,9,10,13464,13616,144,99,58,103,101,116,0,1793,13618,7425,
- 1,2,2049,9179,10,13607,13638,144,115,58,103,101,116,45,119,111,114,100,0,1793,
- 13665,1,1025,2049,3432,1793,13656,2049,13616,2,2049,3340,2049,13575,2049,13518,10,1,13646,2049,
- 2254,2049,3306,2049,3728,10,1,13640,2049,3456,10,13624,13679,144,115,58,103,101,116,0,
- 1793,13723,1,1025,2049,3432,1793,13714,2049,13616,2,2049,3340,2049,13575,1793,13700,1,13,11,
- 10,1,13696,1793,13708,1,10,11,10,1,13704,2049,2126,22,10,1,13687,2049,2254,2049,
- 3306,2049,3728,10,1,13681,2049,3456,10,13670,13738,144,108,105,115,116,101,110,0,2049,
- 12906,2049,12852,2049,3650,82,69,84,82,79,47,78,97,116,105,118,101,0,1,13744,
- 2049,9229,2049,9203,3841,4,1,100,20,2049,9243,1,46,2049,9179,2049,9243,2049,9192,2049,
- 13638,2049,13557,1,365,1,11,2049,64,1,13778,7,10,1793,13824,1,63,2049,9179,2049,
- 9203,2049,3650,119,111,114,100,32,110,111,116,32,102,111,117,110,100,0,1,13802,
- 2049,9229,2049,9192,10,1,13794,0 };
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10342,
+ 12378,144,115,116,97,114,116,105,110,103,45,97,100,100,114,101,115,115,0,1,
+ 753664,1,80,1,2,19,17,10,12358,12401,144,99,104,97,114,97,99,116,101,114,
+ 115,0,1,25,2049,2903,1,80,19,10,12387,12422,144,115,97,118,101,45,98,121,
+ 116,101,0,2,2049,9568,2049,3336,1,2,17,10,12409,12439,144,115,97,118,101,0,
+ 1793,12444,2049,12422,10,1,12441,2049,2275,3,10,12431,12465,144,97,108,108,45,98,117,
+ 116,45,116,111,112,0,1793,12478,1,10357,2049,3428,2049,12378,2049,12401,2049,12439,10,1,
+ 12467,2049,3452,10,12450,12494,144,109,111,118,101,45,117,112,0,1,753664,1,10357,1793,
+ 12507,67502597,2049,9545,1,2,17,10,1,12500,2049,3870,3,10,12483,12526,144,108,97,115,
+ 116,45,108,105,110,101,0,1,753664,1,25,2049,2903,1,80,19,1,2,19,17,
+ 10,12513,12549,144,101,114,97,115,101,0,1,32,67502597,2049,9545,1,2,17,10,12540,
+ 12577,144,101,114,97,115,101,45,108,97,115,116,45,108,105,110,101,0,2049,12526,
+ 1,80,1793,12586,2049,12549,10,1,12583,2049,2275,3,10,12558,12602,144,115,99,114,111,
+ 108,108,0,2049,12465,2049,12494,2049,12577,10,12592,12621,144,112,111,115,105,116,105,111,
+ 110,0,1,25,2049,2903,1,0,2049,10335,10,12609,12641,144,115,99,114,111,108,108,
+ 63,0,3841,10240,1,25,11,10,10316,12659,144,118,103,97,58,119,114,97,112,0,
+ 2049,12641,1793,12668,2049,12602,2049,12621,10,1,12663,9,2049,10277,10,12647,12686,144,112,111,
+ 115,105,116,105,111,110,0,3841,10240,1,80,19,1,2,19,3841,10255,1,2,19,
+ 17,1,753664,17,10,12674,12712,144,110,101,120,116,0,1,10255,2049,2988,3841,10255,1,
+ 80,14,1793,12732,1,10240,2049,2988,1,0,4097,10255,10,1,12723,9,2049,12659,10,12647,
+ 12751,144,118,103,97,58,99,58,112,117,116,0,1,10,1793,12766,1,0,4097,10255,
+ 1,10240,2049,2988,2049,12659,10,1,12755,2049,2373,1,13,1793,12785,1,0,4097,10255,1,
+ 10240,2049,2988,2049,12659,10,1,12774,2049,2373,1,8,1793,12808,1,10255,2049,3003,1,32,
+ 2049,12751,1,10255,2049,3003,2049,10277,10,1,12793,2049,2373,2049,12686,2049,9545,2049,12712,10,
+ 12738,12828,144,99,108,101,97,114,0,1,0,1,0,2049,10335,1,753664,1,80,1,
+ 25,19,1793,12852,1,32,67502597,2049,9545,1,2,17,10,1,12843,2049,2275,3,1,0,
+ 1,0,2049,10335,10,12819,12882,144,118,103,97,58,105,110,105,116,105,97,108,105,
+ 122,101,0,1,1793,1,9171,1,2,17,16,1,12751,1,9171,1,3,17,16,10,
+ 12864,32,131,97,116,97,58,82,69,65,68,0,12899,48,131,97,116,97,58,87,
+ 82,73,84,69,0,12911,231,131,97,116,97,58,70,76,85,83,72,45,67,65,
+ 67,72,69,0,12924,496,131,97,116,97,58,80,82,73,77,65,82,89,0,12943,
+ 496,131,97,116,97,58,68,65,84,65,0,12958,497,131,97,116,97,58,69,82,
+ 82,79,82,0,12970,497,131,97,116,97,58,70,69,65,84,85,82,69,83,0,
+ 12983,498,131,97,116,97,58,83,69,67,84,79,82,45,67,79,85,78,84,0,
+ 12999,499,131,97,116,97,58,83,69,67,84,79,82,45,78,85,77,66,69,82,
+ 0,13019,500,131,97,116,97,58,67,89,76,73,78,68,69,82,45,76,79,87,
+ 0,13040,501,131,97,116,97,58,67,89,76,73,78,68,69,82,45,72,73,71,
+ 72,0,13060,502,131,97,116,97,58,68,82,73,86,69,0,13081,502,131,97,116,
+ 97,58,72,69,65,68,0,13094,503,131,97,116,97,58,83,84,65,84,85,83,
+ 0,13106,503,131,97,116,97,58,67,79,77,77,65,78,68,0,13120,1014,131,97,
+ 116,97,58,80,82,73,77,65,82,89,45,68,67,82,45,65,83,0,13135,13174,
+ 144,97,116,97,58,99,108,101,97,114,45,98,115,121,0,1793,13186,1,503,2049,
+ 9424,1,128,21,2049,2527,10,1,13176,2049,2250,10,13157,13209,144,97,116,97,58,115,
+ 101,116,45,115,101,99,116,111,114,0,1,224,1,502,2049,9445,1,0,1,497,
+ 2049,9445,1,1,1,498,2049,9445,2,1,499,2049,9445,2,1,8,24,1,500,2049,
+ 9445,1,16,24,1,501,2049,9445,10,13191,13256,144,109,97,115,107,0,1,255,21,
+ 10,13248,13269,144,100,101,108,97,121,0,3841,-1,1793,13274,10,1,13273,2049,2275,10,
+ 13260,13296,144,97,116,97,58,114,101,97,100,45,119,111,114,100,0,1,496,2049,
+ 9465,10,13279,13315,144,115,116,111,114,101,45,119,111,114,100,0,1793,13324,2049,13256,
+ 67502597,16,2049,2890,10,1,13317,2049,2110,1,8,24,67502597,16,2049,2890,10,13301,13348,144,
+ 97,116,97,58,114,101,97,100,0,2049,13209,1,32,1,503,2049,9445,2049,13269,1,
+ 256,1793,13367,2049,13296,2049,13315,10,1,13362,2049,2275,3,10,13336,13391,144,97,116,97,
+ 58,119,114,105,116,101,45,119,111,114,100,0,1,496,2049,9486,10,13373,13410,144,
+ 102,101,116,99,104,45,119,111,114,100,0,2049,56,1793,13420,2049,56,1,-8,24,
+ 10,1,13414,2049,2100,17,10,13396,13439,144,97,116,97,58,119,114,105,116,101,0,
+ 2049,13209,1,48,1,503,2049,9445,2049,13269,1,256,1793,13458,2049,13410,2049,13391,10,1,
+ 13453,2049,2275,3,1,231,1,503,2049,9445,2049,13174,10,13426,13480,144,101,111,108,63,
+ 0,1793,13486,1,13,11,10,1,13482,1793,13494,1,10,11,10,1,13490,1793,13502,1,
+ 32,11,10,1,13498,2049,2159,22,22,10,13472,13519,144,118,97,108,105,100,63,0,
+ 2,2049,79,2049,2543,10,13509,13537,144,99,104,101,99,107,45,98,115,0,2,1793,
+ 13544,1,8,11,10,1,13540,1793,13552,1,127,11,10,1,13548,2049,2122,22,1793,13565,
+ 2049,3360,2049,3360,771,10,1,13559,9,10,13426,13578,144,99,58,103,101,116,0,1793,
+ 13580,7425,1,2,2049,9171,10,13569,13600,144,115,58,103,101,116,45,119,111,114,100,
+ 0,1793,13627,1,1025,2049,3428,1793,13618,2049,13578,2,2049,3336,2049,13537,2049,13480,10,1,
+ 13608,2049,2250,2049,3302,2049,3724,10,1,13602,2049,3452,10,13586,13641,144,115,58,103,101,
+ 116,0,1793,13685,1,1025,2049,3428,1793,13676,2049,13578,2,2049,3336,2049,13537,1793,13662,1,
+ 13,11,10,1,13658,1793,13670,1,10,11,10,1,13666,2049,2122,22,10,1,13649,2049,
+ 2250,2049,3302,2049,3724,10,1,13643,2049,3452,10,13632,13700,144,108,105,115,116,101,110,
+ 0,2049,12882,2049,12828,2049,3646,82,69,84,82,79,47,78,97,116,105,118,101,0,
+ 1,13706,2049,9221,2049,9195,3841,4,1,100,20,2049,9235,1,46,2049,9171,2049,9235,2049,
+ 9184,2049,13600,2049,13519,1,365,1,11,2049,64,1,13740,7,10,1793,13786,1,63,2049,
+ 9171,2049,9195,2049,3646,119,111,114,100,32,110,111,116,32,102,111,117,110,100,0,
+ 1,13764,2049,9221,2049,9184,10,1,13756,0 };
diff --git a/vm/nga-c/retro-image.c b/vm/nga-c/retro-image.c
index 19a1b05..8aa3d36 100644
--- a/vm/nga-c/retro-image.c
+++ b/vm/nga-c/retro-image.c
@@ -2,8 +2,8 @@
#ifndef CELL
#define CELL int32_t
#endif
-CELL ngaImageCells = 14847;
-CELL ngaImage[] = { 1793,14167,14829,14846,202007,0,10,1,10,2,10,3,10,4,10,5,10,6,10,
+CELL ngaImageCells = 14944;
+CELL ngaImage[] = { 1793,14264,14926,14943,202007,0,10,1,10,2,10,3,10,4,10,5,10,6,10,
7,10,8,10,9,10,10,11,10,12,10,13,10,14,10,15,10,16,10,17,
10,18,10,19,10,20,10,21,10,22,10,23,10,24,10,25,10,68223234,1,2575,
85000450,1,656912,139,138,268505089,63,62,135205121,63,10,101384453,0,9,10,2049,56,25,459011,74,
@@ -11,7 +11,7 @@ CELL ngaImage[] = { 1793,14167,14829,14846,202007,0,10,1,10,2,10,3,10,4,10,5,10,
84,524545,88,64,167838467,-1,134287105,3,59,659457,3,459023,105,2049,56,25,2049,105,1793,112,
2049,112,117506307,0,105,0,524545,25,110,168820993,0,124,1642241,124,134283523,7,110,1793,105,7,
524545,2049,105,1793,105,16846593,124,139,138,1793,64,16846593,124,110,138,1793,64,7,10,659713,
- 1,659713,2,659713,3,17108737,3,2,524559,105,2049,105,2049,105,2049,119,168820998,2,13260,1025,
+ 1,659713,2,659713,3,17108737,3,2,524559,105,2049,105,2049,105,2049,119,168820998,2,13357,1025,
167841793,177,5,17826049,0,177,2,15,25,524546,162,134287105,178,93,2305,179,459023,187,134287361,178,
182,659201,177,2049,56,25,84152833,48,286458116,10,459014,202,184618754,45,25,16974851,-1,168886532,1,134284289,
1,211,134284289,0,202,660227,32,0,0,112,114,101,102,105,120,58,105,0,285278479,228,
@@ -160,7 +160,7 @@ CELL ngaImage[] = { 1793,14167,14829,14846,202007,0,10,1,10,2,10,3,10,4,10,5,10,
983556,1793,3087,1,21,2049,2100,10,1,3082,2049,2100,4100,10,3065,3105,144,118,58,117,
112,100,97,116,101,0,4,1793,3112,15,4,8,10,1,3108,2049,2110,16,10,3093,
3126,144,99,111,112,121,0,1793,3135,285278725,1,33951492,268767489,1,6,10,1,3128,2049,2275,
- 771,10,3118,3154,144,83,99,111,112,101,76,105,115,116,0,14617,14669,10,3141,3163,
+ 771,10,3118,3154,144,83,99,111,112,101,76,105,115,116,0,14714,14766,10,3141,3163,
144,123,123,0,2049,1570,2,1,3154,2049,59,16,10,3157,3188,144,45,45,45,114,
101,118,101,97,108,45,45,45,0,2049,1570,1,3154,2049,2890,16,10,3172,3202,144,
125,125,0,1,3154,2049,56,4,15,11,1793,3216,3841,3154,4097,2,10,1,3211,1793,
@@ -491,258 +491,263 @@ CELL ngaImage[] = { 1793,14167,14829,14846,202007,0,10,1,10,2,10,3,10,4,10,5,10,
9473,2,2049,9583,4,10,9670,9730,144,102,105,108,101,58,111,112,101,110,60,102,
111,114,45,97,112,112,101,110,100,62,0,1,2,2049,9473,2,2049,9583,4,10,
9705,9765,144,102,105,108,101,58,111,112,101,110,60,102,111,114,45,119,114,105,
- 116,105,110,103,62,0,1,1,2049,9473,10,9739,9777,131,70,73,68,0,0,9770,
- 9786,131,83,105,122,101,0,0,9778,9797,131,65,99,116,105,111,110,0,0,9787,
- 9808,131,66,117,102,102,101,114,0,0,9798,9818,144,45,101,111,102,63,0,3841,
- 9777,2049,9547,3841,9786,13,10,9809,9838,144,112,114,101,115,101,114,118,101,0,1,
- 9777,1793,9849,1,9786,1,21,2049,3079,10,1,9842,2049,3079,10,9739,9872,144,102,105,
- 108,101,58,114,101,97,100,45,108,105,110,101,0,4097,9777,1793,9929,2049,1874,2,
- 4097,9808,2049,3428,1793,9921,3841,9777,2049,9510,2,2049,3336,1793,9898,1,13,11,10,1,
- 9894,1793,9906,1,10,11,10,1,9902,1793,9914,1,0,11,10,1,9910,2049,2159,22,
- 22,10,1,9885,2049,2250,2049,3360,3,10,1,9876,2049,3452,3841,9808,10,9854,9958,144,
- 102,105,108,101,58,102,111,114,45,101,97,99,104,45,108,105,110,101,0,1793,
- 9989,4097,9797,2049,9696,4097,9777,4097,9786,1793,9980,3841,9777,2049,9872,3841,9797,8,2049,9818,
- 10,1,9970,2049,2227,3841,9777,2049,9492,10,1,9960,2049,9838,10,9936,10001,131,70,73,
- 68,0,0,9936,10016,144,102,105,108,101,58,115,108,117,114,112,0,1793,10043,4,
- 2049,3428,2049,9696,4097,10001,1793,10034,3841,10001,2049,9510,2049,3336,10,1,10027,2049,2275,3841,
- 10001,2049,9492,10,1,10018,2049,3452,10,10002,10061,144,102,105,108,101,58,115,112,101,
- 119,0,2049,9765,4,1793,10070,67502597,2049,9529,10,1,10066,2049,3870,2049,9492,10,10048,10084,
- 131,70,80,85,0,0,10077,10097,144,105,100,101,110,116,105,102,121,0,3841,10084,
- 2049,2527,1793,10164,1,2,2049,9125,2,2049,2562,1793,10152,3,2049,3646,73,79,32,68,
- 69,86,73,67,69,32,84,89,80,69,32,48,48,48,50,32,78,79,84,32,
- 70,79,85,78,68,0,1,10115,2049,9221,2049,9184,10,1,10112,1793,10159,4097,10084,10,
- 1,10156,2049,64,10,1,10103,9,10,10048,10190,144,105,111,58,102,108,111,97,116,
- 45,111,112,101,114,97,116,105,111,110,0,2049,10097,3841,10084,2049,9108,10,10168,10211,
- 144,110,58,116,111,45,102,108,111,97,116,0,1,0,2049,10190,10,10197,10230,144,
- 115,58,116,111,45,102,108,111,97,116,0,1,1,2049,10190,10,10216,10250,144,102,
- 58,116,111,45,110,117,109,98,101,114,0,1,2,2049,10190,10,10235,10270,144,102,
- 58,116,111,45,115,116,114,105,110,103,0,2049,3627,2,1,3,2049,10190,10,10255,
- 10285,144,102,58,43,0,1,4,2049,10190,10,10278,10297,144,102,58,45,0,1,5,
- 2049,10190,10,10290,10309,144,102,58,42,0,1,6,2049,10190,10,10302,10321,144,102,58,
- 47,0,1,7,2049,10190,10,10314,10337,144,102,58,102,108,111,111,114,0,1,8,
- 2049,10190,10,10326,10355,144,102,58,99,101,105,108,105,110,103,0,1,9,2049,10190,
- 10,10342,10370,144,102,58,115,113,114,116,0,1,10,2049,10190,10,10360,10384,144,102,
- 58,101,113,63,0,1,11,2049,10190,10,10375,10399,144,102,58,45,101,113,63,0,
- 1,12,2049,10190,10,10389,10413,144,102,58,108,116,63,0,1,13,2049,10190,10,10404,
- 10427,144,102,58,103,116,63,0,1,14,2049,10190,10,10418,10443,144,102,58,100,101,
- 112,116,104,0,1,15,2049,10190,10,10432,10457,144,102,58,100,117,112,0,1,16,
- 2049,10190,10,10448,10472,144,102,58,100,114,111,112,0,1,17,2049,10190,10,10462,10487,
- 144,102,58,115,119,97,112,0,1,18,2049,10190,10,10477,10501,144,102,58,108,111,
- 103,0,1,19,2049,10190,10,10492,10517,144,102,58,112,111,119,101,114,0,1,20,
- 2049,10190,10,10506,10531,144,102,58,115,105,110,0,1,21,2049,10190,10,10522,10545,144,
- 102,58,99,111,115,0,1,22,2049,10190,10,10536,10559,144,102,58,116,97,110,0,
- 1,23,2049,10190,10,10550,10574,144,102,58,97,115,105,110,0,1,24,2049,10190,10,
- 10564,10589,144,102,58,97,99,111,115,0,1,25,2049,10190,10,10579,10604,144,102,58,
- 97,116,97,110,0,1,26,2049,10190,10,10594,10619,144,102,58,112,117,115,104,0,
- 1,27,2049,10190,10,10609,10633,144,102,58,112,111,112,0,1,28,2049,10190,10,10624,
- 10650,144,102,58,97,100,101,112,116,104,0,1,29,2049,10190,10,10638,10667,144,102,
- 58,115,113,117,97,114,101,0,2049,10457,2049,10309,10,10655,10682,144,102,58,111,118,
- 101,114,0,2049,10619,2049,10457,2049,10633,2049,10487,10,10672,10701,144,102,58,116,117,99,
- 107,0,2049,10457,2049,10619,2049,10487,2049,10633,10,10691,10719,144,102,58,110,105,112,0,
- 2049,10487,2049,10472,10,10710,10739,144,102,58,100,114,111,112,45,112,97,105,114,0,
- 2049,10472,2049,10472,10,10724,10758,144,102,58,100,117,112,45,112,97,105,114,0,2049,
- 10682,2049,10682,10,10744,10772,144,102,58,114,111,116,0,2049,10619,2049,10487,2049,10633,2049,
- 10487,10,10763,10796,144,102,58,112,111,115,105,116,105,118,101,63,0,1,0,2049,
- 10211,2049,10427,10,10781,10818,144,102,58,110,101,103,97,116,105,118,101,63,0,1,
- 0,2049,10211,2049,10413,10,10803,10837,144,102,58,110,101,103,97,116,101,0,1,-1,
- 2049,10211,2049,10309,10,10825,10853,144,102,58,97,98,115,0,2049,10457,2049,10818,1,10837,
- 9,10,10844,10873,156,112,114,101,102,105,120,58,46,0,2049,1815,1,3672,1,3601,
- 2049,64,1,10230,2049,144,10,10861,10895,144,102,58,112,117,116,0,2049,10270,2049,9221,
- 10,10886,10908,144,102,58,80,73,0,2049,3646,51,46,49,52,49,53,57,50,0,
- 1,10910,2049,10230,10,10900,10931,144,102,58,69,0,2049,3646,50,46,55,49,56,50,
- 56,49,0,1,10933,2049,10230,10,10924,10956,144,102,58,78,65,78,0,2049,3646,48,
- 0,1,10958,2049,10230,2049,3646,48,0,1,10966,2049,10230,2049,10321,10,10947,10984,144,102,
- 58,73,78,70,0,2049,3646,49,46,48,0,1,10986,2049,10230,2049,3646,48,0,1,
- 10996,2049,10230,2049,10321,10,10975,11015,144,102,58,45,73,78,70,0,2049,3646,45,49,
- 46,48,0,1,11017,2049,10230,2049,3646,48,0,1,11028,2049,10230,2049,10321,10,11005,11047,
- 144,102,58,110,97,110,63,0,2049,10457,2049,10399,10,11037,11062,144,102,58,105,110,
- 102,63,0,2049,10984,2049,10384,10,11052,11078,144,102,58,45,105,110,102,63,0,2049,
- 11015,2049,10384,10,11067,11094,144,102,58,114,111,117,110,100,0,2049,10457,2049,10818,1793,
- 11115,2049,3646,48,46,53,0,1,11102,2049,10230,2049,10297,2049,10355,10,1,11100,1793,11134,
- 2049,3646,48,46,53,0,1,11121,2049,10230,2049,10285,2049,10337,10,1,11119,2049,64,10,
- 11083,11148,144,102,58,109,105,110,0,2049,10758,2049,10413,1,10472,1,10719,2049,64,10,
- 11139,11168,144,102,58,109,97,120,0,2049,10758,2049,10427,1,10472,1,10719,2049,64,10,
- 11159,11190,144,102,58,108,105,109,105,116,0,2049,10487,2049,10619,2049,11148,2049,10633,2049,
- 11168,10,11179,11215,144,102,58,98,101,116,119,101,101,110,63,0,2049,10772,2049,10457,
- 2049,10619,2049,10772,2049,10772,2049,11190,2049,10633,2049,10384,10,11201,11241,144,102,58,105,110,
- 99,0,2049,3646,49,0,1,11243,2049,10230,2049,10285,10,11232,11261,144,102,58,100,101,
- 99,0,2049,3646,49,0,1,11263,2049,10230,2049,10297,10,11252,11282,144,102,58,99,97,
- 115,101,0,2049,10682,2049,10384,1793,11294,2049,10472,8,1,-1,10,1,11288,1793,11302,3,
- 1,0,10,1,11298,2049,64,25,6,771,10,11272,11320,144,102,58,115,105,103,110,
- 0,2049,10457,2049,3646,48,0,1,11324,2049,10230,2049,10384,1793,11339,1,0,2049,10472,10,
- 1,11334,2049,2653,2049,3646,48,0,1,11345,2049,10230,2049,10427,1793,11358,1,1,10,1,
- 11355,1793,11365,1,-1,10,1,11362,2049,64,10,11310,2147483645,131,101,58,77,65,88,0,
- 11370,-2147483645,131,101,58,77,73,78,0,11379,-2147483647,131,101,58,78,65,78,0,11388,2147483646,
- 131,101,58,73,78,70,0,11397,-2147483646,131,101,58,45,73,78,70,0,11406,11424,144,
- 101,58,110,63,0,1,-2147483645,2049,2890,1,2147483645,2049,2903,2049,2921,10,11416,11445,144,101,
- 58,109,97,120,63,0,1,2147483645,11,10,11435,11459,144,101,58,109,105,110,63,0,
- 1,-2147483645,11,10,11449,11474,144,101,58,122,101,114,111,63,0,2049,2527,10,11463,11487,
- 144,101,58,110,97,110,63,0,1,-2147483647,11,10,11477,11501,144,101,58,105,110,102,
- 63,0,1,2147483646,11,10,11491,11516,144,101,58,45,105,110,102,63,0,1,-2147483646,11,
- 10,11505,11530,144,101,58,99,108,105,112,0,1,-2147483645,1,2147483645,2049,2873,10,11520,11545,
- 144,102,58,69,49,0,1793,11547,2049,3646,49,46,101,53,0,1,11549,2049,10230,10,
- 11537,11571,144,102,58,45,115,104,105,102,116,0,2049,11545,2049,10309,10,11559,11588,144,
- 102,58,43,115,104,105,102,116,0,2049,11545,2049,10321,10,11576,11610,144,102,58,115,
- 105,103,110,101,100,45,115,113,114,116,0,2049,10457,2049,11320,2049,10853,2049,10370,2049,
- 10211,2049,10309,10,11593,11636,144,102,58,43,101,110,99,111,100,101,0,2049,11610,2049,
- 11571,10,11623,11654,144,102,58,45,101,110,99,111,100,101,0,2049,10457,2049,11320,2049,
- 11588,2049,10457,2049,10309,2049,10211,2049,10309,10,11641,11688,144,102,58,115,105,103,110,101,
- 100,45,115,113,117,97,114,101,0,2049,10457,2049,11320,2049,10457,2049,10309,2049,10211,2049,
- 10309,10,11669,11711,144,102,58,116,111,45,101,0,2049,10457,2049,11047,1793,11722,2049,10472,
- 1,-2147483647,10,1,11717,2049,2653,2049,10457,2049,11062,1793,11737,2049,10472,1,2147483646,10,1,11732,
- 2049,2653,2049,10457,2049,11078,1793,11752,2049,10472,1,-2147483646,10,1,11747,2049,2653,2049,11636,2049,
- 11094,2049,10250,2049,11530,1,-2147483645,1793,11771,2049,10472,10,1,11768,2049,2373,1,2147483645,1793,11782,
- 2049,10472,10,1,11779,2049,2373,10,11701,11797,144,101,58,116,111,45,102,0,1,-2147483647,
- 1793,11804,2049,10956,10,1,11801,2049,2373,1,2147483646,1793,11815,2049,10984,10,1,11812,2049,2373,
- 1,-2147483646,1793,11826,2049,11015,10,1,11823,2049,2373,2049,10211,2049,11654,10,11787,11846,144,102,
- 58,115,116,111,114,101,0,1793,11851,2049,11711,10,1,11848,2049,2100,16,10,11835,11868,
- 144,102,58,102,101,116,99,104,0,15,2049,11797,10,11857,11888,144,102,58,100,117,
- 109,112,45,115,116,97,99,107,0,2049,10443,2,1,10619,2049,2275,1793,11906,2049,10633,
- 2049,10457,2049,10895,2049,9195,10,1,11897,2049,2275,10,11872,11928,144,102,58,100,117,109,
- 112,45,97,115,116,97,99,107,0,2049,10650,2,1,10633,2049,2275,1793,11946,2049,10457,
- 2049,10895,2049,9195,2049,10619,10,1,11937,2049,2275,10,11911,11960,144,101,58,112,117,116,
- 0,1,2147483645,1793,11977,2049,3646,101,58,77,65,88,0,1,11966,2049,9221,10,1,11964,
- 2049,2373,1,-2147483645,1793,11998,2049,3646,101,58,77,73,78,0,1,11987,2049,9221,10,1,
- 11985,2049,2373,1,0,1793,12017,2049,3646,101,58,48,0,1,12008,2049,9221,10,1,12006,
- 2049,2373,1,-2147483647,1793,12038,2049,3646,101,58,78,65,78,0,1,12027,2049,9221,10,1,
- 12025,2049,2373,1,2147483646,1793,12059,2049,3646,101,58,73,78,70,0,1,12048,2049,9221,10,
- 1,12046,2049,2373,1,-2147483646,1793,12081,2049,3646,101,58,45,73,78,70,0,1,12069,2049,
- 9221,10,1,12067,2049,2373,2049,11797,2049,10895,10,11951,12098,131,85,110,105,120,0,0,
- 12090,12111,144,105,100,101,110,116,105,102,121,0,3841,12098,2049,2527,1793,12178,1,8,
- 2049,9125,2,2049,2562,1793,12166,3,2049,3646,73,79,32,68,69,86,73,67,69,32,
- 84,89,80,69,32,48,48,48,56,32,78,79,84,32,70,79,85,78,68,0,
- 1,12129,2049,9221,2049,9184,10,1,12126,1793,12173,4097,12098,10,1,12170,2049,64,10,1,
- 12117,9,10,11951,12201,144,105,111,58,117,110,105,120,45,115,121,115,99,97,108,
- 108,0,2049,12111,3841,12098,2049,9108,10,12182,12223,144,117,110,105,120,58,115,121,115,
- 116,101,109,0,1,0,2049,12201,10,12208,12241,144,117,110,105,120,58,102,111,114,
- 107,0,1,1,2049,12201,10,12228,12260,144,117,110,105,120,58,101,120,101,99,48,
- 0,1,2,2049,12201,10,12246,12279,144,117,110,105,120,58,101,120,101,99,49,0,
- 1,3,2049,12201,10,12265,12298,144,117,110,105,120,58,101,120,101,99,50,0,1,
- 4,2049,12201,10,12284,12317,144,117,110,105,120,58,101,120,101,99,51,0,1,5,
- 2049,12201,10,12303,12335,144,117,110,105,120,58,101,120,105,116,0,1,6,2049,12201,
- 10,12322,12355,144,117,110,105,120,58,103,101,116,112,105,100,0,1,7,2049,12201,
- 10,12340,12373,144,117,110,105,120,58,119,97,105,116,0,1,8,2049,12201,10,12360,
- 12391,144,117,110,105,120,58,107,105,108,108,0,1,9,2049,12201,10,12378,12410,144,
- 117,110,105,120,58,112,111,112,101,110,0,1,10,2049,12201,10,12396,12430,144,117,
- 110,105,120,58,112,99,108,111,115,101,0,1,11,2049,12201,10,12415,12449,144,117,
- 110,105,120,58,99,104,100,105,114,0,1,13,2049,12201,10,12435,12469,144,117,110,
- 105,120,58,103,101,116,101,110,118,0,1,14,2049,12201,10,12454,12489,144,117,110,
- 105,120,58,112,117,116,101,110,118,0,1,15,2049,12201,10,12474,12508,144,117,110,
- 105,120,58,115,108,101,101,112,0,1,16,2049,12201,10,12494,12529,144,117,110,105,
- 120,58,103,101,116,45,99,119,100,0,2049,3646,112,119,100,0,1,12531,1,0,
- 2049,12410,2,2049,9872,2049,5990,4,2049,12430,2049,3646,47,0,1,12551,2049,3852,10,12513,
- 12585,144,117,110,105,120,58,99,111,117,110,116,45,102,105,108,101,115,45,105,
- 110,45,99,119,100,0,2049,3646,108,115,32,45,49,32,124,32,119,99,32,45,
- 108,0,1,12587,1,0,2049,12410,2,2049,9872,2049,5990,2049,218,4,2049,12430,10,12558,
- 12640,144,117,110,105,120,58,102,111,114,45,101,97,99,104,45,102,105,108,101,
- 0,2049,3646,108,115,32,45,49,32,45,112,0,1,12642,1,0,2049,12410,2049,12585,
- 1793,12675,1793,12670,2049,9872,2049,3601,67502597,8,10,1,12663,2049,2110,10,1,12661,2049,2275,
- 2049,12430,3,10,12618,12692,144,115,116,97,114,116,0,4,2049,3428,1,0,2049,12410,
- 10,12683,12708,144,114,101,97,100,0,2,2049,9510,2,2049,3336,2049,2527,10,12700,12727,
- 144,102,105,110,105,115,104,0,2049,12430,2049,3408,10,12618,12751,144,117,110,105,120,
- 58,115,108,117,114,112,45,112,105,112,101,0,1793,12767,2049,12692,1793,12760,2049,12708,
- 10,1,12757,2049,2250,2049,12727,10,1,12753,2049,3452,10,12732,12778,131,105,111,0,0,
- 12772,12791,144,105,100,101,110,116,105,102,121,0,3841,12778,2049,2527,1793,12858,1,10,
- 2049,9125,2,2049,2562,1793,12846,3,2049,3646,73,79,32,68,69,86,73,67,69,32,
- 84,89,80,69,32,48,48,49,48,32,78,79,84,32,70,79,85,78,68,0,
- 1,12809,2049,9221,2049,9184,10,1,12806,1793,12853,4097,12778,10,1,12850,2049,64,10,1,
- 12797,9,10,12732,12882,144,105,111,58,114,110,103,45,111,112,101,114,97,116,105,
- 111,110,0,2049,12791,3841,12778,2049,9108,10,12862,12901,144,110,58,114,97,110,100,111,
- 109,0,2049,12882,10,12889,12915,131,83,111,99,107,101,116,115,0,0,12904,12928,144,
- 105,100,101,110,116,105,102,121,0,3841,12915,2049,2527,1793,12995,1,7,2049,9125,2,
- 2049,2562,1793,12983,3,2049,3646,73,79,32,68,69,86,73,67,69,32,84,89,80,
- 69,32,48,48,48,52,32,78,79,84,32,70,79,85,78,68,0,1,12946,2049,
- 9221,2049,9184,10,1,12943,1793,12990,4097,12915,10,1,12987,2049,64,10,1,12934,9,10,
- 12889,13022,144,105,111,58,115,111,99,107,101,116,45,111,112,101,114,97,116,105,
- 111,110,0,2049,12928,3841,12915,2049,9108,10,12999,13053,144,115,111,99,107,101,116,58,
- 103,101,116,104,111,115,116,98,121,110,97,109,101,0,1,0,2049,13022,10,13029,
- 13075,144,115,111,99,107,101,116,58,99,114,101,97,116,101,0,1,1,2049,13022,
- 10,13058,13095,144,115,111,99,107,101,116,58,98,105,110,100,0,1,2,2049,13022,
- 10,13080,13117,144,115,111,99,107,101,116,58,108,105,115,116,101,110,0,1,3,
- 2049,13022,10,13100,13139,144,115,111,99,107,101,116,58,97,99,99,101,112,116,0,
- 1,4,2049,13022,10,13122,13162,144,115,111,99,107,101,116,58,99,111,110,110,101,
- 99,116,0,1,5,2049,13022,10,13144,13182,144,115,111,99,107,101,116,58,115,101,
- 110,100,0,1,6,2049,13022,10,13167,13202,144,115,111,99,107,101,116,58,114,101,
- 99,118,0,1,8,2049,13022,10,13187,13223,144,115,111,99,107,101,116,58,99,108,
- 111,115,101,0,1,10,2049,13022,10,13207,13248,144,115,111,99,107,101,116,58,99,
- 111,110,102,105,103,117,114,101,0,1,11,2049,13022,10,13228,1024,131,84,73,66,
- 0,13253,13274,144,105,109,97,103,101,58,115,97,118,101,0,1,1000,2049,9125,2049,
- 9108,10,13260,13293,131,75,101,121,98,111,97,114,100,0,0,13281,13306,144,105,100,
- 101,110,116,105,102,121,0,3841,13293,2049,2527,1793,13373,1,1,2049,9125,2,2049,2562,
- 1793,13361,3,2049,3646,73,79,32,68,69,86,73,67,69,32,84,89,80,69,32,
- 48,48,48,49,32,78,79,84,32,70,79,85,78,68,0,1,13324,2049,9221,2049,
- 9184,10,1,13321,1793,13368,4097,13293,10,1,13365,2049,64,10,1,13312,9,10,13260,13386,
- 144,99,58,103,101,116,0,2049,13306,3841,13293,2049,9108,10,13377,13403,144,103,97,116,
- 104,101,114,0,2,1793,13410,1,8,11,10,1,13406,1793,13418,1,127,11,10,1,
- 13414,2049,2122,22,1,11,1,3336,2049,64,10,13393,13439,144,99,121,99,108,101,0,
- 2049,13386,2049,2090,4,8,2049,2459,25,3,2049,13403,1,13439,7,10,13377,13470,144,112,
- 97,114,115,101,45,117,110,116,105,108,0,1793,13482,2049,3627,2049,3428,2049,13439,771,
- 2049,3302,10,1,13472,2049,3452,10,13455,13496,144,115,58,103,101,116,0,1793,13518,1793,
- 13504,1,10,11,10,1,13500,1793,13512,1,13,11,10,1,13508,2049,2122,22,10,1,
- 13498,2049,13470,10,13487,13537,144,115,58,103,101,116,45,119,111,114,100,0,1,5592,
- 2049,13470,10,13523,13555,131,83,99,114,105,112,116,105,110,103,0,7,13542,13568,144,
- 105,100,101,110,116,105,102,121,0,3841,13555,2049,2527,1793,13635,1,9,2049,9125,2,
- 2049,2562,1793,13623,3,2049,3646,73,79,32,68,69,86,73,67,69,32,84,89,80,
- 69,32,48,48,48,57,32,78,79,84,32,70,79,85,78,68,0,1,13586,2049,
- 9221,2049,9184,10,1,13583,1793,13630,4097,13555,10,1,13627,2049,64,10,1,13574,9,10,
- 13523,13651,144,115,121,115,58,97,114,103,99,0,2049,13568,1,0,3841,13555,2049,9108,
- 10,13639,13672,144,115,121,115,58,97,114,103,118,0,2049,3627,4,2049,13568,1,1,
- 3841,13555,2049,9108,10,13660,13695,144,105,110,99,108,117,100,101,0,2049,13568,1,2,
- 3841,13555,2049,9108,10,13684,13716,144,115,121,115,58,110,97,109,101,0,2049,3627,2049,
- 13568,1,3,3841,13555,2049,9108,10,13704,13736,144,99,108,101,97,114,0,1,27,2049,
- 9171,2049,3646,91,50,74,0,1,13742,2049,9221,1,27,2049,9171,2049,3646,91,48,59,
- 48,72,0,1,13756,2049,9221,10,13727,13777,131,78,111,69,99,104,111,0,0,13767,
- 13785,144,98,121,101,0,1,0,2049,12335,10,13778,13801,144,118,101,114,115,105,111,
- 110,0,3841,4,1,100,20,10,13790,13816,144,100,111,110,101,63,0,1793,13822,1,
- 13,11,10,1,13818,1793,13830,1,10,11,10,1,13826,1793,13838,1,32,11,10,1,
- 13834,2049,2159,22,22,10,13807,13855,144,118,97,108,105,100,63,0,2,2049,79,2049,
- 2609,10,13845,13874,144,99,104,101,99,107,45,101,111,102,0,2,1793,13881,1,-1,
- 11,10,1,13877,1793,13889,1,4,11,10,1,13885,2049,2122,22,1,13785,9,10,13861,
- 13904,144,98,115,0,2049,3360,2049,3360,771,10,13898,13922,144,99,104,101,99,107,45,
- 98,115,0,2,1793,13929,1,8,11,10,1,13925,1793,13937,1,127,11,10,1,13933,
- 2049,2122,22,1,13904,9,10,13910,13955,144,99,104,101,99,107,0,2049,13874,2049,13922,
- 10,13946,13973,144,99,104,97,114,97,99,116,101,114,0,2049,13386,2,2049,3336,10,
- 13960,13989,144,98,117,102,102,101,114,0,1793,13999,1,1024,2049,3428,8,2049,3302,10,
- 1,13991,2049,3452,10,13979,14018,144,114,101,97,100,45,116,111,107,101,110,0,1793,
- 14034,1793,14029,2049,13973,2049,13955,2049,13816,10,1,14022,2049,2250,10,1,14020,2049,13989,2049,
- 3724,10,14004,14050,144,105,110,112,117,116,0,2049,14018,2049,13855,10,14041,14066,144,112,
- 114,111,99,101,115,115,0,1,365,1,11,2049,64,10,13778,14083,144,98,97,110,
- 110,101,114,0,2049,13801,2049,3646,82,69,84,82,79,32,49,50,32,40,37,110,
- 46,37,110,41,92,110,0,1,14087,2049,7212,2049,9221,2049,1543,2049,1874,18,2049,1874,
- 2049,1543,2049,3646,37,110,32,77,97,120,44,32,37,110,32,85,115,101,100,44,
- 32,37,110,32,70,114,101,101,92,110,0,1,14123,2049,7212,2049,9221,10,14073,14167,
- 144,108,105,115,116,101,110,0,3841,13777,1793,14174,2049,14083,10,1,14171,2049,70,2049,
- 14050,2049,14066,1,14178,7,10,14157,14195,131,67,108,111,99,107,0,0,14186,14208,144,
- 105,100,101,110,116,105,102,121,0,3841,14195,2049,2527,1793,14275,1,5,2049,9125,2,
- 2049,2562,1793,14263,3,2049,3646,73,79,32,68,69,86,73,67,69,32,84,89,80,
- 69,32,48,48,48,53,32,78,79,84,32,70,79,85,78,68,0,1,14226,2049,
- 9221,2049,9184,10,1,14223,1793,14270,4097,14195,10,1,14267,2049,64,10,1,14214,9,10,
- 14157,14301,144,105,111,58,99,108,111,99,107,45,111,112,101,114,97,116,105,111,
- 110,0,2049,14208,3841,14195,2049,9108,10,14279,14327,144,99,108,111,99,107,58,116,105,
- 109,101,115,116,97,109,112,0,1,0,2049,14301,10,14308,14345,144,99,108,111,99,
- 107,58,100,97,121,0,1,1,2049,14301,10,14332,14365,144,99,108,111,99,107,58,
- 109,111,110,116,104,0,1,2,2049,14301,10,14350,14384,144,99,108,111,99,107,58,
- 121,101,97,114,0,1,3,2049,14301,10,14370,14403,144,99,108,111,99,107,58,104,
- 111,117,114,0,1,4,2049,14301,10,14389,14424,144,99,108,111,99,107,58,109,105,
- 110,117,116,101,0,1,5,2049,14301,10,14408,14445,144,99,108,111,99,107,58,115,
- 101,99,111,110,100,0,1,6,2049,14301,10,14429,14467,144,99,108,111,99,107,58,
- 117,116,99,58,100,97,121,0,1,7,2049,14301,10,14450,14491,144,99,108,111,99,
- 107,58,117,116,99,58,109,111,110,116,104,0,1,8,2049,14301,10,14472,14514,144,
- 99,108,111,99,107,58,117,116,99,58,121,101,97,114,0,1,9,2049,14301,10,
- 14496,14537,144,99,108,111,99,107,58,117,116,99,58,104,111,117,114,0,1,10,
- 2049,14301,10,14519,14562,144,99,108,111,99,107,58,117,116,99,58,109,105,110,117,
- 116,101,0,1,11,2049,14301,10,14542,14587,144,99,108,111,99,107,58,117,116,99,
- 58,115,101,99,111,110,100,0,1,12,2049,14301,10,14567,14603,144,100,58,119,111,
- 114,100,115,0,1793,14612,2049,162,2049,9221,2049,9195,10,1,14605,2049,7441,10,14592,14633,
- 144,100,58,119,111,114,100,115,45,119,105,116,104,0,2049,1874,2049,4648,1793,14664,
- 2049,162,2,2049,1874,2049,4162,1793,14653,2049,9221,2049,9195,10,1,14648,1793,14659,3,10,
- 1,14657,2049,64,10,1,14639,2049,7441,10,14617,14688,144,100,105,115,112,108,97,121,
- 45,105,102,45,108,101,102,116,0,2,2049,1874,2049,4598,1793,14700,2049,9221,2049,9195,
- 10,1,14695,1793,14706,3,10,1,14704,2049,64,10,14617,14737,144,100,58,119,111,114,
- 100,115,45,98,101,103,105,110,110,105,110,103,45,119,105,116,104,0,2049,1874,
- 2049,4648,1793,14748,2049,162,2049,14688,10,1,14743,2049,7441,10,14711,14774,144,116,105,109,
- 101,115,60,119,105,116,104,45,105,110,100,101,120,62,0,2049,8976,10,14753,14787,
- 144,118,97,114,60,110,62,0,2049,1991,10,14777,14806,144,100,58,108,97,115,116,
- 60,110,97,109,101,62,0,2049,1630,10,14790,14826,144,100,58,108,97,115,116,60,
- 99,108,97,115,115,62,0,2049,1609,10,14809,14843,144,100,58,108,97,115,116,60,
- 120,116,62,0,2049,1587,10,0 };
+ 116,105,110,103,62,0,1,1,2049,9473,10,9739,9795,144,102,105,108,101,58,111,
+ 112,101,110,45,102,111,114,45,114,101,97,100,105,110,103,0,1,0,2049,9473,
+ 2,2049,9583,4,10,9770,9828,144,102,105,108,101,58,111,112,101,110,45,102,111,
+ 114,45,97,112,112,101,110,100,0,1,2,2049,9473,2,2049,9583,4,10,9804,9862,
+ 144,102,105,108,101,58,111,112,101,110,45,102,111,114,45,119,114,105,116,105,
+ 110,103,0,1,1,2049,9473,10,9837,9874,131,70,73,68,0,0,9867,9883,131,83,
+ 105,122,101,0,0,9875,9894,131,65,99,116,105,111,110,0,0,9884,9905,131,66,
+ 117,102,102,101,114,0,0,9895,9915,144,45,101,111,102,63,0,3841,9874,2049,9547,
+ 3841,9883,13,10,9906,9935,144,112,114,101,115,101,114,118,101,0,1,9874,1793,9946,
+ 1,9883,1,21,2049,3079,10,1,9939,2049,3079,10,9837,9969,144,102,105,108,101,58,
+ 114,101,97,100,45,108,105,110,101,0,4097,9874,1793,10026,2049,1874,2,4097,9905,2049,
+ 3428,1793,10018,3841,9874,2049,9510,2,2049,3336,1793,9995,1,13,11,10,1,9991,1793,10003,
+ 1,10,11,10,1,9999,1793,10011,1,0,11,10,1,10007,2049,2159,22,22,10,1,
+ 9982,2049,2250,2049,3360,3,10,1,9973,2049,3452,3841,9905,10,9951,10055,144,102,105,108,
+ 101,58,102,111,114,45,101,97,99,104,45,108,105,110,101,0,1793,10086,4097,9894,
+ 2049,9795,4097,9874,4097,9883,1793,10077,3841,9874,2049,9969,3841,9894,8,2049,9915,10,1,10067,
+ 2049,2227,3841,9874,2049,9492,10,1,10057,2049,9935,10,10033,10098,131,70,73,68,0,0,
+ 10033,10113,144,102,105,108,101,58,115,108,117,114,112,0,1793,10140,4,2049,3428,2049,
+ 9795,4097,10098,1793,10131,3841,10098,2049,9510,2049,3336,10,1,10124,2049,2275,3841,10098,2049,9492,
+ 10,1,10115,2049,3452,10,10099,10158,144,102,105,108,101,58,115,112,101,119,0,2049,
+ 9862,4,1793,10167,67502597,2049,9529,10,1,10163,2049,3870,2049,9492,10,10145,10181,131,70,80,
+ 85,0,0,10174,10194,144,105,100,101,110,116,105,102,121,0,3841,10181,2049,2527,1793,
+ 10261,1,2,2049,9125,2,2049,2562,1793,10249,3,2049,3646,73,79,32,68,69,86,73,
+ 67,69,32,84,89,80,69,32,48,48,48,50,32,78,79,84,32,70,79,85,
+ 78,68,0,1,10212,2049,9221,2049,9184,10,1,10209,1793,10256,4097,10181,10,1,10253,2049,
+ 64,10,1,10200,9,10,10145,10287,144,105,111,58,102,108,111,97,116,45,111,112,
+ 101,114,97,116,105,111,110,0,2049,10194,3841,10181,2049,9108,10,10265,10308,144,110,58,
+ 116,111,45,102,108,111,97,116,0,1,0,2049,10287,10,10294,10327,144,115,58,116,
+ 111,45,102,108,111,97,116,0,1,1,2049,10287,10,10313,10347,144,102,58,116,111,
+ 45,110,117,109,98,101,114,0,1,2,2049,10287,10,10332,10367,144,102,58,116,111,
+ 45,115,116,114,105,110,103,0,2049,3627,2,1,3,2049,10287,10,10352,10382,144,102,
+ 58,43,0,1,4,2049,10287,10,10375,10394,144,102,58,45,0,1,5,2049,10287,10,
+ 10387,10406,144,102,58,42,0,1,6,2049,10287,10,10399,10418,144,102,58,47,0,1,
+ 7,2049,10287,10,10411,10434,144,102,58,102,108,111,111,114,0,1,8,2049,10287,10,
+ 10423,10452,144,102,58,99,101,105,108,105,110,103,0,1,9,2049,10287,10,10439,10467,
+ 144,102,58,115,113,114,116,0,1,10,2049,10287,10,10457,10481,144,102,58,101,113,
+ 63,0,1,11,2049,10287,10,10472,10496,144,102,58,45,101,113,63,0,1,12,2049,
+ 10287,10,10486,10510,144,102,58,108,116,63,0,1,13,2049,10287,10,10501,10524,144,102,
+ 58,103,116,63,0,1,14,2049,10287,10,10515,10540,144,102,58,100,101,112,116,104,
+ 0,1,15,2049,10287,10,10529,10554,144,102,58,100,117,112,0,1,16,2049,10287,10,
+ 10545,10569,144,102,58,100,114,111,112,0,1,17,2049,10287,10,10559,10584,144,102,58,
+ 115,119,97,112,0,1,18,2049,10287,10,10574,10598,144,102,58,108,111,103,0,1,
+ 19,2049,10287,10,10589,10614,144,102,58,112,111,119,101,114,0,1,20,2049,10287,10,
+ 10603,10628,144,102,58,115,105,110,0,1,21,2049,10287,10,10619,10642,144,102,58,99,
+ 111,115,0,1,22,2049,10287,10,10633,10656,144,102,58,116,97,110,0,1,23,2049,
+ 10287,10,10647,10671,144,102,58,97,115,105,110,0,1,24,2049,10287,10,10661,10686,144,
+ 102,58,97,99,111,115,0,1,25,2049,10287,10,10676,10701,144,102,58,97,116,97,
+ 110,0,1,26,2049,10287,10,10691,10716,144,102,58,112,117,115,104,0,1,27,2049,
+ 10287,10,10706,10730,144,102,58,112,111,112,0,1,28,2049,10287,10,10721,10747,144,102,
+ 58,97,100,101,112,116,104,0,1,29,2049,10287,10,10735,10764,144,102,58,115,113,
+ 117,97,114,101,0,2049,10554,2049,10406,10,10752,10779,144,102,58,111,118,101,114,0,
+ 2049,10716,2049,10554,2049,10730,2049,10584,10,10769,10798,144,102,58,116,117,99,107,0,2049,
+ 10554,2049,10716,2049,10584,2049,10730,10,10788,10816,144,102,58,110,105,112,0,2049,10584,2049,
+ 10569,10,10807,10836,144,102,58,100,114,111,112,45,112,97,105,114,0,2049,10569,2049,
+ 10569,10,10821,10855,144,102,58,100,117,112,45,112,97,105,114,0,2049,10779,2049,10779,
+ 10,10841,10869,144,102,58,114,111,116,0,2049,10716,2049,10584,2049,10730,2049,10584,10,10860,
+ 10893,144,102,58,112,111,115,105,116,105,118,101,63,0,1,0,2049,10308,2049,10524,
+ 10,10878,10915,144,102,58,110,101,103,97,116,105,118,101,63,0,1,0,2049,10308,
+ 2049,10510,10,10900,10934,144,102,58,110,101,103,97,116,101,0,1,-1,2049,10308,2049,
+ 10406,10,10922,10950,144,102,58,97,98,115,0,2049,10554,2049,10915,1,10934,9,10,10941,
+ 10970,156,112,114,101,102,105,120,58,46,0,2049,1815,1,3672,1,3601,2049,64,1,
+ 10327,2049,144,10,10958,10992,144,102,58,112,117,116,0,2049,10367,2049,9221,10,10983,11005,
+ 144,102,58,80,73,0,2049,3646,51,46,49,52,49,53,57,50,0,1,11007,2049,
+ 10327,10,10997,11028,144,102,58,69,0,2049,3646,50,46,55,49,56,50,56,49,0,
+ 1,11030,2049,10327,10,11021,11053,144,102,58,78,65,78,0,2049,3646,48,0,1,11055,
+ 2049,10327,2049,3646,48,0,1,11063,2049,10327,2049,10418,10,11044,11081,144,102,58,73,78,
+ 70,0,2049,3646,49,46,48,0,1,11083,2049,10327,2049,3646,48,0,1,11093,2049,10327,
+ 2049,10418,10,11072,11112,144,102,58,45,73,78,70,0,2049,3646,45,49,46,48,0,
+ 1,11114,2049,10327,2049,3646,48,0,1,11125,2049,10327,2049,10418,10,11102,11144,144,102,58,
+ 110,97,110,63,0,2049,10554,2049,10496,10,11134,11159,144,102,58,105,110,102,63,0,
+ 2049,11081,2049,10481,10,11149,11175,144,102,58,45,105,110,102,63,0,2049,11112,2049,10481,
+ 10,11164,11191,144,102,58,114,111,117,110,100,0,2049,10554,2049,10915,1793,11212,2049,3646,
+ 48,46,53,0,1,11199,2049,10327,2049,10394,2049,10452,10,1,11197,1793,11231,2049,3646,48,
+ 46,53,0,1,11218,2049,10327,2049,10382,2049,10434,10,1,11216,2049,64,10,11180,11245,144,
+ 102,58,109,105,110,0,2049,10855,2049,10510,1,10569,1,10816,2049,64,10,11236,11265,144,
+ 102,58,109,97,120,0,2049,10855,2049,10524,1,10569,1,10816,2049,64,10,11256,11287,144,
+ 102,58,108,105,109,105,116,0,2049,10584,2049,10716,2049,11245,2049,10730,2049,11265,10,11276,
+ 11312,144,102,58,98,101,116,119,101,101,110,63,0,2049,10869,2049,10554,2049,10716,2049,
+ 10869,2049,10869,2049,11287,2049,10730,2049,10481,10,11298,11338,144,102,58,105,110,99,0,2049,
+ 3646,49,0,1,11340,2049,10327,2049,10382,10,11329,11358,144,102,58,100,101,99,0,2049,
+ 3646,49,0,1,11360,2049,10327,2049,10394,10,11349,11379,144,102,58,99,97,115,101,0,
+ 2049,10779,2049,10481,1793,11391,2049,10569,8,1,-1,10,1,11385,1793,11399,3,1,0,10,
+ 1,11395,2049,64,25,6,771,10,11369,11417,144,102,58,115,105,103,110,0,2049,10554,
+ 2049,3646,48,0,1,11421,2049,10327,2049,10481,1793,11436,1,0,2049,10569,10,1,11431,2049,
+ 2653,2049,3646,48,0,1,11442,2049,10327,2049,10524,1793,11455,1,1,10,1,11452,1793,11462,
+ 1,-1,10,1,11459,2049,64,10,11407,2147483645,131,101,58,77,65,88,0,11467,-2147483645,131,
+ 101,58,77,73,78,0,11476,-2147483647,131,101,58,78,65,78,0,11485,2147483646,131,101,58,
+ 73,78,70,0,11494,-2147483646,131,101,58,45,73,78,70,0,11503,11521,144,101,58,110,
+ 63,0,1,-2147483645,2049,2890,1,2147483645,2049,2903,2049,2921,10,11513,11542,144,101,58,109,97,
+ 120,63,0,1,2147483645,11,10,11532,11556,144,101,58,109,105,110,63,0,1,-2147483645,11,
+ 10,11546,11571,144,101,58,122,101,114,111,63,0,2049,2527,10,11560,11584,144,101,58,
+ 110,97,110,63,0,1,-2147483647,11,10,11574,11598,144,101,58,105,110,102,63,0,1,
+ 2147483646,11,10,11588,11613,144,101,58,45,105,110,102,63,0,1,-2147483646,11,10,11602,11627,
+ 144,101,58,99,108,105,112,0,1,-2147483645,1,2147483645,2049,2873,10,11617,11642,144,102,58,
+ 69,49,0,1793,11644,2049,3646,49,46,101,53,0,1,11646,2049,10327,10,11634,11668,144,
+ 102,58,45,115,104,105,102,116,0,2049,11642,2049,10406,10,11656,11685,144,102,58,43,
+ 115,104,105,102,116,0,2049,11642,2049,10418,10,11673,11707,144,102,58,115,105,103,110,
+ 101,100,45,115,113,114,116,0,2049,10554,2049,11417,2049,10950,2049,10467,2049,10308,2049,10406,
+ 10,11690,11733,144,102,58,43,101,110,99,111,100,101,0,2049,11707,2049,11668,10,11720,
+ 11751,144,102,58,45,101,110,99,111,100,101,0,2049,10554,2049,11417,2049,11685,2049,10554,
+ 2049,10406,2049,10308,2049,10406,10,11738,11785,144,102,58,115,105,103,110,101,100,45,115,
+ 113,117,97,114,101,0,2049,10554,2049,11417,2049,10554,2049,10406,2049,10308,2049,10406,10,11766,
+ 11808,144,102,58,116,111,45,101,0,2049,10554,2049,11144,1793,11819,2049,10569,1,-2147483647,10,
+ 1,11814,2049,2653,2049,10554,2049,11159,1793,11834,2049,10569,1,2147483646,10,1,11829,2049,2653,2049,
+ 10554,2049,11175,1793,11849,2049,10569,1,-2147483646,10,1,11844,2049,2653,2049,11733,2049,11191,2049,10347,
+ 2049,11627,1,-2147483645,1793,11868,2049,10569,10,1,11865,2049,2373,1,2147483645,1793,11879,2049,10569,10,
+ 1,11876,2049,2373,10,11798,11894,144,101,58,116,111,45,102,0,1,-2147483647,1793,11901,2049,
+ 11053,10,1,11898,2049,2373,1,2147483646,1793,11912,2049,11081,10,1,11909,2049,2373,1,-2147483646,1793,
+ 11923,2049,11112,10,1,11920,2049,2373,2049,10308,2049,11751,10,11884,11943,144,102,58,115,116,
+ 111,114,101,0,1793,11948,2049,11808,10,1,11945,2049,2100,16,10,11932,11965,144,102,58,
+ 102,101,116,99,104,0,15,2049,11894,10,11954,11985,144,102,58,100,117,109,112,45,
+ 115,116,97,99,107,0,2049,10540,2,1,10716,2049,2275,1793,12003,2049,10730,2049,10554,2049,
+ 10992,2049,9195,10,1,11994,2049,2275,10,11969,12025,144,102,58,100,117,109,112,45,97,
+ 115,116,97,99,107,0,2049,10747,2,1,10730,2049,2275,1793,12043,2049,10554,2049,10992,2049,
+ 9195,2049,10716,10,1,12034,2049,2275,10,12008,12057,144,101,58,112,117,116,0,1,2147483645,
+ 1793,12074,2049,3646,101,58,77,65,88,0,1,12063,2049,9221,10,1,12061,2049,2373,1,
+ -2147483645,1793,12095,2049,3646,101,58,77,73,78,0,1,12084,2049,9221,10,1,12082,2049,2373,
+ 1,0,1793,12114,2049,3646,101,58,48,0,1,12105,2049,9221,10,1,12103,2049,2373,1,
+ -2147483647,1793,12135,2049,3646,101,58,78,65,78,0,1,12124,2049,9221,10,1,12122,2049,2373,
+ 1,2147483646,1793,12156,2049,3646,101,58,73,78,70,0,1,12145,2049,9221,10,1,12143,2049,
+ 2373,1,-2147483646,1793,12178,2049,3646,101,58,45,73,78,70,0,1,12166,2049,9221,10,1,
+ 12164,2049,2373,2049,11894,2049,10992,10,12048,12195,131,85,110,105,120,0,0,12187,12208,144,
+ 105,100,101,110,116,105,102,121,0,3841,12195,2049,2527,1793,12275,1,8,2049,9125,2,
+ 2049,2562,1793,12263,3,2049,3646,73,79,32,68,69,86,73,67,69,32,84,89,80,
+ 69,32,48,48,48,56,32,78,79,84,32,70,79,85,78,68,0,1,12226,2049,
+ 9221,2049,9184,10,1,12223,1793,12270,4097,12195,10,1,12267,2049,64,10,1,12214,9,10,
+ 12048,12298,144,105,111,58,117,110,105,120,45,115,121,115,99,97,108,108,0,2049,
+ 12208,3841,12195,2049,9108,10,12279,12320,144,117,110,105,120,58,115,121,115,116,101,109,
+ 0,1,0,2049,12298,10,12305,12338,144,117,110,105,120,58,102,111,114,107,0,1,
+ 1,2049,12298,10,12325,12357,144,117,110,105,120,58,101,120,101,99,48,0,1,2,
+ 2049,12298,10,12343,12376,144,117,110,105,120,58,101,120,101,99,49,0,1,3,2049,
+ 12298,10,12362,12395,144,117,110,105,120,58,101,120,101,99,50,0,1,4,2049,12298,
+ 10,12381,12414,144,117,110,105,120,58,101,120,101,99,51,0,1,5,2049,12298,10,
+ 12400,12432,144,117,110,105,120,58,101,120,105,116,0,1,6,2049,12298,10,12419,12452,
+ 144,117,110,105,120,58,103,101,116,112,105,100,0,1,7,2049,12298,10,12437,12470,
+ 144,117,110,105,120,58,119,97,105,116,0,1,8,2049,12298,10,12457,12488,144,117,
+ 110,105,120,58,107,105,108,108,0,1,9,2049,12298,10,12475,12507,144,117,110,105,
+ 120,58,112,111,112,101,110,0,1,10,2049,12298,10,12493,12527,144,117,110,105,120,
+ 58,112,99,108,111,115,101,0,1,11,2049,12298,10,12512,12546,144,117,110,105,120,
+ 58,99,104,100,105,114,0,1,13,2049,12298,10,12532,12566,144,117,110,105,120,58,
+ 103,101,116,101,110,118,0,1,14,2049,12298,10,12551,12586,144,117,110,105,120,58,
+ 112,117,116,101,110,118,0,1,15,2049,12298,10,12571,12605,144,117,110,105,120,58,
+ 115,108,101,101,112,0,1,16,2049,12298,10,12591,12626,144,117,110,105,120,58,103,
+ 101,116,45,99,119,100,0,2049,3646,112,119,100,0,1,12628,1,0,2049,12507,2,
+ 2049,9969,2049,5990,4,2049,12527,2049,3646,47,0,1,12648,2049,3852,10,12610,12682,144,117,
+ 110,105,120,58,99,111,117,110,116,45,102,105,108,101,115,45,105,110,45,99,
+ 119,100,0,2049,3646,108,115,32,45,49,32,124,32,119,99,32,45,108,0,1,
+ 12684,1,0,2049,12507,2,2049,9969,2049,5990,2049,218,4,2049,12527,10,12655,12737,144,117,
+ 110,105,120,58,102,111,114,45,101,97,99,104,45,102,105,108,101,0,2049,3646,
+ 108,115,32,45,49,32,45,112,0,1,12739,1,0,2049,12507,2049,12682,1793,12772,1793,
+ 12767,2049,9969,2049,3601,67502597,8,10,1,12760,2049,2110,10,1,12758,2049,2275,2049,12527,3,
+ 10,12715,12789,144,115,116,97,114,116,0,4,2049,3428,1,0,2049,12507,10,12780,12805,
+ 144,114,101,97,100,0,2,2049,9510,2,2049,3336,2049,2527,10,12797,12824,144,102,105,
+ 110,105,115,104,0,2049,12527,2049,3408,10,12715,12848,144,117,110,105,120,58,115,108,
+ 117,114,112,45,112,105,112,101,0,1793,12864,2049,12789,1793,12857,2049,12805,10,1,12854,
+ 2049,2250,2049,12824,10,1,12850,2049,3452,10,12829,12875,131,105,111,0,0,12869,12888,144,
+ 105,100,101,110,116,105,102,121,0,3841,12875,2049,2527,1793,12955,1,10,2049,9125,2,
+ 2049,2562,1793,12943,3,2049,3646,73,79,32,68,69,86,73,67,69,32,84,89,80,
+ 69,32,48,48,49,48,32,78,79,84,32,70,79,85,78,68,0,1,12906,2049,
+ 9221,2049,9184,10,1,12903,1793,12950,4097,12875,10,1,12947,2049,64,10,1,12894,9,10,
+ 12829,12979,144,105,111,58,114,110,103,45,111,112,101,114,97,116,105,111,110,0,
+ 2049,12888,3841,12875,2049,9108,10,12959,12998,144,110,58,114,97,110,100,111,109,0,2049,
+ 12979,10,12986,13012,131,83,111,99,107,101,116,115,0,0,13001,13025,144,105,100,101,
+ 110,116,105,102,121,0,3841,13012,2049,2527,1793,13092,1,7,2049,9125,2,2049,2562,1793,
+ 13080,3,2049,3646,73,79,32,68,69,86,73,67,69,32,84,89,80,69,32,48,
+ 48,48,52,32,78,79,84,32,70,79,85,78,68,0,1,13043,2049,9221,2049,9184,
+ 10,1,13040,1793,13087,4097,13012,10,1,13084,2049,64,10,1,13031,9,10,12986,13119,144,
+ 105,111,58,115,111,99,107,101,116,45,111,112,101,114,97,116,105,111,110,0,
+ 2049,13025,3841,13012,2049,9108,10,13096,13150,144,115,111,99,107,101,116,58,103,101,116,
+ 104,111,115,116,98,121,110,97,109,101,0,1,0,2049,13119,10,13126,13172,144,115,
+ 111,99,107,101,116,58,99,114,101,97,116,101,0,1,1,2049,13119,10,13155,13192,
+ 144,115,111,99,107,101,116,58,98,105,110,100,0,1,2,2049,13119,10,13177,13214,
+ 144,115,111,99,107,101,116,58,108,105,115,116,101,110,0,1,3,2049,13119,10,
+ 13197,13236,144,115,111,99,107,101,116,58,97,99,99,101,112,116,0,1,4,2049,
+ 13119,10,13219,13259,144,115,111,99,107,101,116,58,99,111,110,110,101,99,116,0,
+ 1,5,2049,13119,10,13241,13279,144,115,111,99,107,101,116,58,115,101,110,100,0,
+ 1,6,2049,13119,10,13264,13299,144,115,111,99,107,101,116,58,114,101,99,118,0,
+ 1,8,2049,13119,10,13284,13320,144,115,111,99,107,101,116,58,99,108,111,115,101,
+ 0,1,10,2049,13119,10,13304,13345,144,115,111,99,107,101,116,58,99,111,110,102,
+ 105,103,117,114,101,0,1,11,2049,13119,10,13325,1024,131,84,73,66,0,13350,13371,
+ 144,105,109,97,103,101,58,115,97,118,101,0,1,1000,2049,9125,2049,9108,10,13357,
+ 13390,131,75,101,121,98,111,97,114,100,0,0,13378,13403,144,105,100,101,110,116,
+ 105,102,121,0,3841,13390,2049,2527,1793,13470,1,1,2049,9125,2,2049,2562,1793,13458,3,
+ 2049,3646,73,79,32,68,69,86,73,67,69,32,84,89,80,69,32,48,48,48,
+ 49,32,78,79,84,32,70,79,85,78,68,0,1,13421,2049,9221,2049,9184,10,1,
+ 13418,1793,13465,4097,13390,10,1,13462,2049,64,10,1,13409,9,10,13357,13483,144,99,58,
+ 103,101,116,0,2049,13403,3841,13390,2049,9108,10,13474,13500,144,103,97,116,104,101,114,
+ 0,2,1793,13507,1,8,11,10,1,13503,1793,13515,1,127,11,10,1,13511,2049,2122,
+ 22,1,11,1,3336,2049,64,10,13490,13536,144,99,121,99,108,101,0,2049,13483,2049,
+ 2090,4,8,2049,2459,25,3,2049,13500,1,13536,7,10,13474,13567,144,112,97,114,115,
+ 101,45,117,110,116,105,108,0,1793,13579,2049,3627,2049,3428,2049,13536,771,2049,3302,10,
+ 1,13569,2049,3452,10,13552,13593,144,115,58,103,101,116,0,1793,13615,1793,13601,1,10,
+ 11,10,1,13597,1793,13609,1,13,11,10,1,13605,2049,2122,22,10,1,13595,2049,13567,
+ 10,13584,13634,144,115,58,103,101,116,45,119,111,114,100,0,1,5592,2049,13567,10,
+ 13620,13652,131,83,99,114,105,112,116,105,110,103,0,7,13639,13665,144,105,100,101,
+ 110,116,105,102,121,0,3841,13652,2049,2527,1793,13732,1,9,2049,9125,2,2049,2562,1793,
+ 13720,3,2049,3646,73,79,32,68,69,86,73,67,69,32,84,89,80,69,32,48,
+ 48,48,57,32,78,79,84,32,70,79,85,78,68,0,1,13683,2049,9221,2049,9184,
+ 10,1,13680,1793,13727,4097,13652,10,1,13724,2049,64,10,1,13671,9,10,13620,13748,144,
+ 115,121,115,58,97,114,103,99,0,2049,13665,1,0,3841,13652,2049,9108,10,13736,13769,
+ 144,115,121,115,58,97,114,103,118,0,2049,3627,4,2049,13665,1,1,3841,13652,2049,
+ 9108,10,13757,13792,144,105,110,99,108,117,100,101,0,2049,13665,1,2,3841,13652,2049,
+ 9108,10,13781,13813,144,115,121,115,58,110,97,109,101,0,2049,3627,2049,13665,1,3,
+ 3841,13652,2049,9108,10,13801,13833,144,99,108,101,97,114,0,1,27,2049,9171,2049,3646,
+ 91,50,74,0,1,13839,2049,9221,1,27,2049,9171,2049,3646,91,48,59,48,72,0,
+ 1,13853,2049,9221,10,13824,13874,131,78,111,69,99,104,111,0,0,13864,13882,144,98,
+ 121,101,0,1,0,2049,12432,10,13875,13898,144,118,101,114,115,105,111,110,0,3841,
+ 4,1,100,20,10,13887,13913,144,100,111,110,101,63,0,1793,13919,1,13,11,10,
+ 1,13915,1793,13927,1,10,11,10,1,13923,1793,13935,1,32,11,10,1,13931,2049,2159,
+ 22,22,10,13904,13952,144,118,97,108,105,100,63,0,2,2049,79,2049,2609,10,13942,
+ 13971,144,99,104,101,99,107,45,101,111,102,0,2,1793,13978,1,-1,11,10,1,
+ 13974,1793,13986,1,4,11,10,1,13982,2049,2122,22,1,13882,9,10,13958,14001,144,98,
+ 115,0,2049,3360,2049,3360,771,10,13995,14019,144,99,104,101,99,107,45,98,115,0,
+ 2,1793,14026,1,8,11,10,1,14022,1793,14034,1,127,11,10,1,14030,2049,2122,22,
+ 1,14001,9,10,14007,14052,144,99,104,101,99,107,0,2049,13971,2049,14019,10,14043,14070,
+ 144,99,104,97,114,97,99,116,101,114,0,2049,13483,2,2049,3336,10,14057,14086,144,
+ 98,117,102,102,101,114,0,1793,14096,1,1024,2049,3428,8,2049,3302,10,1,14088,2049,
+ 3452,10,14076,14115,144,114,101,97,100,45,116,111,107,101,110,0,1793,14131,1793,14126,
+ 2049,14070,2049,14052,2049,13913,10,1,14119,2049,2250,10,1,14117,2049,14086,2049,3724,10,14101,
+ 14147,144,105,110,112,117,116,0,2049,14115,2049,13952,10,14138,14163,144,112,114,111,99,
+ 101,115,115,0,1,365,1,11,2049,64,10,13875,14180,144,98,97,110,110,101,114,
+ 0,2049,13898,2049,3646,82,69,84,82,79,32,49,50,32,40,37,110,46,37,110,
+ 41,92,110,0,1,14184,2049,7212,2049,9221,2049,1543,2049,1874,18,2049,1874,2049,1543,2049,
+ 3646,37,110,32,77,97,120,44,32,37,110,32,85,115,101,100,44,32,37,110,
+ 32,70,114,101,101,92,110,0,1,14220,2049,7212,2049,9221,10,14170,14264,144,108,105,
+ 115,116,101,110,0,3841,13874,1793,14271,2049,14180,10,1,14268,2049,70,2049,14147,2049,14163,
+ 1,14275,7,10,14254,14292,131,67,108,111,99,107,0,0,14283,14305,144,105,100,101,
+ 110,116,105,102,121,0,3841,14292,2049,2527,1793,14372,1,5,2049,9125,2,2049,2562,1793,
+ 14360,3,2049,3646,73,79,32,68,69,86,73,67,69,32,84,89,80,69,32,48,
+ 48,48,53,32,78,79,84,32,70,79,85,78,68,0,1,14323,2049,9221,2049,9184,
+ 10,1,14320,1793,14367,4097,14292,10,1,14364,2049,64,10,1,14311,9,10,14254,14398,144,
+ 105,111,58,99,108,111,99,107,45,111,112,101,114,97,116,105,111,110,0,2049,
+ 14305,3841,14292,2049,9108,10,14376,14424,144,99,108,111,99,107,58,116,105,109,101,115,
+ 116,97,109,112,0,1,0,2049,14398,10,14405,14442,144,99,108,111,99,107,58,100,
+ 97,121,0,1,1,2049,14398,10,14429,14462,144,99,108,111,99,107,58,109,111,110,
+ 116,104,0,1,2,2049,14398,10,14447,14481,144,99,108,111,99,107,58,121,101,97,
+ 114,0,1,3,2049,14398,10,14467,14500,144,99,108,111,99,107,58,104,111,117,114,
+ 0,1,4,2049,14398,10,14486,14521,144,99,108,111,99,107,58,109,105,110,117,116,
+ 101,0,1,5,2049,14398,10,14505,14542,144,99,108,111,99,107,58,115,101,99,111,
+ 110,100,0,1,6,2049,14398,10,14526,14564,144,99,108,111,99,107,58,117,116,99,
+ 58,100,97,121,0,1,7,2049,14398,10,14547,14588,144,99,108,111,99,107,58,117,
+ 116,99,58,109,111,110,116,104,0,1,8,2049,14398,10,14569,14611,144,99,108,111,
+ 99,107,58,117,116,99,58,121,101,97,114,0,1,9,2049,14398,10,14593,14634,144,
+ 99,108,111,99,107,58,117,116,99,58,104,111,117,114,0,1,10,2049,14398,10,
+ 14616,14659,144,99,108,111,99,107,58,117,116,99,58,109,105,110,117,116,101,0,
+ 1,11,2049,14398,10,14639,14684,144,99,108,111,99,107,58,117,116,99,58,115,101,
+ 99,111,110,100,0,1,12,2049,14398,10,14664,14700,144,100,58,119,111,114,100,115,
+ 0,1793,14709,2049,162,2049,9221,2049,9195,10,1,14702,2049,7441,10,14689,14730,144,100,58,
+ 119,111,114,100,115,45,119,105,116,104,0,2049,1874,2049,4648,1793,14761,2049,162,2,
+ 2049,1874,2049,4162,1793,14750,2049,9221,2049,9195,10,1,14745,1793,14756,3,10,1,14754,2049,
+ 64,10,1,14736,2049,7441,10,14714,14785,144,100,105,115,112,108,97,121,45,105,102,
+ 45,108,101,102,116,0,2,2049,1874,2049,4598,1793,14797,2049,9221,2049,9195,10,1,14792,
+ 1793,14803,3,10,1,14801,2049,64,10,14714,14834,144,100,58,119,111,114,100,115,45,
+ 98,101,103,105,110,110,105,110,103,45,119,105,116,104,0,2049,1874,2049,4648,1793,
+ 14845,2049,162,2049,14785,10,1,14840,2049,7441,10,14808,14871,144,116,105,109,101,115,60,
+ 119,105,116,104,45,105,110,100,101,120,62,0,2049,8976,10,14850,14884,144,118,97,
+ 114,60,110,62,0,2049,1991,10,14874,14903,144,100,58,108,97,115,116,60,110,97,
+ 109,101,62,0,2049,1630,10,14887,14923,144,100,58,108,97,115,116,60,99,108,97,
+ 115,115,62,0,2049,1609,10,14906,14940,144,100,58,108,97,115,116,60,120,116,62,
+ 0,2049,1587,10,0 };