From 53d68e2149ebe347905669840f249c016a662fa7 Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Thu, 27 Jun 2013 15:29:18 -0600 Subject: [PATCH] switch "config.rktd" dirs back to "collects"-relative Making them "etc"-relative intercts badly with redirecting a configuration to override just a few values --- such as the links path, which is what `make core' needs. --- Makefile | 14 +- .../racket-doc/scribblings/raco/config.scrbl | 15 +- .../racket-doc/scribblings/raco/setup.scrbl | 2 +- .../scribblings/reference/startup.scrbl | 4 + racket/lib/collects/racket/HISTORY.txt | 6 +- racket/lib/collects/setup/dirs.rkt | 4 +- racket/lib/collects/setup/setup-unit.rkt | 21 +- racket/src/racket/src/cstartup.inc | 1346 +++++++++-------- racket/src/racket/src/startup.inc | 44 +- racket/src/racket/src/startup.rktl | 50 +- racket/src/worksp/build-at.bat | 2 +- racket/src/worksp/build.bat | 16 +- 12 files changed, 800 insertions(+), 724 deletions(-) diff --git a/Makefile b/Makefile index 050c1e3945..4af3642fc2 100644 --- a/Makefile +++ b/Makefile @@ -39,15 +39,23 @@ win32-in-place: # ------------------------------------------------------------ # Core build +# During this step, we use a configuration file that indicates +# an empty set of link files, so that any installation-wide +# links or packages are ignored during the core build. + core: + mkdir -p build/config + echo '#hash((links-search-files . ()))' > build/config/config.rktd mkdir -p racket/src/build $(MAKE) racket/src/build/Makefile cd racket/src/build; $(MAKE) reconfigure - cd racket/src/build; $(MAKE) SELF_RACKET_FLAGS="-G ." - cd racket/src/build; $(MAKE) install SELF_RACKET_FLAGS="-G ." + cd racket/src/build; $(MAKE) SELF_RACKET_FLAGS="-G `cd ../../../build/config; pwd`" + cd racket/src/build; $(MAKE) install SELF_RACKET_FLAGS="-G `cd ../../../build/config; pwd`" win32-core: - cmd /c racket\src\worksp\build-at racket\src\worksp + IF NOT EXIST build\config cmd /c mkdir mkdir -p build\config + cmd /c echo #hash((links-search-files . ())) > build\config\config.rktd + cmd /c racket\src\worksp\build-at racket\src\worksp ..\..\..\build\config racket/src/build/Makefile: racket/src/configure racket/src/Makefile.in cd racket/src/build; ../configure diff --git a/pkgs/racket-pkgs/racket-doc/scribblings/raco/config.scrbl b/pkgs/racket-pkgs/racket-doc/scribblings/raco/config.scrbl index 480b596b62..0f99f3ad09 100644 --- a/pkgs/racket-pkgs/racket-doc/scribblings/raco/config.scrbl +++ b/pkgs/racket-pkgs/racket-doc/scribblings/raco/config.scrbl @@ -20,17 +20,19 @@ to locate configured directories. A @filepath{config.rktd} file in the configuration directory should contain a @racket[read]able hash table with any of the following -symbolic keys: +symbolic keys, where an relative path is relative to the main collection +directory: @itemlist[ @item{@racket['doc-dir] --- a path, string, or byte string for the main documentation directory. The value defaults to a - @filepath{doc} sibling directory of the configuration directory.} + @filepath{doc} sibling directory of the parent of the + main collection directory.} @item{@racket['lib-dir] --- a path, string, or byte string for the - main library directory; it defaults to a @filepath{lib} sibling - directory of the configuration directory.} + main library directory; it defaults to the parent + directory of the main collection directory.} @item{@racket['lib-search-dirs] --- a list of paths, strings, byte strings, or @racket[#f] representing the search path for @@ -45,7 +47,8 @@ symbolic keys: @item{@racket['links-file] --- a path, string, or byte string for the @tech[#:doc reference-doc]{collection links file}; it defaults - to a @filepath{links.rktd} file in the main library directory.} + to a @filepath{links.rktd} file in the parent of the main + collection directory.} @item{@racket['links-search-files] --- like @racket['lib-search-dirs], but for @tech[#:doc reference-doc]{collection links file}.} @@ -59,7 +62,7 @@ symbolic keys: @item{@racket['bin-dir] --- a path, string, or byte string for the main directory containing executables; it defaults to a - @filepath{bin} sibling directory of the main library + @filepath{bin} sibling directory of the parent of the main collection directory.} @item{@racket['doc-search-dirs] --- like @racket['lib-search-dirs], diff --git a/pkgs/racket-pkgs/racket-doc/scribblings/raco/setup.scrbl b/pkgs/racket-pkgs/racket-doc/scribblings/raco/setup.scrbl index 36c1e33bb8..22383da667 100644 --- a/pkgs/racket-pkgs/racket-doc/scribblings/raco/setup.scrbl +++ b/pkgs/racket-pkgs/racket-doc/scribblings/raco/setup.scrbl @@ -943,7 +943,7 @@ v Returns a list of paths to installation @tech[#:doc reference-doc]{collection links files} that are search in order. (Normally, the result includes the result of - @racket[(find-links-files)], which is where new installation-wide + @racket[(find-links-file)], which is where new installation-wide links are installed by @exec{raco link} or @racket[links].) The files indicated by the returned paths may or may not exist.} diff --git a/pkgs/racket-pkgs/racket-doc/scribblings/reference/startup.scrbl b/pkgs/racket-pkgs/racket-doc/scribblings/reference/startup.scrbl index 17b96d4a3c..f0594c25d8 100644 --- a/pkgs/racket-pkgs/racket-doc/scribblings/reference/startup.scrbl +++ b/pkgs/racket-pkgs/racket-doc/scribblings/reference/startup.scrbl @@ -281,6 +281,10 @@ flags: argument is parsed in the same way as @envvar{PLTCOMPILEDROOTS} (see @racket[current-compiled-file-roots]).} + @item{@FlagFirst{G} @nonterm{dir} or @DFlagFirst{config} + @nonterm{dir} : Sets the directory that is returned by + @racket[(find-system-path 'config-dir)].} + @item{@FlagFirst{A} @nonterm{dir} or @DFlagFirst{addon} @nonterm{dir} : Sets the directory that is returned by @racket[(find-system-path 'addon-dir)].} diff --git a/racket/lib/collects/racket/HISTORY.txt b/racket/lib/collects/racket/HISTORY.txt index 36fdbe3a01..228dd34870 100644 --- a/racket/lib/collects/racket/HISTORY.txt +++ b/racket/lib/collects/racket/HISTORY.txt @@ -6,9 +6,9 @@ raco link: -u/--user mode installs a version-specific link, added -s/--shared for user-specific, all-version links Added PLTCONFIGDIR Added links-file and links-search-dirs to config, enabling - a search path of installation-wide link files -setup/dir: default paths found relative to the config directory, - instead of the main collection directory + a search path of installation-wide link files, as well + as pkgs-dir and pkgs-search-dirs +Removed -C/--links command-line flag Version 5.3.900.1 Reorganized collections into packages diff --git a/racket/lib/collects/setup/dirs.rkt b/racket/lib/collects/setup/dirs.rkt index 8d34b88e6d..0e240f530f 100644 --- a/racket/lib/collects/setup/dirs.rkt +++ b/racket/lib/collects/setup/dirs.rkt @@ -157,8 +157,8 @@ (define dir (delay (or (force config:id) - (let ([p (find-config-dir)]) - (and p (simplify-path (build-path p 'up default))))))) + (let ([p (find-collects-dir)]) + (and p (simplify-path (build-path p 'up 'up default))))))) (define (id) (force dir)))] [(_ provide config:id id user-id default) diff --git a/racket/lib/collects/setup/setup-unit.rkt b/racket/lib/collects/setup/setup-unit.rkt index 6680fa8832..f504b713e4 100644 --- a/racket/lib/collects/setup/setup-unit.rkt +++ b/racket/lib/collects/setup/setup-unit.rkt @@ -354,16 +354,17 @@ #:info-path-mode 'abs-in-relative #:omit-root 'dir #:main? #t)) - (for ([c+p (in-list (links #:user? #f #:with-path? #t))]) - (cc! (list (string->path (car c+p))) - #:path (cdr c+p))) - (for ([cp (in-list (links #:root? #t #:user? #f))] - #:when (directory-exists? cp) - [collection (directory-list cp)] - #:unless (skip-collection-directory? collection) - #:when (directory-exists? (build-path cp collection))) - (cc! (list collection) - #:path (build-path cp collection)))) + (when (member (find-links-file) (get-links-search-files)) + (for ([c+p (in-list (links #:user? #f #:with-path? #t))]) + (cc! (list (string->path (car c+p))) + #:path (cdr c+p))) + (for ([cp (in-list (links #:root? #t #:user? #f))] + #:when (directory-exists? cp) + [collection (directory-list cp)] + #:unless (skip-collection-directory? collection) + #:when (directory-exists? (build-path cp collection))) + (cc! (list collection) + #:path (build-path cp collection))))) (when (make-user) (define info-root (find-user-lib-dir)) (define info-path (build-path info-root "info-cache.rktd")) diff --git a/racket/src/racket/src/cstartup.inc b/racket/src/racket/src/cstartup.inc index 0e2598554b..6302be82de 100644 --- a/racket/src/racket/src/cstartup.inc +++ b/racket/src/racket/src/cstartup.inc @@ -16,12 +16,12 @@ 120,73,108,101,116,114,101,99,45,118,97,108,117,101,115,66,108,97,109,98,100, 97,1,20,112,97,114,97,109,101,116,101,114,105,122,97,116,105,111,110,45,107, 101,121,61,118,73,100,101,102,105,110,101,45,118,97,108,117,101,115,97,36,11, -8,240,76,89,0,0,95,159,2,17,36,36,159,2,16,36,36,159,2,16,36, +8,240,82,89,0,0,95,159,2,17,36,36,159,2,16,36,36,159,2,16,36, 36,16,20,2,3,2,2,2,5,2,2,2,4,2,2,2,6,2,2,2,7, 2,2,2,8,2,2,2,9,2,2,2,10,2,2,2,11,2,2,2,12,2, -2,97,37,11,8,240,76,89,0,0,93,159,2,16,36,37,16,2,2,13,161, -2,2,37,2,13,2,2,2,13,96,38,11,8,240,76,89,0,0,16,0,96, -11,11,8,240,76,89,0,0,16,0,18,98,64,104,101,114,101,13,16,6,36, +2,97,37,11,8,240,82,89,0,0,93,159,2,16,36,37,16,2,2,13,161, +2,2,37,2,13,2,2,2,13,96,38,11,8,240,82,89,0,0,16,0,96, +11,11,8,240,82,89,0,0,16,0,18,98,64,104,101,114,101,13,16,6,36, 2,14,2,2,11,11,11,8,32,8,31,8,30,8,29,27,248,22,161,4,195, 249,22,154,4,80,158,39,36,251,22,89,2,18,248,22,101,199,12,249,22,79, 2,19,248,22,103,201,27,248,22,161,4,195,249,22,154,4,80,158,39,36,251, @@ -30,14 +30,14 @@ 248,22,81,194,248,22,132,18,193,249,22,154,4,80,158,39,36,251,22,89,2, 18,248,22,132,18,199,249,22,79,2,11,248,22,133,18,201,11,18,100,10,13, 16,6,36,2,14,2,2,11,11,11,8,32,8,31,8,30,8,29,16,4,11, -11,2,20,3,1,8,101,110,118,49,55,52,50,48,16,4,11,11,2,21,3, -1,8,101,110,118,49,55,52,50,49,27,248,22,81,248,22,161,4,196,28,248, +11,2,20,3,1,8,101,110,118,49,55,52,50,55,16,4,11,11,2,21,3, +1,8,101,110,118,49,55,52,50,56,27,248,22,81,248,22,161,4,196,28,248, 22,87,193,20,14,159,37,36,37,28,248,22,87,248,22,81,194,248,22,132,18, 193,249,22,154,4,80,158,39,36,250,22,89,2,22,248,22,89,249,22,89,248, 22,89,2,23,248,22,132,18,201,251,22,89,2,18,2,23,2,23,249,22,79, 2,6,248,22,133,18,204,18,100,11,13,16,6,36,2,14,2,2,11,11,11, 8,32,8,31,8,30,8,29,16,4,11,11,2,20,3,1,8,101,110,118,49, -55,52,50,51,16,4,11,11,2,21,3,1,8,101,110,118,49,55,52,50,52, +55,52,51,48,16,4,11,11,2,21,3,1,8,101,110,118,49,55,52,51,49, 248,22,161,4,193,27,248,22,161,4,194,249,22,79,248,22,89,248,22,80,196, 248,22,133,18,195,27,248,22,81,248,22,161,4,23,197,1,249,22,154,4,80, 158,39,36,28,248,22,64,248,22,155,4,248,22,80,23,198,2,27,249,22,2, @@ -68,8 +68,8 @@ 22,159,9,248,22,155,4,248,22,80,200,64,101,108,115,101,10,248,22,132,18, 197,250,22,90,2,22,9,248,22,133,18,200,249,22,79,2,5,248,22,81,202, 99,13,16,6,36,2,14,2,2,11,11,11,8,32,8,31,8,30,8,29,16, -4,11,11,2,20,3,1,8,101,110,118,49,55,52,52,54,16,4,11,11,2, -21,3,1,8,101,110,118,49,55,52,52,55,18,158,94,10,64,118,111,105,100, +4,11,11,2,20,3,1,8,101,110,118,49,55,52,53,51,16,4,11,11,2, +21,3,1,8,101,110,118,49,55,52,53,52,18,158,94,10,64,118,111,105,100, 8,48,27,248,22,81,248,22,161,4,196,249,22,154,4,80,158,39,36,28,248, 22,64,248,22,155,4,248,22,80,197,250,22,89,2,28,248,22,89,248,22,132, 18,199,248,22,101,198,27,248,22,155,4,248,22,132,18,197,250,22,89,2,28, @@ -101,42 +101,45 @@ } { SHARED_OK static MZCOMPILED_STRING_FAR unsigned char expr[] = {35,126,9,53,46,51,46,57,48,48,46,50,84,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,170,0,0,0,1,0,0,8,0, +0,0,0,0,0,0,0,0,0,0,0,0,165,0,0,0,1,0,0,8,0, 21,0,26,0,43,0,55,0,77,0,106,0,121,0,139,0,151,0,167,0,181, 0,203,0,219,0,236,0,253,0,15,1,34,1,53,1,69,1,75,1,84,1, -91,1,108,1,123,1,141,1,153,1,160,1,173,1,186,1,198,1,222,1,254, -1,16,2,35,2,55,2,71,2,89,2,120,2,134,2,151,2,195,2,203,2, -208,2,252,2,3,3,13,3,28,3,37,3,42,3,44,3,68,3,89,3,99, -3,112,3,123,3,132,3,142,3,148,3,193,3,196,3,200,3,224,3,7,4, -10,4,23,4,34,4,47,4,69,4,121,4,144,4,152,4,176,4,197,4,154, -5,184,5,65,9,88,9,105,9,53,11,156,11,170,11,74,12,6,14,15,14, -24,14,38,14,48,14,89,15,192,15,9,16,82,16,186,16,215,16,30,17,167, -17,238,17,192,18,87,19,136,19,167,19,181,19,6,22,24,23,38,23,39,24, -117,25,124,25,167,25,181,25,35,26,193,26,200,26,7,27,33,27,151,27,116, -28,176,28,183,28,51,29,70,29,223,29,239,29,253,31,38,32,47,32,122,33, -64,34,84,34,100,34,123,34,139,34,190,34,211,34,231,34,251,34,52,35,31, -38,94,39,253,39,13,40,165,42,38,45,53,45,199,46,137,47,139,47,165,47, -180,47,104,49,42,50,57,50,66,50,73,50,198,50,67,51,192,51,208,51,43, -52,174,52,190,52,25,53,158,53,174,53,179,54,58,55,8,56,40,56,170,56, -0,0,212,62,0,0,67,35,37,117,116,105,108,115,72,112,97,116,104,45,115, -116,114,105,110,103,63,64,98,115,98,115,76,110,111,114,109,97,108,45,99,97, -115,101,45,112,97,116,104,71,114,101,114,111,111,116,45,112,97,116,104,1,20, -102,105,110,100,45,101,120,101,99,117,116,97,98,108,101,45,112,97,116,104,1, -27,112,97,116,104,45,108,105,115,116,45,115,116,114,105,110,103,45,62,112,97, -116,104,45,108,105,115,116,74,45,99,104,101,99,107,45,114,101,108,112,97,116, -104,77,45,99,104,101,99,107,45,99,111,108,108,101,99,116,105,111,110,71,45, -99,104,101,99,107,45,102,97,105,108,75,99,111,108,108,101,99,116,105,111,110, -45,112,97,116,104,73,102,105,110,100,45,99,111,108,45,102,105,108,101,1,20, -99,111,108,108,101,99,116,105,111,110,45,102,105,108,101,45,112,97,116,104,75, -117,115,101,114,45,108,105,110,107,115,45,112,97,116,104,76,117,115,101,114,45, -108,105,110,107,115,45,99,97,99,104,101,76,117,115,101,114,45,108,105,110,107, -115,45,115,116,97,109,112,77,115,104,97,114,101,100,45,108,105,110,107,115,45, -112,97,116,104,78,115,104,97,114,101,100,45,108,105,110,107,115,45,99,97,99, -104,101,78,115,104,97,114,101,100,45,108,105,110,107,115,45,115,116,97,109,112, -75,102,105,110,100,45,99,111,110,102,105,103,45,100,105,114,65,113,117,111,116, -101,68,35,37,112,97,114,97,109,122,29,94,2,21,2,22,11,76,103,101,116, -45,99,111,110,102,105,103,45,116,97,98,108,101,74,99,111,101,114,99,101,45, -116,111,45,112,97,116,104,77,97,100,100,45,99,111,110,102,105,103,45,115,101, +91,1,108,1,123,1,162,1,196,1,214,1,226,1,233,1,246,1,3,2,15, +2,39,2,71,2,89,2,108,2,128,2,144,2,162,2,193,2,207,2,224,2, +12,3,20,3,25,3,69,3,76,3,86,3,101,3,110,3,115,3,117,3,141, +3,162,3,172,3,185,3,196,3,205,3,215,3,228,3,234,3,23,4,26,4, +30,4,54,4,93,4,96,4,109,4,131,4,142,4,194,4,217,4,225,4,249, +4,14,5,227,5,1,6,138,9,161,9,178,9,126,11,229,11,243,11,147,12, +79,14,88,14,97,14,111,14,121,14,162,15,9,16,82,16,155,16,3,17,32, +17,103,17,240,17,55,18,9,19,160,19,209,19,50,21,154,21,216,21,147,23, +171,23,182,24,189,24,232,24,246,24,100,25,2,26,9,26,72,26,101,26,219, +26,184,27,244,27,251,27,119,28,138,28,35,29,51,29,65,31,109,31,118,31, +193,32,135,33,155,33,171,33,194,33,210,33,5,34,26,34,46,34,66,34,123, +34,102,37,165,38,68,39,84,39,236,41,109,44,124,44,14,46,208,46,210,46, +236,46,251,46,175,48,113,49,128,49,137,49,144,49,159,50,174,51,69,54,181, +54,39,55,53,57,3,58,35,58,165,58,0,0,55,65,0,0,67,35,37,117, +116,105,108,115,72,112,97,116,104,45,115,116,114,105,110,103,63,64,98,115,98, +115,76,110,111,114,109,97,108,45,99,97,115,101,45,112,97,116,104,71,114,101, +114,111,111,116,45,112,97,116,104,1,20,102,105,110,100,45,101,120,101,99,117, +116,97,98,108,101,45,112,97,116,104,1,27,112,97,116,104,45,108,105,115,116, +45,115,116,114,105,110,103,45,62,112,97,116,104,45,108,105,115,116,74,45,99, +104,101,99,107,45,114,101,108,112,97,116,104,77,45,99,104,101,99,107,45,99, +111,108,108,101,99,116,105,111,110,71,45,99,104,101,99,107,45,102,97,105,108, +75,99,111,108,108,101,99,116,105,111,110,45,112,97,116,104,73,102,105,110,100, +45,99,111,108,45,102,105,108,101,1,20,99,111,108,108,101,99,116,105,111,110, +45,102,105,108,101,45,112,97,116,104,75,117,115,101,114,45,108,105,110,107,115, +45,112,97,116,104,76,117,115,101,114,45,108,105,110,107,115,45,99,97,99,104, +101,76,117,115,101,114,45,108,105,110,107,115,45,115,116,97,109,112,77,115,104, +97,114,101,100,45,108,105,110,107,115,45,112,97,116,104,78,115,104,97,114,101, +100,45,108,105,110,107,115,45,99,97,99,104,101,78,115,104,97,114,101,100,45, +108,105,110,107,115,45,115,116,97,109,112,75,102,105,110,100,45,99,111,110,102, +105,103,45,100,105,114,65,113,117,111,116,101,68,35,37,112,97,114,97,109,122, +29,94,2,21,2,22,11,76,103,101,116,45,99,111,110,102,105,103,45,116,97, +98,108,101,74,99,111,101,114,99,101,45,116,111,45,112,97,116,104,1,37,99, +111,108,108,101,99,116,115,45,114,101,108,97,116,105,118,101,45,112,97,116,104, +45,62,99,111,109,112,108,101,116,101,45,112,97,116,104,1,32,101,120,101,45, +114,101,108,97,116,105,118,101,45,112,97,116,104,45,62,99,111,109,112,108,101, +116,101,45,112,97,116,104,77,97,100,100,45,99,111,110,102,105,103,45,115,101, 97,114,99,104,71,108,105,110,107,115,45,112,97,116,104,115,29,94,2,21,2, 22,11,72,108,105,110,107,115,45,99,97,99,104,101,115,72,108,105,110,107,115, 45,115,116,97,109,112,115,71,102,105,108,101,45,62,115,116,97,109,112,1,22, @@ -161,16 +164,16 @@ 116,104,6,18,18,40,97,110,121,47,99,32,46,32,45,62,32,46,32,97,110, 121,41,69,97,100,100,111,110,45,100,105,114,6,10,10,108,105,110,107,115,46, 114,107,116,100,70,99,111,110,102,105,103,45,100,105,114,68,111,114,105,103,45, -100,105,114,69,101,120,101,99,45,102,105,108,101,65,101,114,114,111,114,6,42, -42,101,114,114,111,114,32,114,101,97,100,105,110,103,32,99,111,108,108,101,99, -116,105,111,110,32,108,105,110,107,115,32,102,105,108,101,32,126,115,58,32,126, -97,6,0,0,6,1,1,47,6,21,21,40,111,114,47,99,32,115,116,114,105, -110,103,63,32,98,121,116,101,115,63,41,6,36,36,99,97,110,110,111,116,32, -97,100,100,32,97,32,115,117,102,102,105,120,32,116,111,32,97,32,114,111,111, -116,32,112,97,116,104,58,32,5,1,95,5,11,80,76,84,67,79,76,76,69, -67,84,83,6,8,8,99,111,108,108,101,99,116,115,72,99,111,108,108,101,99, -116,115,45,100,105,114,1,20,99,111,108,108,101,99,116,115,45,115,101,97,114, -99,104,45,100,105,114,115,27,248,22,150,15,23,195,2,28,23,193,2,192,86, +100,105,114,69,101,120,101,99,45,102,105,108,101,72,99,111,108,108,101,99,116, +115,45,100,105,114,65,101,114,114,111,114,6,42,42,101,114,114,111,114,32,114, +101,97,100,105,110,103,32,99,111,108,108,101,99,116,105,111,110,32,108,105,110, +107,115,32,102,105,108,101,32,126,115,58,32,126,97,6,0,0,6,1,1,47, +6,21,21,40,111,114,47,99,32,115,116,114,105,110,103,63,32,98,121,116,101, +115,63,41,6,36,36,99,97,110,110,111,116,32,97,100,100,32,97,32,115,117, +102,102,105,120,32,116,111,32,97,32,114,111,111,116,32,112,97,116,104,58,32, +5,1,95,5,11,80,76,84,67,79,76,76,69,67,84,83,1,20,99,111,108, +108,101,99,116,115,45,115,101,97,114,99,104,45,100,105,114,115,6,8,8,99, +111,108,108,101,99,116,115,27,248,22,150,15,23,195,2,28,23,193,2,192,86, 94,23,193,1,28,248,22,144,7,23,195,2,27,248,22,173,15,23,196,2,28, 23,193,2,192,86,94,23,193,1,248,22,174,15,23,196,1,11,0,21,35,114, 120,34,94,91,92,92,93,91,92,92,93,91,63,93,91,92,92,93,34,0,6, @@ -178,714 +181,739 @@ 43,91,47,92,92,93,42,36,34,0,19,35,114,120,34,91,32,46,93,43,40, 91,47,92,92,93,42,41,36,34,86,94,28,28,248,22,151,15,23,195,2,10, 28,248,22,150,15,23,195,2,10,28,248,22,144,7,23,195,2,28,248,22,173, -15,23,195,2,10,248,22,174,15,23,195,2,11,12,250,22,168,11,2,41,2, -42,23,197,2,28,28,248,22,151,15,23,195,2,249,22,159,9,248,22,152,15, -23,197,2,2,43,249,22,159,9,247,22,171,8,2,43,27,28,248,22,144,7, +15,23,195,2,10,248,22,174,15,23,195,2,11,12,250,22,168,11,2,43,2, +44,23,197,2,28,28,248,22,151,15,23,195,2,249,22,159,9,248,22,152,15, +23,197,2,2,45,249,22,159,9,247,22,171,8,2,45,27,28,248,22,144,7, 23,196,2,23,195,2,248,22,156,8,248,22,155,15,23,197,2,28,249,22,145, -16,2,71,23,195,2,86,94,23,193,1,28,248,22,144,7,23,196,2,248,22, +16,2,73,23,195,2,86,94,23,193,1,28,248,22,144,7,23,196,2,248,22, 158,15,23,196,1,194,27,248,22,183,7,23,195,1,249,22,159,15,248,22,159, -8,250,22,153,16,2,72,28,249,22,145,16,2,73,23,201,2,23,199,1,250, -22,153,16,2,74,23,202,1,2,44,80,159,44,37,38,2,43,28,248,22,144, +8,250,22,153,16,2,74,28,249,22,145,16,2,75,23,201,2,23,199,1,250, +22,153,16,2,76,23,202,1,2,46,80,159,44,37,38,2,45,28,248,22,144, 7,23,195,2,248,22,158,15,23,195,1,193,0,28,35,114,120,34,94,92,92, 92,92,92,92,92,92,91,63,93,92,92,92,92,85,78,67,92,92,92,92,34, 86,95,28,28,28,248,22,150,15,23,195,2,10,28,248,22,144,7,23,195,2, 28,248,22,173,15,23,195,2,10,248,22,174,15,23,195,2,11,10,248,22,151, -15,23,195,2,12,252,22,168,11,2,5,2,45,36,23,199,2,23,200,2,28, +15,23,195,2,12,252,22,168,11,2,5,2,47,36,23,199,2,23,200,2,28, 28,28,248,22,150,15,23,196,2,10,28,248,22,144,7,23,196,2,28,248,22, 173,15,23,196,2,10,248,22,174,15,23,196,2,11,10,248,22,151,15,23,196, -2,12,252,22,168,11,2,5,2,45,37,23,199,2,23,200,2,27,28,248,22, +2,12,252,22,168,11,2,5,2,47,37,23,199,2,23,200,2,27,28,248,22, 151,15,23,196,2,248,22,152,15,23,196,2,247,22,153,15,86,95,28,28,248, 22,175,15,23,196,2,10,249,22,159,9,247,22,153,15,23,195,2,12,253,22, 170,11,2,5,6,54,54,112,97,116,104,32,105,115,32,110,111,116,32,99,111, 109,112,108,101,116,101,32,97,110,100,32,110,111,116,32,116,104,101,32,112,108, -97,116,102,111,114,109,39,115,32,99,111,110,118,101,110,116,105,111,110,2,46, +97,116,102,111,114,109,39,115,32,99,111,110,118,101,110,116,105,111,110,2,48, 23,201,2,6,24,24,112,108,97,116,102,111,114,109,32,99,111,110,118,101,110, 116,105,111,110,32,116,121,112,101,247,22,153,15,28,249,22,159,9,28,248,22, 151,15,23,199,2,248,22,152,15,23,199,2,247,22,153,15,23,195,2,12,253, 22,170,11,2,5,6,37,37,103,105,118,101,110,32,112,97,116,104,115,32,117, 115,101,32,100,105,102,102,101,114,101,110,116,32,99,111,110,118,101,110,116,105, -111,110,115,2,46,23,201,2,6,9,9,114,111,111,116,32,112,97,116,104,23, +111,110,115,2,48,23,201,2,6,9,9,114,111,111,116,32,112,97,116,104,23, 202,2,27,27,248,22,179,15,28,248,22,175,15,23,199,2,23,198,1,248,22, 176,15,23,199,1,86,94,28,28,248,22,151,15,23,194,2,10,28,248,22,150, 15,23,194,2,10,28,248,22,144,7,23,194,2,28,248,22,173,15,23,194,2, -10,248,22,174,15,23,194,2,11,12,250,22,168,11,2,41,2,42,23,196,2, +10,248,22,174,15,23,194,2,11,12,250,22,168,11,2,43,2,44,23,196,2, 28,28,248,22,151,15,23,194,2,249,22,159,9,248,22,152,15,23,196,2,2, -43,249,22,159,9,247,22,171,8,2,43,27,28,248,22,144,7,23,195,2,23, -194,2,248,22,156,8,248,22,155,15,23,196,2,28,249,22,145,16,2,71,23, +45,249,22,159,9,247,22,171,8,2,45,27,28,248,22,144,7,23,195,2,23, +194,2,248,22,156,8,248,22,155,15,23,196,2,28,249,22,145,16,2,73,23, 195,2,86,94,23,193,1,28,248,22,144,7,23,195,2,248,22,158,15,23,195, 1,193,27,248,22,183,7,23,195,1,249,22,159,15,248,22,159,8,250,22,153, -16,2,72,28,249,22,145,16,2,73,23,201,2,23,199,1,250,22,153,16,2, -74,23,202,1,2,44,80,159,47,37,38,2,43,28,248,22,144,7,23,194,2, +16,2,74,28,249,22,145,16,2,75,23,201,2,23,199,1,250,22,153,16,2, +76,23,202,1,2,46,80,159,47,37,38,2,45,28,248,22,144,7,23,194,2, 248,22,158,15,23,194,1,192,27,248,22,155,15,23,195,2,28,249,22,159,9, 23,197,2,64,117,110,105,120,28,249,22,141,8,23,195,1,5,1,47,86,95, 23,195,1,23,194,1,28,248,22,151,15,23,199,2,197,248,22,158,15,23,199, 1,249,22,168,15,23,200,1,249,22,159,15,249,22,144,8,248,22,155,15,23, -201,1,37,23,199,1,28,249,22,159,9,23,197,2,2,43,249,22,168,15,23, +201,1,37,23,199,1,28,249,22,159,9,23,197,2,2,45,249,22,168,15,23, 200,1,249,22,159,15,28,249,22,145,16,0,27,35,114,120,34,94,92,92,92, 92,92,92,92,92,91,63,93,92,92,92,92,91,97,45,122,93,58,34,23,199, -2,251,22,145,8,2,47,250,22,144,8,23,204,2,40,41,5,1,92,249,22, -144,8,23,203,1,42,28,249,22,145,16,2,76,23,199,2,249,22,145,8,2, -47,249,22,144,8,23,201,1,40,28,249,22,145,16,2,76,23,199,2,249,22, -145,8,2,47,249,22,144,8,23,201,1,40,28,249,22,145,16,0,14,35,114, +2,251,22,145,8,2,49,250,22,144,8,23,204,2,40,41,5,1,92,249,22, +144,8,23,203,1,42,28,249,22,145,16,2,78,23,199,2,249,22,145,8,2, +49,249,22,144,8,23,201,1,40,28,249,22,145,16,2,78,23,199,2,249,22, +145,8,2,49,249,22,144,8,23,201,1,40,28,249,22,145,16,0,14,35,114, 120,34,94,92,92,92,92,92,92,92,92,34,23,199,2,249,22,145,8,5,4, 85,78,67,92,249,22,144,8,23,201,1,38,28,249,22,145,16,0,12,35,114, 120,34,94,91,97,45,122,93,58,34,23,199,2,249,22,145,8,250,22,144,8, 23,202,2,36,37,249,22,144,8,23,201,1,38,86,94,23,197,1,12,23,199, -1,12,32,78,88,163,8,36,39,53,11,70,102,111,117,110,100,45,101,120,101, -99,222,33,81,32,79,88,163,8,36,40,58,11,64,110,101,120,116,222,33,80, +1,12,32,80,88,163,8,36,39,53,11,70,102,111,117,110,100,45,101,120,101, +99,222,33,83,32,81,88,163,8,36,40,58,11,64,110,101,120,116,222,33,82, 27,248,22,177,15,23,196,2,28,249,22,161,9,23,195,2,23,197,1,11,28, 248,22,173,15,23,194,2,27,249,22,168,15,23,197,1,23,196,1,28,23,197, 2,90,159,39,11,89,161,39,36,11,248,22,171,15,23,197,2,86,95,23,195, 1,23,194,1,27,28,23,202,2,27,248,22,177,15,23,199,2,28,249,22,161, -9,23,195,2,23,200,2,11,28,248,22,173,15,23,194,2,250,2,78,23,205, -2,23,206,2,249,22,168,15,23,200,2,23,198,1,250,2,78,23,205,2,23, +9,23,195,2,23,200,2,11,28,248,22,173,15,23,194,2,250,2,80,23,205, +2,23,206,2,249,22,168,15,23,200,2,23,198,1,250,2,80,23,205,2,23, 206,2,23,196,1,11,28,23,193,2,192,86,94,23,193,1,27,28,248,22,150, 15,23,196,2,27,249,22,168,15,23,198,2,23,205,2,28,28,248,22,163,15, 193,10,248,22,162,15,193,192,11,11,28,23,193,2,192,86,94,23,193,1,28, 23,203,2,11,27,248,22,177,15,23,200,2,28,249,22,161,9,23,195,2,23, -201,1,11,28,248,22,173,15,23,194,2,250,2,78,23,206,1,23,207,1,249, -22,168,15,23,201,1,23,198,1,250,2,78,205,206,195,192,86,94,23,194,1, +201,1,11,28,248,22,173,15,23,194,2,250,2,80,23,206,1,23,207,1,249, +22,168,15,23,201,1,23,198,1,250,2,80,205,206,195,192,86,94,23,194,1, 28,23,196,2,90,159,39,11,89,161,39,36,11,248,22,171,15,23,197,2,86, 95,23,195,1,23,194,1,27,28,23,201,2,27,248,22,177,15,23,199,2,28, 249,22,161,9,23,195,2,23,200,2,11,28,248,22,173,15,23,194,2,250,2, -78,23,204,2,23,205,2,249,22,168,15,23,200,2,23,198,1,250,2,78,23, +80,23,204,2,23,205,2,249,22,168,15,23,200,2,23,198,1,250,2,80,23, 204,2,23,205,2,23,196,1,11,28,23,193,2,192,86,94,23,193,1,27,28, 248,22,150,15,23,196,2,27,249,22,168,15,23,198,2,23,204,2,28,28,248, 22,163,15,193,10,248,22,162,15,193,192,11,11,28,23,193,2,192,86,94,23, 193,1,28,23,202,2,11,27,248,22,177,15,23,200,2,28,249,22,161,9,23, -195,2,23,201,1,11,28,248,22,173,15,23,194,2,250,2,78,23,205,1,23, -206,1,249,22,168,15,23,201,1,23,198,1,250,2,78,204,205,195,192,28,23, +195,2,23,201,1,11,28,248,22,173,15,23,194,2,250,2,80,23,205,1,23, +206,1,249,22,168,15,23,201,1,23,198,1,250,2,80,204,205,195,192,28,23, 193,2,90,159,39,11,89,161,39,36,11,248,22,171,15,23,199,2,86,95,23, -195,1,23,194,1,27,28,23,198,2,251,2,79,23,198,2,23,203,2,23,201, +195,1,23,194,1,27,28,23,198,2,251,2,81,23,198,2,23,203,2,23,201, 2,23,202,2,11,28,23,193,2,192,86,94,23,193,1,27,28,248,22,150,15, 195,27,249,22,168,15,197,200,28,28,248,22,163,15,193,10,248,22,162,15,193, -192,11,11,28,192,192,28,198,11,251,2,79,198,203,201,202,194,32,82,88,163, -8,36,40,58,11,2,50,222,33,83,28,248,22,87,23,197,2,11,27,248,22, +192,11,11,28,192,192,28,198,11,251,2,81,198,203,201,202,194,32,84,88,163, +8,36,40,58,11,2,52,222,33,85,28,248,22,87,23,197,2,11,27,248,22, 176,15,248,22,80,23,199,2,27,249,22,168,15,23,196,1,23,197,2,28,248, -22,162,15,23,194,2,250,2,78,198,199,195,86,94,23,193,1,27,248,22,81, +22,162,15,23,194,2,250,2,80,198,199,195,86,94,23,193,1,27,248,22,81, 23,200,1,28,248,22,87,23,194,2,11,27,248,22,176,15,248,22,80,23,196, 2,27,249,22,168,15,23,196,1,23,200,2,28,248,22,162,15,23,194,2,250, -2,78,201,202,195,86,94,23,193,1,27,248,22,81,23,197,1,28,248,22,87, +2,80,201,202,195,86,94,23,193,1,27,248,22,81,23,197,1,28,248,22,87, 23,194,2,11,27,248,22,176,15,248,22,80,195,27,249,22,168,15,23,196,1, -202,28,248,22,162,15,193,250,2,78,204,205,195,251,2,82,204,205,206,248,22, +202,28,248,22,162,15,193,250,2,80,204,205,195,251,2,84,204,205,206,248,22, 81,199,86,95,28,28,248,22,150,15,23,195,2,10,28,248,22,144,7,23,195, 2,28,248,22,173,15,23,195,2,10,248,22,174,15,23,195,2,11,12,250,22, -168,11,2,6,2,48,23,197,2,28,28,23,195,2,28,28,248,22,150,15,23, +168,11,2,6,2,50,23,197,2,28,28,23,195,2,28,28,248,22,150,15,23, 196,2,10,28,248,22,144,7,23,196,2,28,248,22,173,15,23,196,2,10,248, 22,174,15,23,196,2,11,248,22,173,15,23,196,2,11,10,12,250,22,168,11, 2,6,6,45,45,40,111,114,47,99,32,35,102,32,40,97,110,100,47,99,32, 112,97,116,104,45,115,116,114,105,110,103,63,32,114,101,108,97,116,105,118,101, 45,112,97,116,104,63,41,41,23,198,2,28,28,248,22,173,15,23,195,2,90, 159,39,11,89,161,39,36,11,248,22,171,15,23,198,2,249,22,159,9,194,2, -49,11,27,249,22,166,8,247,22,165,8,5,4,80,65,84,72,27,28,23,194, +51,11,27,249,22,166,8,247,22,165,8,5,4,80,65,84,72,27,28,23,194, 2,249,80,158,40,41,249,22,156,8,23,198,1,7,63,9,86,94,23,194,1, -9,27,28,249,22,159,9,247,22,171,8,2,43,249,22,79,248,22,159,15,5, +9,27,28,249,22,159,9,247,22,171,8,2,45,249,22,79,248,22,159,15,5, 1,46,23,196,1,23,194,1,28,248,22,87,23,194,2,11,27,248,22,176,15, 248,22,80,23,196,2,27,249,22,168,15,23,196,1,23,201,2,28,248,22,162, -15,23,194,2,250,2,78,202,203,195,86,94,23,193,1,27,248,22,81,23,197, +15,23,194,2,250,2,80,202,203,195,86,94,23,193,1,27,248,22,81,23,197, 1,28,248,22,87,23,194,2,11,27,248,22,176,15,248,22,80,23,196,2,27, -249,22,168,15,23,196,1,23,204,2,28,248,22,162,15,23,194,2,250,2,78, +249,22,168,15,23,196,1,23,204,2,28,248,22,162,15,23,194,2,250,2,80, 205,206,195,86,94,23,193,1,27,248,22,81,23,197,1,28,248,22,87,23,194, 2,11,27,248,22,176,15,248,22,80,195,27,249,22,168,15,23,196,1,206,28, -248,22,162,15,193,250,2,78,23,16,23,17,195,251,2,82,23,16,23,17,23, +248,22,162,15,193,250,2,80,23,16,23,17,195,251,2,84,23,16,23,17,23, 18,248,22,81,199,27,248,22,176,15,23,196,1,28,248,22,162,15,193,250,2, -78,198,199,195,11,250,80,159,39,40,39,196,197,11,250,80,159,39,40,39,196, -11,11,32,87,88,163,8,36,39,57,11,2,50,222,33,89,0,8,35,114,120, +80,198,199,195,11,250,80,159,39,40,39,196,197,11,250,80,159,39,40,39,196, +11,11,32,89,88,163,8,36,39,57,11,2,52,222,33,91,0,8,35,114,120, 35,34,92,34,34,27,249,22,141,16,23,197,2,23,198,2,28,23,193,2,86, 94,23,196,1,27,248,22,101,23,195,2,27,27,248,22,110,23,197,1,27,249, 22,141,16,23,201,2,23,196,2,28,23,193,2,86,94,23,194,1,27,248,22, -101,23,195,2,27,250,2,87,23,203,2,23,204,1,248,22,110,23,199,1,28, -249,22,141,8,23,196,2,2,51,249,22,93,23,202,2,194,249,22,79,248,22, -159,15,28,249,22,159,9,247,22,171,8,2,43,250,22,153,16,2,88,23,200, -1,2,51,23,197,1,194,86,95,23,199,1,23,193,1,28,249,22,141,8,23, -196,2,2,51,249,22,93,23,200,2,9,249,22,79,248,22,159,15,28,249,22, -159,9,247,22,171,8,2,43,250,22,153,16,2,88,23,200,1,2,51,23,197, -1,9,28,249,22,141,8,23,196,2,2,51,249,22,93,197,194,86,94,23,196, -1,249,22,79,248,22,159,15,28,249,22,159,9,247,22,171,8,2,43,250,22, -153,16,2,88,23,200,1,2,51,23,197,1,194,86,94,23,193,1,28,249,22, -141,8,23,198,2,2,51,249,22,93,195,9,86,94,23,194,1,249,22,79,248, -22,159,15,28,249,22,159,9,247,22,171,8,2,43,250,22,153,16,2,88,23, -202,1,2,51,23,199,1,9,86,95,28,28,248,22,133,8,194,10,248,22,144, +101,23,195,2,27,250,2,89,23,203,2,23,204,1,248,22,110,23,199,1,28, +249,22,141,8,23,196,2,2,53,249,22,93,23,202,2,194,249,22,79,248,22, +159,15,28,249,22,159,9,247,22,171,8,2,45,250,22,153,16,2,90,23,200, +1,2,53,23,197,1,194,86,95,23,199,1,23,193,1,28,249,22,141,8,23, +196,2,2,53,249,22,93,23,200,2,9,249,22,79,248,22,159,15,28,249,22, +159,9,247,22,171,8,2,45,250,22,153,16,2,90,23,200,1,2,53,23,197, +1,9,28,249,22,141,8,23,196,2,2,53,249,22,93,197,194,86,94,23,196, +1,249,22,79,248,22,159,15,28,249,22,159,9,247,22,171,8,2,45,250,22, +153,16,2,90,23,200,1,2,53,23,197,1,194,86,94,23,193,1,28,249,22, +141,8,23,198,2,2,53,249,22,93,195,9,86,94,23,194,1,249,22,79,248, +22,159,15,28,249,22,159,9,247,22,171,8,2,45,250,22,153,16,2,90,23, +202,1,2,53,23,199,1,9,86,95,28,28,248,22,133,8,194,10,248,22,144, 7,194,12,250,22,168,11,2,7,6,21,21,40,111,114,47,99,32,98,121,116, 101,115,63,32,115,116,114,105,110,103,63,41,196,28,28,248,22,88,195,249,22, 4,22,150,15,196,11,12,250,22,168,11,2,7,6,14,14,40,108,105,115,116, -111,102,32,112,97,116,104,63,41,197,250,2,87,197,195,28,248,22,144,7,197, +111,102,32,112,97,116,104,63,41,197,250,2,89,197,195,28,248,22,144,7,197, 248,22,158,8,197,196,86,94,28,28,248,22,150,15,23,195,2,10,28,248,22, 144,7,23,195,2,28,248,22,173,15,23,195,2,10,248,22,174,15,23,195,2, -11,12,250,22,168,11,23,196,2,2,48,23,197,2,28,248,22,173,15,23,195, -2,12,251,22,170,11,23,197,1,2,52,2,46,23,198,1,86,94,28,28,248, +11,12,250,22,168,11,23,196,2,2,50,23,197,2,28,248,22,173,15,23,195, +2,12,251,22,170,11,23,197,1,2,54,2,48,23,198,1,86,94,28,28,248, 22,150,15,23,195,2,10,28,248,22,144,7,23,195,2,28,248,22,173,15,23, -195,2,10,248,22,174,15,23,195,2,11,12,250,22,168,11,23,196,2,2,48, -23,197,2,28,248,22,173,15,23,195,2,12,251,22,170,11,23,197,1,2,52, -2,46,23,198,1,86,94,86,94,28,28,248,22,150,15,23,195,2,10,28,248, +195,2,10,248,22,174,15,23,195,2,11,12,250,22,168,11,23,196,2,2,50, +23,197,2,28,248,22,173,15,23,195,2,12,251,22,170,11,23,197,1,2,54, +2,48,23,198,1,86,94,86,94,28,28,248,22,150,15,23,195,2,10,28,248, 22,144,7,23,195,2,28,248,22,173,15,23,195,2,10,248,22,174,15,23,195, -2,11,12,250,22,168,11,23,196,2,2,48,23,197,2,28,248,22,173,15,23, -195,2,86,94,23,194,1,12,251,22,170,11,23,197,2,2,52,2,46,23,198, -1,249,22,3,20,20,94,88,163,8,36,37,47,11,9,223,2,33,92,23,195, +2,11,12,250,22,168,11,23,196,2,2,50,23,197,2,28,248,22,173,15,23, +195,2,86,94,23,194,1,12,251,22,170,11,23,197,2,2,54,2,48,23,198, +1,249,22,3,20,20,94,88,163,8,36,37,47,11,9,223,2,33,94,23,195, 1,23,197,1,28,28,248,22,0,23,195,2,249,22,50,23,196,2,37,11,12, -250,22,168,11,23,196,1,2,53,23,197,1,86,94,28,28,248,22,150,15,23, +250,22,168,11,23,196,1,2,55,23,197,1,86,94,28,28,248,22,150,15,23, 194,2,10,28,248,22,144,7,23,194,2,28,248,22,173,15,23,194,2,10,248, -22,174,15,23,194,2,11,12,250,22,168,11,2,11,2,48,23,196,2,28,248, -22,173,15,23,194,2,12,251,22,170,11,2,11,2,52,2,46,23,197,1,86, +22,174,15,23,194,2,11,12,250,22,168,11,2,11,2,50,23,196,2,28,248, +22,173,15,23,194,2,12,251,22,170,11,2,11,2,54,2,48,23,197,1,86, 95,86,94,86,94,28,28,248,22,150,15,23,196,2,10,28,248,22,144,7,23, 196,2,28,248,22,173,15,23,196,2,10,248,22,174,15,23,196,2,11,12,250, -22,168,11,2,11,2,48,23,198,2,28,248,22,173,15,23,196,2,12,251,22, -170,11,2,11,2,52,2,46,23,199,2,249,22,3,32,0,88,163,8,36,37, -46,11,9,222,33,95,23,198,2,28,28,248,22,0,23,195,2,249,22,50,23, -196,2,37,11,12,250,22,168,11,2,11,2,53,23,197,2,251,80,158,40,46, +22,168,11,2,11,2,50,23,198,2,28,248,22,173,15,23,196,2,12,251,22, +170,11,2,11,2,54,2,48,23,199,2,249,22,3,32,0,88,163,8,36,37, +46,11,9,222,33,97,23,198,2,28,28,248,22,0,23,195,2,249,22,50,23, +196,2,37,11,12,250,22,168,11,2,11,2,55,23,197,2,251,80,158,40,46, 23,198,1,23,199,1,23,200,1,11,86,94,28,28,248,22,150,15,23,194,2, 10,28,248,22,144,7,23,194,2,28,248,22,173,15,23,194,2,10,248,22,174, -15,23,194,2,11,12,250,22,168,11,2,13,2,48,23,196,2,28,248,22,173, -15,23,194,2,12,251,22,170,11,2,13,2,52,2,46,23,197,1,86,96,86, +15,23,194,2,11,12,250,22,168,11,2,13,2,50,23,196,2,28,248,22,173, +15,23,194,2,12,251,22,170,11,2,13,2,54,2,48,23,197,1,86,96,86, 94,28,28,248,22,150,15,23,196,2,10,28,248,22,144,7,23,196,2,28,248, 22,173,15,23,196,2,10,248,22,174,15,23,196,2,11,12,250,22,168,11,2, -13,2,48,23,198,2,28,248,22,173,15,23,196,2,12,251,22,170,11,2,13, -2,52,2,46,23,199,2,86,94,86,94,28,28,248,22,150,15,23,197,2,10, +13,2,50,23,198,2,28,248,22,173,15,23,196,2,12,251,22,170,11,2,13, +2,54,2,48,23,199,2,86,94,86,94,28,28,248,22,150,15,23,197,2,10, 28,248,22,144,7,23,197,2,28,248,22,173,15,23,197,2,10,248,22,174,15, -23,197,2,11,12,250,22,168,11,2,13,2,48,23,199,2,28,248,22,173,15, -23,197,2,12,251,22,170,11,2,13,2,52,2,46,23,200,2,249,22,3,32, -0,88,163,8,36,37,46,11,9,222,33,97,23,199,2,28,28,248,22,0,23, -195,2,249,22,50,23,196,2,37,11,12,250,22,168,11,2,13,2,53,23,197, +23,197,2,11,12,250,22,168,11,2,13,2,50,23,199,2,28,248,22,173,15, +23,197,2,12,251,22,170,11,2,13,2,54,2,48,23,200,2,249,22,3,32, +0,88,163,8,36,37,46,11,9,222,33,99,23,199,2,28,28,248,22,0,23, +195,2,249,22,50,23,196,2,37,11,12,250,22,168,11,2,13,2,55,23,197, 2,251,80,158,40,46,23,198,1,23,200,1,23,201,1,23,199,1,27,248,22, -191,15,2,56,28,248,22,175,15,23,194,2,192,27,28,248,22,173,15,23,195, +191,15,2,58,28,248,22,175,15,23,194,2,192,27,28,248,22,173,15,23,195, 2,20,13,159,80,159,38,55,37,250,80,159,41,56,37,249,22,33,11,80,159, -43,55,37,22,128,16,248,22,191,15,2,57,27,248,22,191,15,2,58,250,80, +43,55,37,22,128,16,248,22,191,15,2,59,27,248,22,191,15,2,60,250,80, 159,42,40,39,23,196,1,23,198,2,11,11,28,23,193,2,192,86,94,23,193, -1,27,249,22,176,15,27,248,22,191,15,2,58,250,80,159,45,40,39,23,196, -1,11,11,248,22,191,15,2,57,90,159,39,11,89,161,39,36,11,248,22,171, +1,27,249,22,176,15,27,248,22,191,15,2,60,250,80,159,45,40,39,23,196, +1,11,11,248,22,191,15,2,59,90,159,39,11,89,161,39,36,11,248,22,171, 15,23,197,1,86,95,23,195,1,23,194,1,249,22,176,15,23,200,1,23,195, 1,27,249,22,168,15,23,196,1,6,11,11,99,111,110,102,105,103,46,114,107, 116,100,27,28,248,22,162,15,23,195,2,249,22,132,6,23,196,1,22,139,6, -11,28,192,192,21,17,1,0,28,248,22,144,7,23,194,2,248,22,158,15,23, -194,1,28,248,22,133,8,23,194,2,248,22,159,15,23,194,1,192,32,102,88, -163,8,36,38,54,11,2,50,222,33,103,28,248,22,87,23,195,2,9,28,248, -22,80,23,195,2,249,22,79,27,248,22,132,18,23,198,2,28,248,22,144,7, -23,194,2,248,22,158,15,23,194,1,28,248,22,133,8,23,194,2,248,22,159, -15,23,194,1,192,27,248,22,133,18,23,198,1,28,248,22,87,23,194,2,9, -28,248,22,80,23,194,2,249,22,79,27,248,22,132,18,23,197,2,28,248,22, -144,7,23,194,2,248,22,158,15,23,194,1,28,248,22,133,8,23,194,2,248, -22,159,15,23,194,1,192,27,248,22,133,18,23,197,1,28,248,22,87,23,194, -2,9,28,248,22,80,23,194,2,249,22,79,27,248,22,132,18,23,197,2,28, -248,22,144,7,23,194,2,248,22,158,15,23,194,1,28,248,22,133,8,23,194, -2,248,22,159,15,23,194,1,192,249,2,102,23,203,1,248,22,133,18,23,198, -1,249,22,93,23,201,2,249,2,102,23,203,1,248,22,133,18,23,198,1,249, -22,93,23,198,2,27,248,22,133,18,23,197,1,28,248,22,87,23,194,2,9, -28,248,22,80,23,194,2,249,22,79,27,248,22,132,18,23,197,2,28,248,22, -144,7,23,194,2,248,22,158,15,23,194,1,28,248,22,133,8,23,194,2,248, -22,159,15,23,194,1,192,249,2,102,23,203,1,248,22,133,18,23,198,1,249, -22,93,23,201,2,249,2,102,23,203,1,248,22,133,18,23,198,1,249,22,93, -23,195,2,27,248,22,133,18,23,198,1,28,248,22,87,23,194,2,9,28,248, -22,80,23,194,2,249,22,79,27,248,22,132,18,23,197,2,28,248,22,144,7, -23,194,2,248,22,158,15,23,194,1,28,248,22,133,8,23,194,2,248,22,159, -15,23,194,1,192,27,248,22,133,18,23,197,1,28,248,22,87,23,194,2,9, -28,248,22,80,23,194,2,249,22,79,27,248,22,132,18,23,197,2,28,248,22, -144,7,23,194,2,248,22,158,15,23,194,1,28,248,22,133,8,23,194,2,248, -22,159,15,23,194,1,192,249,2,102,23,203,1,248,22,133,18,23,198,1,249, -22,93,23,201,2,249,2,102,23,203,1,248,22,133,18,23,198,1,249,22,93, -23,198,2,27,248,22,133,18,23,197,1,28,248,22,87,23,194,2,9,28,248, -22,80,23,194,2,249,22,79,27,248,22,132,18,23,197,2,28,248,22,144,7, -23,194,2,248,22,158,15,23,194,1,28,248,22,133,8,23,194,2,248,22,159, -15,23,194,1,192,249,2,102,23,203,1,248,22,133,18,23,198,1,249,22,93, -23,201,2,249,2,102,23,203,1,248,22,133,18,23,198,1,27,250,22,157,2, -23,198,1,23,199,1,11,28,23,193,2,28,248,22,87,23,194,2,9,28,248, -22,80,23,194,2,249,22,79,27,248,22,132,18,23,197,2,28,248,22,144,7, -23,194,2,248,22,158,15,23,194,1,28,248,22,133,8,23,194,2,248,22,159, -15,23,194,1,192,27,248,22,133,18,23,197,1,28,248,22,87,23,194,2,9, -28,248,22,80,23,194,2,249,22,79,27,248,22,132,18,23,197,2,28,248,22, -144,7,23,194,2,248,22,158,15,23,194,1,28,248,22,133,8,23,194,2,248, -22,159,15,23,194,1,192,249,2,102,23,204,1,248,22,133,18,23,198,1,249, -22,93,23,202,2,249,2,102,23,204,1,248,22,133,18,23,198,1,249,22,93, -23,199,2,27,248,22,133,18,23,197,1,28,248,22,87,23,194,2,9,28,248, -22,80,23,194,2,249,22,79,27,248,22,132,18,23,197,2,28,248,22,144,7, -23,194,2,248,22,158,15,23,194,1,28,248,22,133,8,23,194,2,248,22,159, -15,23,194,1,192,249,2,102,23,204,1,248,22,133,18,23,198,1,249,22,93, -23,202,2,249,2,102,23,204,1,248,22,133,18,23,198,1,196,32,105,88,163, -8,36,38,51,11,2,50,222,33,106,28,248,22,87,23,195,2,9,28,248,22, -80,23,195,2,249,22,79,27,248,22,132,18,23,198,2,28,248,22,144,7,23, -194,2,248,22,158,15,23,194,1,28,248,22,133,8,23,194,2,248,22,159,15, -23,194,1,192,27,248,22,133,18,23,198,1,28,248,22,87,23,194,2,9,28, -248,22,80,23,194,2,249,22,79,27,248,22,132,18,23,197,2,28,248,22,144, -7,23,194,2,248,22,158,15,23,194,1,28,248,22,133,8,23,194,2,248,22, -159,15,23,194,1,192,249,2,105,23,200,1,248,22,133,18,23,198,1,249,22, -93,23,198,2,249,2,105,23,200,1,248,22,133,18,23,198,1,249,22,93,23, -195,2,27,248,22,133,18,23,198,1,28,248,22,87,23,194,2,9,28,248,22, -80,23,194,2,249,22,79,27,248,22,132,18,23,197,2,28,248,22,144,7,23, -194,2,248,22,158,15,23,194,1,28,248,22,133,8,23,194,2,248,22,159,15, -23,194,1,192,249,2,105,23,200,1,248,22,133,18,23,198,1,249,22,93,23, -198,2,249,2,105,23,200,1,248,22,133,18,23,198,1,27,27,248,22,191,15, -2,56,28,248,22,175,15,23,194,2,192,27,28,248,22,173,15,23,195,2,20, -13,159,80,159,39,55,37,250,80,159,42,56,37,249,22,33,11,80,159,44,55, -37,22,128,16,248,22,191,15,2,57,27,248,22,191,15,2,58,250,80,159,43, -40,39,23,196,1,23,198,2,11,11,28,23,193,2,192,86,94,23,193,1,27, -249,22,176,15,27,248,22,191,15,2,58,250,80,159,46,40,39,23,196,1,11, -11,248,22,191,15,2,57,90,159,39,11,89,161,39,36,11,248,22,171,15,23, -197,1,86,95,23,195,1,23,194,1,249,22,176,15,23,200,1,23,195,1,27, -248,80,159,39,57,39,23,195,2,27,250,22,157,2,23,197,2,70,108,105,110, -107,115,45,102,105,108,101,11,27,28,23,194,2,86,94,23,196,1,23,194,1, -86,94,23,194,1,249,22,168,15,27,27,250,22,157,2,23,202,2,67,108,105, -98,45,100,105,114,11,28,248,22,144,7,23,194,2,248,22,158,15,23,194,1, -28,248,22,133,8,23,194,2,248,22,159,15,23,194,1,192,28,23,193,2,192, -86,94,23,193,1,250,22,168,15,23,202,1,62,117,112,6,3,3,108,105,98, -2,55,248,22,182,8,27,248,22,89,23,196,1,27,250,22,157,2,23,201,1, -78,108,105,110,107,115,45,115,101,97,114,99,104,45,102,105,108,101,115,11,28, -23,193,2,249,2,105,23,196,1,23,195,1,193,248,22,158,13,23,194,1,28, -248,22,178,12,23,194,2,86,94,23,193,1,249,22,16,247,22,19,32,0,88, -163,8,36,36,41,11,9,222,11,88,163,8,36,36,43,11,9,223,0,33,108, -32,110,88,163,8,36,37,55,11,2,50,222,33,111,27,249,22,154,6,8,128, -128,23,196,2,28,248,22,139,7,23,194,2,9,249,22,79,23,195,1,27,249, -22,154,6,8,128,128,23,199,2,28,248,22,139,7,23,194,2,9,249,22,79, -23,195,1,27,249,22,154,6,8,128,128,23,202,2,28,248,22,139,7,23,194, -2,9,249,22,79,23,195,1,27,249,22,154,6,8,128,128,23,205,2,28,248, -22,139,7,23,194,2,9,249,22,79,23,195,1,248,2,110,23,206,1,27,249, -22,154,6,8,128,128,23,196,2,28,248,22,133,8,23,194,2,28,249,22,129, -4,248,22,138,8,23,196,2,8,128,128,249,22,1,22,145,8,249,22,79,23, -197,1,27,249,22,154,6,8,128,128,23,201,2,28,248,22,139,7,23,194,2, -9,249,22,79,23,195,1,27,249,22,154,6,8,128,128,23,204,2,28,248,22, +11,28,192,192,21,17,1,0,28,248,22,144,7,23,195,2,27,248,22,158,15, +23,196,1,28,248,22,175,15,23,194,2,192,249,22,176,15,23,195,1,27,27, +248,22,191,15,2,61,28,248,22,175,15,23,194,2,192,28,248,22,174,15,23, +194,2,249,22,176,15,23,195,1,249,22,176,15,250,80,159,48,40,39,248,22, +191,15,2,60,11,10,248,22,191,15,2,59,250,80,159,44,40,39,248,22,191, +15,2,60,23,196,1,10,28,23,193,2,192,86,94,23,193,1,248,22,191,15, +2,59,28,248,22,133,8,23,195,2,27,248,22,159,15,23,196,1,28,248,22, +175,15,23,194,2,192,249,22,176,15,23,195,1,27,27,248,22,191,15,2,61, +28,248,22,175,15,23,194,2,192,28,248,22,174,15,23,194,2,249,22,176,15, +23,195,1,249,22,176,15,250,80,159,48,40,39,248,22,191,15,2,60,11,10, +248,22,191,15,2,59,250,80,159,44,40,39,248,22,191,15,2,60,23,196,1, +10,28,23,193,2,192,86,94,23,193,1,248,22,191,15,2,59,28,248,22,150, +15,23,195,2,28,248,22,175,15,23,195,2,193,249,22,176,15,23,196,1,27, +27,248,22,191,15,2,61,28,248,22,175,15,23,194,2,192,28,248,22,174,15, +23,194,2,249,22,176,15,23,195,1,249,22,176,15,250,80,159,47,40,39,248, +22,191,15,2,60,11,10,248,22,191,15,2,59,250,80,159,43,40,39,248,22, +191,15,2,60,23,196,1,10,28,23,193,2,192,86,94,23,193,1,248,22,191, +15,2,59,193,28,248,22,175,15,23,195,2,193,249,22,176,15,23,196,1,27, +27,248,22,191,15,2,61,28,248,22,175,15,23,194,2,192,28,248,22,174,15, +23,194,2,249,22,176,15,23,195,1,249,22,176,15,250,80,159,47,40,39,248, +22,191,15,2,60,11,10,248,22,191,15,2,59,250,80,159,43,40,39,248,22, +191,15,2,60,23,196,1,10,28,23,193,2,192,86,94,23,193,1,248,22,191, +15,2,59,28,248,22,175,15,23,195,2,193,28,248,22,174,15,23,195,2,249, +22,176,15,23,196,1,249,22,176,15,250,80,159,43,40,39,248,22,191,15,2, +60,11,10,248,22,191,15,2,59,250,80,159,39,40,39,248,22,191,15,2,60, +196,10,28,248,22,87,23,196,2,9,28,248,22,80,23,196,2,249,22,79,248, +80,159,39,58,39,248,22,132,18,23,199,2,27,248,22,133,18,23,199,1,28, +248,22,87,23,194,2,9,28,248,22,80,23,194,2,249,22,79,248,80,159,42, +58,39,248,22,132,18,23,197,2,27,248,22,133,18,23,197,1,28,248,22,87, +23,194,2,9,28,248,22,80,23,194,2,249,22,79,248,80,159,45,58,39,248, +22,132,18,23,197,2,249,80,159,46,8,41,39,23,204,1,248,22,133,18,23, +198,1,249,22,93,23,202,2,249,80,159,46,8,41,39,23,204,1,248,22,133, +18,23,198,1,249,22,93,23,199,2,27,248,22,133,18,23,197,1,28,248,22, +87,23,194,2,9,28,248,22,80,23,194,2,249,22,79,248,80,159,45,58,39, +248,22,132,18,23,197,2,249,80,159,46,8,41,39,23,204,1,248,22,133,18, +23,198,1,249,22,93,23,202,2,249,80,159,46,8,41,39,23,204,1,248,22, +133,18,23,198,1,249,22,93,23,196,2,27,248,22,133,18,23,199,1,28,248, +22,87,23,194,2,9,28,248,22,80,23,194,2,249,22,79,248,80,159,42,58, +39,248,22,132,18,23,197,2,27,248,22,133,18,23,197,1,28,248,22,87,23, +194,2,9,28,248,22,80,23,194,2,249,22,79,248,80,159,45,58,39,248,22, +132,18,23,197,2,249,80,159,46,8,41,39,23,204,1,248,22,133,18,23,198, +1,249,22,93,23,202,2,249,80,159,46,8,41,39,23,204,1,248,22,133,18, +23,198,1,249,22,93,23,199,2,27,248,22,133,18,23,197,1,28,248,22,87, +23,194,2,9,28,248,22,80,23,194,2,249,22,79,248,80,159,45,58,39,248, +22,132,18,23,197,2,249,80,159,46,8,41,39,23,204,1,248,22,133,18,23, +198,1,249,22,93,23,202,2,249,80,159,46,8,41,39,23,204,1,248,22,133, +18,23,198,1,27,250,22,157,2,23,198,1,23,199,1,11,28,192,249,80,159, +39,8,41,39,198,194,196,27,27,248,22,191,15,2,58,28,248,22,175,15,23, +194,2,192,27,28,248,22,173,15,23,195,2,20,13,159,80,159,39,55,37,250, +80,159,42,56,37,249,22,33,11,80,159,44,55,37,22,128,16,248,22,191,15, +2,59,27,248,22,191,15,2,60,250,80,159,43,40,39,23,196,1,23,198,2, +11,11,28,23,193,2,192,86,94,23,193,1,27,249,22,176,15,27,248,22,191, +15,2,60,250,80,159,46,40,39,23,196,1,11,11,248,22,191,15,2,59,90, +159,39,11,89,161,39,36,11,248,22,171,15,23,197,1,86,95,23,195,1,23, +194,1,249,22,176,15,23,200,1,23,195,1,27,248,80,159,39,57,39,23,195, +1,27,248,80,159,40,58,39,27,250,22,157,2,23,199,2,70,108,105,110,107, +115,45,102,105,108,101,11,28,23,193,2,192,86,94,23,193,1,249,22,168,15, +27,250,22,157,2,23,202,2,67,108,105,98,45,100,105,114,11,28,192,192,62, +117,112,2,57,248,22,182,8,250,80,159,43,8,25,39,23,198,1,78,108,105, +110,107,115,45,115,101,97,114,99,104,45,102,105,108,101,115,248,22,89,23,198, +1,248,22,158,13,23,194,1,28,248,22,178,12,23,194,2,86,94,23,193,1, +249,22,16,247,22,19,32,0,88,163,8,36,36,41,11,9,222,11,88,163,8, +36,36,43,11,9,223,0,33,109,32,111,88,163,8,36,37,55,11,2,52,222, +33,112,27,249,22,154,6,8,128,128,23,196,2,28,248,22,139,7,23,194,2, +9,249,22,79,23,195,1,27,249,22,154,6,8,128,128,23,199,2,28,248,22, 139,7,23,194,2,9,249,22,79,23,195,1,27,249,22,154,6,8,128,128,23, -207,2,28,248,22,139,7,23,194,2,9,249,22,79,23,195,1,27,249,22,154, -6,8,128,128,23,210,2,28,248,22,139,7,23,194,2,9,249,22,79,23,195, -1,248,2,110,23,211,1,192,192,248,22,191,5,23,194,1,20,13,159,80,159, -37,8,29,37,32,0,88,163,36,37,44,11,9,222,33,109,27,248,22,182,5, -23,195,1,250,22,46,22,37,88,163,36,36,8,24,11,9,223,3,33,112,20, -20,94,88,163,36,36,43,11,9,223,3,33,113,23,196,1,248,22,14,20,20, -94,88,163,36,36,47,16,2,36,8,128,128,9,224,1,2,33,114,23,195,1, -86,94,28,248,22,135,12,23,199,2,27,247,22,191,11,28,249,22,183,11,23, -195,2,2,59,251,22,187,11,23,197,1,2,59,250,22,128,8,2,60,28,23, -202,1,86,95,23,204,1,23,203,1,80,159,48,48,38,28,23,203,1,86,94, -23,204,1,80,159,48,51,38,249,22,179,8,80,159,50,8,24,38,23,206,1, -248,22,131,12,23,207,2,247,22,29,12,12,28,248,22,135,12,23,199,2,86, -94,23,198,1,248,23,194,1,247,22,137,2,197,86,95,28,248,22,135,12,23, -200,2,27,247,22,191,11,28,249,22,183,11,23,195,2,2,59,251,22,187,11, -23,197,1,2,59,250,22,128,8,2,60,28,23,203,2,80,159,49,48,38,28, -23,204,2,80,159,49,51,38,249,22,179,8,80,159,51,8,24,38,23,207,2, -248,22,131,12,23,208,2,247,22,29,12,12,28,23,193,2,28,23,195,1,86, -95,23,197,1,23,196,1,86,94,20,18,159,11,80,158,41,49,247,22,137,2, -20,18,159,11,80,158,41,50,23,193,1,28,23,196,1,86,94,23,197,1,86, -94,20,18,159,11,80,158,41,52,247,22,137,2,20,18,159,11,80,158,41,53, -23,193,1,86,94,250,22,180,8,80,159,44,8,26,38,23,200,2,247,22,137, -2,250,22,180,8,80,159,44,8,27,38,23,200,1,23,196,1,86,94,23,195, -1,12,28,248,22,135,12,23,200,2,86,94,23,199,1,248,23,195,1,247,22, -137,2,198,20,20,94,248,22,139,6,23,194,2,28,248,22,139,7,248,22,139, -6,23,195,1,12,248,22,164,11,6,30,30,101,120,112,101,99,116,101,100,32, -97,32,115,105,110,103,108,101,32,83,45,101,120,112,114,101,115,115,105,111,110, -248,22,191,5,23,194,1,28,248,22,88,23,194,2,28,28,249,22,189,3,38, -248,22,92,23,196,2,10,249,22,189,3,39,248,22,92,23,196,2,28,28,248, -22,144,7,248,22,80,23,195,2,10,249,22,159,9,64,114,111,111,116,248,22, -132,18,23,196,2,28,27,248,22,101,194,28,248,22,150,15,23,194,2,10,28, -248,22,144,7,23,194,2,28,248,22,173,15,23,194,2,10,248,22,174,15,23, -194,1,11,27,248,22,87,248,22,103,195,28,192,192,248,22,154,16,248,22,110, -195,11,11,11,11,250,22,155,2,23,197,1,23,198,1,249,22,79,23,198,1, -23,201,1,28,28,248,22,87,248,22,103,23,197,2,10,249,22,145,16,248,22, -110,23,198,2,247,22,162,8,27,248,22,178,15,249,22,176,15,248,22,101,23, -200,2,23,198,1,28,248,22,64,248,22,80,23,198,2,86,94,23,196,1,86, -94,28,250,22,157,2,23,197,2,11,11,12,250,22,155,2,23,197,2,11,9, -249,22,161,2,23,196,2,20,20,95,88,163,8,36,38,50,11,9,224,3,2, -33,121,23,195,1,23,196,1,27,248,22,67,248,22,132,18,23,199,1,250,22, -155,2,23,198,2,23,196,2,249,22,79,248,22,128,2,23,200,1,250,22,157, -2,23,203,1,23,201,1,9,12,250,22,155,2,23,196,1,23,197,1,248,22, -94,23,199,1,20,13,159,80,159,39,8,29,37,88,163,36,37,57,8,240,0, -144,0,1,9,227,3,2,1,0,4,33,116,27,28,23,194,2,80,159,40,48, -38,28,23,195,2,80,159,40,51,38,249,22,179,8,80,159,42,8,24,38,23, -198,2,27,248,80,159,42,8,28,39,23,195,2,28,249,22,161,9,23,195,2, -28,23,197,2,80,158,43,50,28,23,198,2,80,158,43,53,249,22,179,8,80, -159,45,8,27,38,23,201,2,86,96,23,199,1,23,194,1,23,193,1,28,23, -195,1,80,158,41,49,28,23,196,1,80,158,41,52,249,22,179,8,80,159,43, -8,26,38,23,199,1,20,13,159,80,159,41,8,29,37,20,20,94,88,163,36, -37,58,16,2,8,240,0,240,0,0,8,131,52,9,228,5,4,3,2,6,0, -33,117,23,199,1,20,13,159,80,159,41,55,37,26,29,80,159,8,34,56,37, -249,22,33,11,80,159,8,36,55,37,22,184,14,10,22,185,14,10,22,186,14, -10,22,189,14,10,22,188,14,10,22,190,14,10,22,187,14,10,22,191,14,10, -22,128,15,10,22,129,15,10,22,130,15,10,22,131,15,10,22,132,15,11,22, -182,14,11,27,249,22,182,5,23,197,2,66,98,105,110,97,114,121,27,250,22, -46,22,37,88,163,8,36,36,44,11,9,223,4,33,118,20,20,94,88,163,36, -36,43,11,9,223,4,33,119,23,197,1,86,94,28,28,248,22,88,23,194,2, -249,22,4,32,0,88,163,8,36,37,45,11,9,222,33,120,23,195,2,11,12, -248,22,164,11,6,18,18,105,108,108,45,102,111,114,109,101,100,32,99,111,110, -116,101,110,116,27,247,22,137,2,27,90,159,39,11,89,161,39,36,11,248,22, -171,15,23,202,1,192,86,96,249,22,3,20,20,94,88,163,8,36,37,54,11, -9,224,2,3,33,122,23,195,1,23,197,1,249,22,161,2,195,88,163,8,36, -38,48,11,9,223,3,33,123,28,23,199,1,86,94,20,18,159,11,80,158,45, -49,193,20,18,159,11,80,158,45,50,196,28,23,200,1,86,94,20,18,159,11, -80,158,45,52,193,20,18,159,11,80,158,45,53,196,86,94,250,22,180,8,80, -159,48,8,26,38,23,204,2,196,250,22,180,8,80,159,48,8,27,38,23,204, -1,23,200,1,193,248,22,9,20,20,96,88,163,8,32,37,8,43,16,2,8, -240,0,240,0,0,8,155,244,9,226,1,4,3,2,33,124,23,195,1,23,196, -1,23,197,1,0,7,35,114,120,34,47,43,34,28,248,22,144,7,23,195,2, -27,249,22,143,16,2,126,23,197,2,28,23,193,2,28,249,22,189,3,248,22, -100,23,196,2,248,22,179,3,248,22,147,7,23,199,2,249,22,7,250,22,166, -7,23,200,1,36,248,22,100,23,199,1,23,198,1,249,22,7,250,22,166,7, -23,200,2,36,248,22,100,23,199,2,249,22,79,249,22,166,7,23,201,1,248, -22,102,23,200,1,23,200,1,249,22,7,23,197,1,23,198,1,90,159,39,11, -89,161,39,36,11,248,22,171,15,23,198,1,86,94,23,195,1,28,249,22,159, -9,23,195,2,2,49,86,94,23,193,1,249,22,7,23,196,1,23,200,1,27, -249,22,79,23,197,1,23,201,1,28,248,22,144,7,23,195,2,27,249,22,143, -16,2,126,23,197,2,28,23,193,2,28,249,22,189,3,248,22,100,23,196,2, -248,22,179,3,248,22,147,7,23,199,2,249,22,7,250,22,166,7,23,200,1, -36,248,22,100,23,199,1,23,196,1,249,22,7,250,22,166,7,23,200,2,36, -248,22,100,23,199,2,249,22,79,249,22,166,7,23,201,1,248,22,102,23,200, -1,23,198,1,249,22,7,23,197,1,23,196,1,90,159,39,11,89,161,39,36, -11,248,22,171,15,23,198,1,86,94,23,195,1,28,249,22,159,9,23,195,2, -2,49,86,94,23,193,1,249,22,7,23,196,1,23,198,1,249,80,159,45,8, -31,39,194,249,22,79,197,199,28,249,22,129,4,23,197,2,248,22,178,8,80, -159,39,8,24,38,9,27,250,80,159,40,8,30,39,11,11,23,199,2,250,22, -93,250,22,157,2,23,199,2,23,201,2,9,250,22,157,2,23,199,1,11,9, -27,248,22,178,3,23,201,1,28,249,22,129,4,23,195,2,248,22,178,8,80, -159,44,8,24,38,9,27,250,80,159,45,8,30,39,11,11,23,197,2,250,22, -93,250,22,157,2,23,199,2,23,206,2,9,250,22,157,2,23,199,1,11,9, -27,248,22,178,3,23,199,1,28,249,22,129,4,23,195,2,248,22,178,8,80, -159,49,8,24,38,9,27,250,80,159,50,8,30,39,11,11,23,197,2,250,22, -93,250,22,157,2,23,199,2,23,211,2,9,250,22,157,2,23,199,1,11,9, -249,80,159,52,8,39,39,23,210,1,248,22,178,3,23,200,1,32,129,2,88, -163,36,43,8,31,11,65,99,108,111,111,112,222,33,138,2,32,130,2,88,163, -8,36,37,47,11,2,50,222,33,133,2,32,131,2,88,163,36,37,43,11,69, -116,111,45,115,116,114,105,110,103,222,33,132,2,28,248,22,150,15,23,194,2, -248,22,154,15,23,194,1,192,28,248,22,87,248,22,81,23,195,2,248,22,89, -248,2,131,2,248,22,132,18,23,196,1,250,22,90,248,2,131,2,248,22,132, -18,23,198,2,2,62,248,2,130,2,248,22,133,18,23,198,1,250,22,128,8, -6,7,7,10,32,126,97,32,126,97,6,1,1,32,23,196,1,249,22,128,8, -6,6,6,10,32,32,32,126,97,248,22,131,2,23,196,1,32,136,2,88,163, -36,38,48,11,66,102,105,108,116,101,114,222,33,137,2,28,248,22,87,23,195, -2,9,28,248,23,194,2,248,22,80,23,196,2,249,22,79,248,22,132,18,23, -197,2,249,2,136,2,23,197,1,248,22,133,18,23,199,1,249,2,136,2,23, -195,1,248,22,133,18,23,197,1,28,248,22,87,23,199,2,86,94,23,198,1, -28,23,199,2,86,97,23,196,1,23,195,1,23,194,1,23,193,1,28,23,197, -2,249,22,168,15,23,201,1,23,199,1,198,27,28,248,22,87,23,197,2,2, -61,249,22,1,22,167,7,248,2,130,2,23,199,2,248,23,198,1,251,22,128, -8,6,70,70,99,111,108,108,101,99,116,105,111,110,32,110,111,116,32,102,111, -117,110,100,10,32,32,99,111,108,108,101,99,116,105,111,110,58,32,126,115,10, -32,32,105,110,32,99,111,108,108,101,99,116,105,111,110,32,100,105,114,101,99, -116,111,114,105,101,115,58,126,97,126,97,28,248,22,87,23,202,1,248,2,131, -2,23,201,1,250,22,167,7,248,2,131,2,23,204,1,2,62,23,201,2,249, -22,1,22,167,7,249,22,2,32,0,88,163,8,36,37,45,11,9,222,33,134, -2,27,248,22,92,23,205,2,27,248,22,92,247,22,130,16,28,249,22,190,3, -249,22,181,3,23,198,2,23,197,2,41,23,205,2,249,22,93,247,22,130,16, -248,22,89,249,22,128,8,6,50,50,46,46,46,32,91,126,97,32,97,100,100, -105,116,105,111,110,97,108,32,108,105,110,107,101,100,32,97,110,100,32,112,97, -99,107,97,103,101,32,100,105,114,101,99,116,111,114,105,101,115,93,249,22,181, -3,23,201,1,23,200,1,28,249,22,5,22,130,2,23,201,2,250,22,128,8, -6,49,49,10,32,32,32,115,117,98,45,99,111,108,108,101,99,116,105,111,110, -58,32,126,115,10,32,32,105,110,32,112,97,114,101,110,116,32,100,105,114,101, -99,116,111,114,105,101,115,58,126,97,23,201,1,249,22,1,22,167,7,249,22, -2,32,0,88,163,8,36,37,45,11,9,222,33,135,2,249,2,136,2,22,130, -2,23,208,1,86,95,23,199,1,23,198,1,2,61,27,248,22,80,23,200,2, -27,28,248,22,150,15,23,195,2,249,22,168,15,23,196,1,23,198,2,248,22, -131,2,23,195,1,28,28,248,22,150,15,248,22,80,23,202,2,248,22,163,15, -23,194,2,10,27,250,22,1,22,168,15,23,197,1,23,201,2,28,28,248,22, -87,23,199,2,10,248,22,163,15,23,194,2,28,23,200,2,28,28,248,22,162, -15,249,22,168,15,23,196,2,23,203,2,10,27,28,248,22,150,15,23,202,2, -248,22,154,15,23,202,2,23,201,2,19,248,22,147,7,23,195,2,27,28,249, -22,129,4,23,196,4,40,28,249,22,150,7,6,4,4,46,114,107,116,249,22, -166,7,23,199,2,249,22,181,3,23,200,4,40,249,22,167,7,250,22,166,7, -23,200,1,36,249,22,181,3,23,201,4,40,6,3,3,46,115,115,86,94,23, -195,1,11,11,28,23,193,2,248,22,162,15,249,22,168,15,23,199,2,23,196, -1,11,2,86,99,23,202,1,23,201,1,23,199,1,23,198,1,23,197,1,23, -196,1,28,23,200,2,249,22,168,15,23,195,1,23,202,1,192,254,2,129,2, -202,203,204,205,206,248,22,81,23,16,28,23,16,23,16,199,28,23,200,2,249, -22,168,15,23,195,1,23,202,1,192,254,2,129,2,202,203,204,205,206,248,22, -81,23,16,23,16,254,2,129,2,201,202,203,204,205,248,22,81,23,15,23,15, -90,159,38,11,89,161,38,36,11,249,80,159,40,8,31,39,23,199,1,23,200, -1,27,248,22,67,28,248,22,150,15,195,248,22,154,15,195,194,27,247,22,134, -16,27,250,22,93,28,23,197,2,28,247,22,133,16,249,22,93,27,250,80,159, -50,8,30,39,10,11,36,249,22,93,250,22,157,2,23,198,2,23,206,2,9, -250,22,157,2,23,198,1,11,9,27,250,80,159,50,8,30,39,11,10,36,249, -22,93,250,22,157,2,23,198,2,23,206,2,9,250,22,157,2,23,198,1,11, -9,9,9,28,23,197,1,28,249,22,129,4,36,248,22,178,8,80,159,47,8, -24,38,86,94,23,198,1,9,27,250,80,159,48,8,30,39,11,11,36,250,22, -93,250,22,157,2,23,199,2,23,205,2,9,250,22,157,2,23,199,1,11,9, -28,249,22,129,4,37,248,22,178,8,80,159,51,8,24,38,9,27,250,80,159, -52,8,30,39,11,11,37,250,22,93,250,22,157,2,23,199,2,23,209,2,9, -250,22,157,2,23,199,1,11,9,28,249,22,129,4,38,248,22,178,8,80,159, -55,8,24,38,9,27,250,80,159,56,8,30,39,11,11,38,250,22,93,250,22, -157,2,23,199,2,23,213,2,9,250,22,157,2,23,199,1,11,9,249,80,159, -58,8,39,39,23,212,1,39,9,247,22,130,16,254,2,129,2,199,202,203,205, -23,16,199,11,86,95,28,28,248,22,151,15,23,194,2,10,28,248,22,150,15, -23,194,2,10,28,248,22,144,7,23,194,2,28,248,22,173,15,23,194,2,10, -248,22,174,15,23,194,2,11,12,252,22,168,11,23,200,2,2,42,36,23,198, -2,23,199,2,28,28,248,22,144,7,23,195,2,10,248,22,133,8,23,195,2, -86,94,23,194,1,12,252,22,168,11,23,200,2,2,63,37,23,198,2,23,199, -1,90,159,39,11,89,161,39,36,11,248,22,171,15,23,197,2,86,94,23,195, -1,86,94,28,23,193,2,86,95,23,198,1,23,196,1,12,250,22,171,11,23, -201,1,2,64,23,199,1,249,22,7,23,195,1,23,196,1,32,141,2,88,163, -36,42,8,24,11,2,50,222,33,142,2,28,248,22,130,4,23,199,2,86,95, -23,198,1,23,194,1,19,248,22,138,8,23,195,2,19,248,22,138,8,23,196, -2,249,22,160,15,251,22,145,8,250,22,144,8,23,204,2,36,23,203,4,2, -51,249,23,205,1,23,203,1,23,201,4,28,248,22,144,7,23,206,2,249,22, +202,2,28,248,22,139,7,23,194,2,9,249,22,79,23,195,1,27,249,22,154, +6,8,128,128,23,205,2,28,248,22,139,7,23,194,2,9,249,22,79,23,195, +1,248,2,111,23,206,1,27,249,22,154,6,8,128,128,23,196,2,28,248,22, +133,8,23,194,2,28,249,22,129,4,248,22,138,8,23,196,2,8,128,128,249, +22,1,22,145,8,249,22,79,23,197,1,27,249,22,154,6,8,128,128,23,201, +2,28,248,22,139,7,23,194,2,9,249,22,79,23,195,1,27,249,22,154,6, +8,128,128,23,204,2,28,248,22,139,7,23,194,2,9,249,22,79,23,195,1, +27,249,22,154,6,8,128,128,23,207,2,28,248,22,139,7,23,194,2,9,249, +22,79,23,195,1,27,249,22,154,6,8,128,128,23,210,2,28,248,22,139,7, +23,194,2,9,249,22,79,23,195,1,248,2,111,23,211,1,192,192,248,22,191, +5,23,194,1,20,13,159,80,159,37,8,31,37,32,0,88,163,36,37,44,11, +9,222,33,110,27,248,22,182,5,23,195,1,250,22,46,22,37,88,163,36,36, +8,24,11,9,223,3,33,113,20,20,94,88,163,36,36,43,11,9,223,3,33, +114,23,196,1,248,22,14,20,20,94,88,163,36,36,47,16,2,36,8,240,0, +128,0,0,9,224,1,2,33,115,23,195,1,86,94,28,248,22,135,12,23,199, +2,27,247,22,191,11,28,249,22,183,11,23,195,2,2,62,251,22,187,11,23, +197,1,2,62,250,22,128,8,2,63,28,23,202,1,86,95,23,204,1,23,203, +1,80,159,48,48,38,28,23,203,1,86,94,23,204,1,80,159,48,51,38,249, +22,179,8,80,159,50,8,26,38,23,206,1,248,22,131,12,23,207,2,247,22, +29,12,12,28,248,22,135,12,23,199,2,86,94,23,198,1,248,23,194,1,247, +22,137,2,197,86,95,28,248,22,135,12,23,200,2,27,247,22,191,11,28,249, +22,183,11,23,195,2,2,62,251,22,187,11,23,197,1,2,62,250,22,128,8, +2,63,28,23,203,2,80,159,49,48,38,28,23,204,2,80,159,49,51,38,249, +22,179,8,80,159,51,8,26,38,23,207,2,248,22,131,12,23,208,2,247,22, +29,12,12,28,23,193,2,28,23,195,1,86,95,23,197,1,23,196,1,86,94, +20,18,159,11,80,158,41,49,247,22,137,2,20,18,159,11,80,158,41,50,23, +193,1,28,23,196,1,86,94,23,197,1,86,94,20,18,159,11,80,158,41,52, +247,22,137,2,20,18,159,11,80,158,41,53,23,193,1,86,94,250,22,180,8, +80,159,44,8,28,38,23,200,2,247,22,137,2,250,22,180,8,80,159,44,8, +29,38,23,200,1,23,196,1,86,94,23,195,1,12,28,248,22,135,12,23,200, +2,86,94,23,199,1,248,23,195,1,247,22,137,2,198,20,20,94,248,22,139, +6,23,194,2,28,248,22,139,7,248,22,139,6,23,195,1,12,248,22,164,11, +6,30,30,101,120,112,101,99,116,101,100,32,97,32,115,105,110,103,108,101,32, +83,45,101,120,112,114,101,115,115,105,111,110,248,22,191,5,23,194,1,28,248, +22,88,23,194,2,28,28,249,22,189,3,38,248,22,92,23,196,2,10,249,22, +189,3,39,248,22,92,23,196,2,28,28,248,22,144,7,248,22,80,23,195,2, +10,249,22,159,9,64,114,111,111,116,248,22,132,18,23,196,2,28,27,248,22, +101,194,28,248,22,150,15,23,194,2,10,28,248,22,144,7,23,194,2,28,248, +22,173,15,23,194,2,10,248,22,174,15,23,194,1,11,27,248,22,87,248,22, +103,195,28,192,192,248,22,154,16,248,22,110,195,11,11,11,11,250,22,155,2, +23,197,1,23,198,1,249,22,79,23,198,1,23,201,1,28,28,248,22,87,248, +22,103,23,197,2,10,249,22,145,16,248,22,110,23,198,2,247,22,162,8,27, +248,22,178,15,249,22,176,15,248,22,101,23,200,2,23,198,1,28,248,22,64, +248,22,80,23,198,2,86,94,23,196,1,86,94,28,250,22,157,2,23,197,2, +11,11,12,250,22,155,2,23,197,2,11,9,249,22,161,2,23,196,2,20,20, +95,88,163,8,36,38,50,11,9,224,3,2,33,122,23,195,1,23,196,1,27, +248,22,67,248,22,132,18,23,199,1,250,22,155,2,23,198,2,23,196,2,249, +22,79,248,22,128,2,23,200,1,250,22,157,2,23,203,1,23,201,1,9,12, +250,22,155,2,23,196,1,23,197,1,248,22,94,23,199,1,20,13,159,80,159, +39,8,31,37,88,163,36,37,57,8,240,0,144,0,4,9,227,3,2,1,0, +4,33,117,27,28,23,194,2,80,159,40,48,38,28,23,195,2,80,159,40,51, +38,249,22,179,8,80,159,42,8,26,38,23,198,2,27,248,80,159,42,8,30, +39,23,195,2,28,249,22,161,9,23,195,2,28,23,197,2,80,158,43,50,28, +23,198,2,80,158,43,53,249,22,179,8,80,159,45,8,29,38,23,201,2,86, +96,23,199,1,23,194,1,23,193,1,28,23,195,1,80,158,41,49,28,23,196, +1,80,158,41,52,249,22,179,8,80,159,43,8,28,38,23,199,1,20,13,159, +80,159,41,8,31,37,20,20,94,88,163,36,37,58,16,2,8,240,0,240,0, +0,8,131,208,9,228,5,4,3,2,6,0,33,118,23,199,1,20,13,159,80, +159,41,55,37,26,29,80,159,8,34,56,37,249,22,33,11,80,159,8,36,55, +37,22,184,14,10,22,185,14,10,22,186,14,10,22,189,14,10,22,188,14,10, +22,190,14,10,22,187,14,10,22,191,14,10,22,128,15,10,22,129,15,10,22, +130,15,10,22,131,15,10,22,132,15,11,22,182,14,11,27,249,22,182,5,23, +197,2,66,98,105,110,97,114,121,27,250,22,46,22,37,88,163,8,36,36,44, +11,9,223,4,33,119,20,20,94,88,163,36,36,43,11,9,223,4,33,120,23, +197,1,86,94,28,28,248,22,88,23,194,2,249,22,4,32,0,88,163,8,36, +37,45,11,9,222,33,121,23,195,2,11,12,248,22,164,11,6,18,18,105,108, +108,45,102,111,114,109,101,100,32,99,111,110,116,101,110,116,27,247,22,137,2, +27,90,159,39,11,89,161,39,36,11,248,22,171,15,23,202,1,192,86,96,249, +22,3,20,20,94,88,163,8,36,37,54,11,9,224,2,3,33,123,23,195,1, +23,197,1,249,22,161,2,195,88,163,8,36,38,48,11,9,223,3,33,124,28, +23,199,1,86,94,20,18,159,11,80,158,45,49,193,20,18,159,11,80,158,45, +50,196,28,23,200,1,86,94,20,18,159,11,80,158,45,52,193,20,18,159,11, +80,158,45,53,196,86,94,250,22,180,8,80,159,48,8,28,38,23,204,2,196, +250,22,180,8,80,159,48,8,29,38,23,204,1,23,200,1,193,248,22,8,20, +20,96,88,163,8,32,37,8,43,16,2,8,240,0,240,0,0,8,240,27,244, +0,0,9,226,1,4,3,2,33,125,23,195,1,23,196,1,23,197,1,0,7, +35,114,120,34,47,43,34,28,248,22,144,7,23,195,2,27,249,22,143,16,2, +127,23,197,2,28,23,193,2,28,249,22,189,3,248,22,100,23,196,2,248,22, +179,3,248,22,147,7,23,199,2,249,22,7,250,22,166,7,23,200,1,36,248, +22,100,23,199,1,23,198,1,249,22,7,250,22,166,7,23,200,2,36,248,22, +100,23,199,2,249,22,79,249,22,166,7,23,201,1,248,22,102,23,200,1,23, +200,1,249,22,7,23,197,1,23,198,1,90,159,39,11,89,161,39,36,11,248, +22,171,15,23,198,1,86,94,23,195,1,28,249,22,159,9,23,195,2,2,51, +86,94,23,193,1,249,22,7,23,196,1,23,200,1,27,249,22,79,23,197,1, +23,201,1,28,248,22,144,7,23,195,2,27,249,22,143,16,2,127,23,197,2, +28,23,193,2,28,249,22,189,3,248,22,100,23,196,2,248,22,179,3,248,22, +147,7,23,199,2,249,22,7,250,22,166,7,23,200,1,36,248,22,100,23,199, +1,23,196,1,249,22,7,250,22,166,7,23,200,2,36,248,22,100,23,199,2, +249,22,79,249,22,166,7,23,201,1,248,22,102,23,200,1,23,198,1,249,22, +7,23,197,1,23,196,1,90,159,39,11,89,161,39,36,11,248,22,171,15,23, +198,1,86,94,23,195,1,28,249,22,159,9,23,195,2,2,51,86,94,23,193, +1,249,22,7,23,196,1,23,198,1,249,80,159,45,8,33,39,194,249,22,79, +197,199,28,249,22,129,4,23,197,2,248,22,178,8,80,159,39,8,26,38,9, +27,250,80,159,40,8,32,39,11,11,23,199,2,250,22,93,250,22,157,2,23, +199,2,23,201,2,9,250,22,157,2,23,199,1,11,9,27,248,22,178,3,23, +201,1,28,249,22,129,4,23,195,2,248,22,178,8,80,159,44,8,26,38,9, +27,250,80,159,45,8,32,39,11,11,23,197,2,250,22,93,250,22,157,2,23, +199,2,23,206,2,9,250,22,157,2,23,199,1,11,9,27,248,22,178,3,23, +199,1,28,249,22,129,4,23,195,2,248,22,178,8,80,159,49,8,26,38,9, +27,250,80,159,50,8,32,39,11,11,23,197,2,250,22,93,250,22,157,2,23, +199,2,23,211,2,9,250,22,157,2,23,199,1,11,9,249,80,159,52,8,42, +39,23,210,1,248,22,178,3,23,200,1,32,130,2,88,163,36,43,8,31,11, +65,99,108,111,111,112,222,33,139,2,32,131,2,88,163,8,36,37,47,11,2, +52,222,33,134,2,32,132,2,88,163,36,37,43,11,69,116,111,45,115,116,114, +105,110,103,222,33,133,2,28,248,22,150,15,23,194,2,248,22,154,15,23,194, +1,192,28,248,22,87,248,22,81,23,195,2,248,22,89,248,2,132,2,248,22, +132,18,23,196,1,250,22,90,248,2,132,2,248,22,132,18,23,198,2,2,65, +248,2,131,2,248,22,133,18,23,198,1,250,22,128,8,6,7,7,10,32,126, +97,32,126,97,6,1,1,32,23,196,1,249,22,128,8,6,6,6,10,32,32, +32,126,97,248,22,131,2,23,196,1,32,137,2,88,163,36,38,48,11,66,102, +105,108,116,101,114,222,33,138,2,28,248,22,87,23,195,2,9,28,248,23,194, +2,248,22,80,23,196,2,249,22,79,248,22,132,18,23,197,2,249,2,137,2, +23,197,1,248,22,133,18,23,199,1,249,2,137,2,23,195,1,248,22,133,18, +23,197,1,28,248,22,87,23,199,2,86,94,23,198,1,28,23,199,2,86,97, +23,196,1,23,195,1,23,194,1,23,193,1,28,23,197,2,249,22,168,15,23, +201,1,23,199,1,198,27,28,248,22,87,23,197,2,2,64,249,22,1,22,167, +7,248,2,131,2,23,199,2,248,23,198,1,251,22,128,8,6,70,70,99,111, +108,108,101,99,116,105,111,110,32,110,111,116,32,102,111,117,110,100,10,32,32, +99,111,108,108,101,99,116,105,111,110,58,32,126,115,10,32,32,105,110,32,99, +111,108,108,101,99,116,105,111,110,32,100,105,114,101,99,116,111,114,105,101,115, +58,126,97,126,97,28,248,22,87,23,202,1,248,2,132,2,23,201,1,250,22, +167,7,248,2,132,2,23,204,1,2,65,23,201,2,249,22,1,22,167,7,249, +22,2,32,0,88,163,8,36,37,45,11,9,222,33,135,2,27,248,22,92,23, +205,2,27,248,22,92,247,22,130,16,28,249,22,190,3,249,22,181,3,23,198, +2,23,197,2,41,23,205,2,249,22,93,247,22,130,16,248,22,89,249,22,128, +8,6,50,50,46,46,46,32,91,126,97,32,97,100,100,105,116,105,111,110,97, +108,32,108,105,110,107,101,100,32,97,110,100,32,112,97,99,107,97,103,101,32, +100,105,114,101,99,116,111,114,105,101,115,93,249,22,181,3,23,201,1,23,200, +1,28,249,22,5,22,130,2,23,201,2,250,22,128,8,6,49,49,10,32,32, +32,115,117,98,45,99,111,108,108,101,99,116,105,111,110,58,32,126,115,10,32, +32,105,110,32,112,97,114,101,110,116,32,100,105,114,101,99,116,111,114,105,101, +115,58,126,97,23,201,1,249,22,1,22,167,7,249,22,2,32,0,88,163,8, +36,37,45,11,9,222,33,136,2,249,2,137,2,22,130,2,23,208,1,86,95, +23,199,1,23,198,1,2,64,27,248,22,80,23,200,2,27,28,248,22,150,15, +23,195,2,249,22,168,15,23,196,1,23,198,2,248,22,131,2,23,195,1,28, +28,248,22,150,15,248,22,80,23,202,2,248,22,163,15,23,194,2,10,27,250, +22,1,22,168,15,23,197,1,23,201,2,28,28,248,22,87,23,199,2,10,248, +22,163,15,23,194,2,28,23,200,2,28,28,248,22,162,15,249,22,168,15,23, +196,2,23,203,2,10,27,28,248,22,150,15,23,202,2,248,22,154,15,23,202, +2,23,201,2,19,248,22,147,7,23,195,2,27,28,249,22,129,4,23,196,4, +40,28,249,22,150,7,6,4,4,46,114,107,116,249,22,166,7,23,199,2,249, +22,181,3,23,200,4,40,249,22,167,7,250,22,166,7,23,200,1,36,249,22, +181,3,23,201,4,40,6,3,3,46,115,115,86,94,23,195,1,11,11,28,23, +193,2,248,22,162,15,249,22,168,15,23,199,2,23,196,1,11,2,86,99,23, +202,1,23,201,1,23,199,1,23,198,1,23,197,1,23,196,1,28,23,200,2, +249,22,168,15,23,195,1,23,202,1,192,254,2,130,2,202,203,204,205,206,248, +22,81,23,16,28,23,16,23,16,199,28,23,200,2,249,22,168,15,23,195,1, +23,202,1,192,254,2,130,2,202,203,204,205,206,248,22,81,23,16,23,16,254, +2,130,2,201,202,203,204,205,248,22,81,23,15,23,15,90,159,38,11,89,161, +38,36,11,249,80,159,40,8,33,39,23,199,1,23,200,1,27,248,22,67,28, +248,22,150,15,195,248,22,154,15,195,194,27,247,22,134,16,27,250,22,93,28, +23,197,2,28,247,22,133,16,249,22,93,27,250,80,159,50,8,32,39,10,11, +36,249,22,93,250,22,157,2,23,198,2,23,206,2,9,250,22,157,2,23,198, +1,11,9,27,250,80,159,50,8,32,39,11,10,36,249,22,93,250,22,157,2, +23,198,2,23,206,2,9,250,22,157,2,23,198,1,11,9,9,9,28,23,197, +1,28,249,22,129,4,36,248,22,178,8,80,159,47,8,26,38,86,94,23,198, +1,9,27,250,80,159,48,8,32,39,11,11,36,250,22,93,250,22,157,2,23, +199,2,23,205,2,9,250,22,157,2,23,199,1,11,9,28,249,22,129,4,37, +248,22,178,8,80,159,51,8,26,38,9,27,250,80,159,52,8,32,39,11,11, +37,250,22,93,250,22,157,2,23,199,2,23,209,2,9,250,22,157,2,23,199, +1,11,9,28,249,22,129,4,38,248,22,178,8,80,159,55,8,26,38,9,27, +250,80,159,56,8,32,39,11,11,38,250,22,93,250,22,157,2,23,199,2,23, +213,2,9,250,22,157,2,23,199,1,11,9,249,80,159,58,8,42,39,23,212, +1,39,9,247,22,130,16,254,2,130,2,199,202,203,205,23,16,199,11,86,95, +28,28,248,22,151,15,23,194,2,10,28,248,22,150,15,23,194,2,10,28,248, +22,144,7,23,194,2,28,248,22,173,15,23,194,2,10,248,22,174,15,23,194, +2,11,12,252,22,168,11,23,200,2,2,44,36,23,198,2,23,199,2,28,28, +248,22,144,7,23,195,2,10,248,22,133,8,23,195,2,86,94,23,194,1,12, +252,22,168,11,23,200,2,2,66,37,23,198,2,23,199,1,90,159,39,11,89, +161,39,36,11,248,22,171,15,23,197,2,86,94,23,195,1,86,94,28,23,193, +2,86,95,23,198,1,23,196,1,12,250,22,171,11,23,201,1,2,67,23,199, +1,249,22,7,23,195,1,23,196,1,32,142,2,88,163,36,42,8,24,11,2, +52,222,33,143,2,28,248,22,130,4,23,199,2,86,95,23,198,1,23,194,1, +19,248,22,138,8,23,195,2,19,248,22,138,8,23,196,2,249,22,160,15,251, +22,145,8,250,22,144,8,23,204,2,36,23,203,4,2,53,249,23,205,1,23, +203,1,23,201,4,28,248,22,144,7,23,206,2,249,22,159,8,23,207,1,8, +63,23,205,1,28,248,22,151,15,23,201,2,248,22,152,15,23,201,1,86,94, +23,200,1,247,22,153,15,2,2,27,248,22,179,3,23,200,1,28,249,22,159, +9,8,46,249,22,139,8,23,198,2,23,197,2,27,248,22,178,3,23,195,2, +249,22,160,15,251,22,145,8,250,22,144,8,23,204,2,36,23,203,1,23,202, +1,249,23,205,1,23,203,1,23,201,1,28,248,22,144,7,23,206,2,249,22, 159,8,23,207,1,8,63,23,205,1,28,248,22,151,15,23,201,2,248,22,152, -15,23,201,1,86,94,23,200,1,247,22,153,15,2,2,27,248,22,179,3,23, -200,1,28,249,22,159,9,8,46,249,22,139,8,23,198,2,23,197,2,27,248, -22,178,3,23,195,2,249,22,160,15,251,22,145,8,250,22,144,8,23,204,2, -36,23,203,1,23,202,1,249,23,205,1,23,203,1,23,201,1,28,248,22,144, -7,23,206,2,249,22,159,8,23,207,1,8,63,23,205,1,28,248,22,151,15, -23,201,2,248,22,152,15,23,201,1,86,94,23,200,1,247,22,153,15,28,248, -22,130,4,23,194,2,86,95,23,195,1,23,193,1,19,248,22,138,8,23,196, -2,19,248,22,138,8,23,197,2,249,22,160,15,251,22,145,8,250,22,144,8, -23,205,2,36,23,203,4,2,51,249,23,206,1,23,204,1,23,201,4,28,248, +15,23,201,1,86,94,23,200,1,247,22,153,15,28,248,22,130,4,23,194,2, +86,95,23,195,1,23,193,1,19,248,22,138,8,23,196,2,19,248,22,138,8, +23,197,2,249,22,160,15,251,22,145,8,250,22,144,8,23,205,2,36,23,203, +4,2,53,249,23,206,1,23,204,1,23,201,4,28,248,22,144,7,23,207,2, +249,22,159,8,23,208,1,8,63,23,206,1,28,248,22,151,15,23,202,2,248, +22,152,15,23,202,1,86,94,23,201,1,247,22,153,15,2,2,27,248,22,179, +3,23,195,1,28,249,22,159,9,8,46,249,22,139,8,23,199,2,23,197,2, +27,248,22,178,3,23,195,2,249,22,160,15,251,22,145,8,250,22,144,8,23, +205,2,36,23,203,1,23,203,1,249,23,206,1,23,204,1,23,201,1,28,248, 22,144,7,23,207,2,249,22,159,8,23,208,1,8,63,23,206,1,28,248,22, 151,15,23,202,2,248,22,152,15,23,202,1,86,94,23,201,1,247,22,153,15, -2,2,27,248,22,179,3,23,195,1,28,249,22,159,9,8,46,249,22,139,8, -23,199,2,23,197,2,27,248,22,178,3,23,195,2,249,22,160,15,251,22,145, -8,250,22,144,8,23,205,2,36,23,203,1,23,203,1,249,23,206,1,23,204, -1,23,201,1,28,248,22,144,7,23,207,2,249,22,159,8,23,208,1,8,63, -23,206,1,28,248,22,151,15,23,202,2,248,22,152,15,23,202,1,86,94,23, -201,1,247,22,153,15,28,248,22,130,4,23,194,2,86,95,23,196,1,23,193, -1,19,248,22,138,8,23,197,2,19,248,22,138,8,23,198,2,249,22,160,15, -251,22,145,8,250,22,144,8,23,206,2,36,23,203,4,2,51,249,23,207,1, -23,205,1,23,201,4,28,248,22,144,7,23,208,2,249,22,159,8,23,209,1, +28,248,22,130,4,23,194,2,86,95,23,196,1,23,193,1,19,248,22,138,8, +23,197,2,19,248,22,138,8,23,198,2,249,22,160,15,251,22,145,8,250,22, +144,8,23,206,2,36,23,203,4,2,53,249,23,207,1,23,205,1,23,201,4, +28,248,22,144,7,23,208,2,249,22,159,8,23,209,1,8,63,23,207,1,28, +248,22,151,15,23,203,2,248,22,152,15,23,203,1,86,94,23,202,1,247,22, +153,15,2,2,27,248,22,179,3,23,195,1,28,249,22,159,9,8,46,249,22, +139,8,23,200,2,23,197,2,27,248,22,178,3,23,195,2,249,22,160,15,251, +22,145,8,250,22,144,8,23,206,2,36,23,203,1,23,204,1,249,23,207,1, +23,205,1,23,201,1,28,248,22,144,7,23,208,2,249,22,159,8,23,209,1, 8,63,23,207,1,28,248,22,151,15,23,203,2,248,22,152,15,23,203,1,86, -94,23,202,1,247,22,153,15,2,2,27,248,22,179,3,23,195,1,28,249,22, -159,9,8,46,249,22,139,8,23,200,2,23,197,2,27,248,22,178,3,23,195, -2,249,22,160,15,251,22,145,8,250,22,144,8,23,206,2,36,23,203,1,23, -204,1,249,23,207,1,23,205,1,23,201,1,28,248,22,144,7,23,208,2,249, -22,159,8,23,209,1,8,63,23,207,1,28,248,22,151,15,23,203,2,248,22, -152,15,23,203,1,86,94,23,202,1,247,22,153,15,253,2,141,2,201,202,203, -204,205,198,90,159,38,11,89,161,38,36,11,86,95,28,28,248,22,151,15,23, -199,2,10,28,248,22,150,15,23,199,2,10,28,248,22,144,7,23,199,2,28, -248,22,173,15,23,199,2,10,248,22,174,15,23,199,2,11,12,252,22,168,11, -23,200,2,2,42,36,23,203,2,23,204,2,28,28,248,22,144,7,23,200,2, -10,248,22,133,8,23,200,2,12,252,22,168,11,23,200,2,2,63,37,23,203, -2,23,204,2,90,159,39,11,89,161,39,36,11,248,22,171,15,23,202,2,86, -94,23,195,1,86,94,28,192,12,250,22,171,11,23,201,1,2,64,23,204,2, -249,22,7,194,195,27,248,22,156,15,23,196,1,27,19,248,22,138,8,23,196, -2,28,248,22,130,4,23,194,4,86,94,23,199,1,19,248,22,138,8,23,197, -2,19,248,22,138,8,23,198,2,249,22,160,15,251,22,145,8,250,22,144,8, -23,206,2,36,23,203,4,2,51,249,23,210,1,23,205,1,23,201,4,28,248, +94,23,202,1,247,22,153,15,253,2,142,2,201,202,203,204,205,198,90,159,38, +11,89,161,38,36,11,86,95,28,28,248,22,151,15,23,199,2,10,28,248,22, +150,15,23,199,2,10,28,248,22,144,7,23,199,2,28,248,22,173,15,23,199, +2,10,248,22,174,15,23,199,2,11,12,252,22,168,11,23,200,2,2,44,36, +23,203,2,23,204,2,28,28,248,22,144,7,23,200,2,10,248,22,133,8,23, +200,2,12,252,22,168,11,23,200,2,2,66,37,23,203,2,23,204,2,90,159, +39,11,89,161,39,36,11,248,22,171,15,23,202,2,86,94,23,195,1,86,94, +28,192,12,250,22,171,11,23,201,1,2,67,23,204,2,249,22,7,194,195,27, +248,22,156,15,23,196,1,27,19,248,22,138,8,23,196,2,28,248,22,130,4, +23,194,4,86,94,23,199,1,19,248,22,138,8,23,197,2,19,248,22,138,8, +23,198,2,249,22,160,15,251,22,145,8,250,22,144,8,23,206,2,36,23,203, +4,2,53,249,23,210,1,23,205,1,23,201,4,28,248,22,144,7,23,211,2, +249,22,159,8,23,212,1,8,63,23,210,1,28,248,22,151,15,23,206,2,248, +22,152,15,23,206,1,86,94,23,205,1,247,22,153,15,2,2,27,248,22,179, +3,23,195,4,28,249,22,159,9,8,46,249,22,139,8,23,200,2,23,197,2, +27,248,22,178,3,23,195,2,249,22,160,15,251,22,145,8,250,22,144,8,23, +206,2,36,23,203,1,23,207,1,249,23,210,1,23,205,1,23,201,1,28,248, 22,144,7,23,211,2,249,22,159,8,23,212,1,8,63,23,210,1,28,248,22, 151,15,23,206,2,248,22,152,15,23,206,1,86,94,23,205,1,247,22,153,15, -2,2,27,248,22,179,3,23,195,4,28,249,22,159,9,8,46,249,22,139,8, -23,200,2,23,197,2,27,248,22,178,3,23,195,2,249,22,160,15,251,22,145, -8,250,22,144,8,23,206,2,36,23,203,1,23,207,1,249,23,210,1,23,205, -1,23,201,1,28,248,22,144,7,23,211,2,249,22,159,8,23,212,1,8,63, -23,210,1,28,248,22,151,15,23,206,2,248,22,152,15,23,206,1,86,94,23, -205,1,247,22,153,15,28,248,22,130,4,23,194,2,86,95,23,200,1,23,193, -1,19,248,22,138,8,23,198,2,19,248,22,138,8,23,199,2,249,22,160,15, -251,22,145,8,250,22,144,8,23,207,2,36,23,203,4,2,51,249,23,211,1, -23,206,1,23,201,4,28,248,22,144,7,23,212,2,249,22,159,8,23,213,1, +28,248,22,130,4,23,194,2,86,95,23,200,1,23,193,1,19,248,22,138,8, +23,198,2,19,248,22,138,8,23,199,2,249,22,160,15,251,22,145,8,250,22, +144,8,23,207,2,36,23,203,4,2,53,249,23,211,1,23,206,1,23,201,4, +28,248,22,144,7,23,212,2,249,22,159,8,23,213,1,8,63,23,211,1,28, +248,22,151,15,23,207,2,248,22,152,15,23,207,1,86,94,23,206,1,247,22, +153,15,2,2,27,248,22,179,3,23,195,1,28,249,22,159,9,8,46,249,22, +139,8,23,201,2,23,197,2,27,248,22,178,3,23,195,2,249,22,160,15,251, +22,145,8,250,22,144,8,23,207,2,36,23,203,1,23,208,1,249,23,211,1, +23,206,1,23,201,1,28,248,22,144,7,23,212,2,249,22,159,8,23,213,1, 8,63,23,211,1,28,248,22,151,15,23,207,2,248,22,152,15,23,207,1,86, -94,23,206,1,247,22,153,15,2,2,27,248,22,179,3,23,195,1,28,249,22, -159,9,8,46,249,22,139,8,23,201,2,23,197,2,27,248,22,178,3,23,195, -2,249,22,160,15,251,22,145,8,250,22,144,8,23,207,2,36,23,203,1,23, -208,1,249,23,211,1,23,206,1,23,201,1,28,248,22,144,7,23,212,2,249, -22,159,8,23,213,1,8,63,23,211,1,28,248,22,151,15,23,207,2,248,22, -152,15,23,207,1,86,94,23,206,1,247,22,153,15,253,2,141,2,23,203,1, -23,207,1,23,208,1,23,209,1,23,210,1,23,199,1,2,28,248,22,150,15, -23,196,2,249,22,168,15,23,197,1,23,195,1,192,32,144,2,88,163,36,40, -57,11,2,50,222,33,145,2,28,248,22,130,4,23,197,2,86,94,23,196,1, -19,248,22,138,8,23,195,2,35,248,22,138,8,23,196,2,249,22,160,15,251, -22,145,8,250,22,144,8,23,204,1,36,23,203,4,2,51,2,51,28,248,22, -144,7,23,204,2,249,22,159,8,23,205,1,8,63,23,203,1,28,248,22,151, -15,23,199,2,248,22,152,15,23,199,1,86,94,23,198,1,247,22,153,15,2, -27,248,22,179,3,23,198,1,28,249,22,159,9,8,46,249,22,139,8,23,198, -2,23,197,2,35,248,22,178,3,23,195,2,249,22,160,15,251,22,145,8,250, -22,144,8,23,204,1,36,23,203,1,2,51,2,51,28,248,22,144,7,23,204, -2,249,22,159,8,23,205,1,8,63,23,203,1,28,248,22,151,15,23,199,2, -248,22,152,15,23,199,1,86,94,23,198,1,247,22,153,15,28,248,22,130,4, -23,194,2,86,94,23,193,1,19,248,22,138,8,23,196,2,35,248,22,138,8, -23,197,2,249,22,160,15,251,22,145,8,250,22,144,8,23,205,1,36,23,203, -4,2,51,2,51,28,248,22,144,7,23,205,2,249,22,159,8,23,206,1,8, -63,23,204,1,28,248,22,151,15,23,200,2,248,22,152,15,23,200,1,86,94, -23,199,1,247,22,153,15,2,27,248,22,179,3,23,195,1,28,249,22,159,9, -8,46,249,22,139,8,23,199,2,23,197,2,35,248,22,178,3,23,195,2,249, -22,160,15,251,22,145,8,250,22,144,8,23,205,1,36,23,203,1,2,51,2, -51,28,248,22,144,7,23,205,2,249,22,159,8,23,206,1,8,63,23,204,1, -28,248,22,151,15,23,200,2,248,22,152,15,23,200,1,86,94,23,199,1,247, -22,153,15,251,2,144,2,198,199,200,196,90,159,38,11,89,161,38,36,11,86, -95,28,28,248,22,151,15,23,196,2,10,28,248,22,150,15,23,196,2,10,28, -248,22,144,7,23,196,2,28,248,22,173,15,23,196,2,10,248,22,174,15,23, -196,2,11,12,252,22,168,11,2,36,2,42,36,23,200,2,23,201,2,28,28, -248,22,144,7,23,197,2,10,248,22,133,8,23,197,2,12,252,22,168,11,2, -36,2,63,37,23,200,2,23,201,2,90,159,39,11,89,161,39,36,11,248,22, -171,15,23,199,2,86,94,23,195,1,86,94,28,192,12,250,22,171,11,2,36, -2,64,23,201,2,249,22,7,194,195,27,248,22,156,15,23,196,1,27,251,2, -144,2,23,198,2,23,201,1,23,202,1,248,22,138,8,23,199,1,28,248,22, -150,15,23,196,2,249,22,168,15,23,197,1,23,195,1,192,2,51,252,80,158, -41,8,33,2,36,2,51,32,0,88,163,8,36,38,43,11,9,222,33,147,2, -198,199,32,149,2,88,163,36,40,57,11,2,50,222,33,150,2,28,248,22,130, -4,23,197,2,86,94,23,196,1,19,248,22,138,8,23,195,2,19,248,22,138, -8,23,196,2,249,22,160,15,251,22,145,8,250,22,144,8,23,204,2,36,23, -203,4,2,51,249,22,144,8,23,203,1,23,201,4,28,248,22,144,7,23,204, -2,249,22,159,8,23,205,1,8,63,23,203,1,28,248,22,151,15,23,199,2, -248,22,152,15,23,199,1,86,94,23,198,1,247,22,153,15,2,2,27,248,22, -179,3,23,198,1,28,249,22,159,9,8,46,249,22,139,8,23,198,2,23,197, -2,27,248,22,178,3,23,195,2,249,22,160,15,251,22,145,8,250,22,144,8, -23,204,2,36,23,203,1,2,65,249,22,144,8,23,203,1,23,201,1,28,248, -22,144,7,23,204,2,249,22,159,8,23,205,1,8,63,23,203,1,28,248,22, -151,15,23,199,2,248,22,152,15,23,199,1,86,94,23,198,1,247,22,153,15, -28,248,22,130,4,23,194,2,86,94,23,193,1,19,248,22,138,8,23,196,2, -19,248,22,138,8,23,197,2,249,22,160,15,251,22,145,8,250,22,144,8,23, -205,2,36,23,203,4,2,51,249,22,144,8,23,204,1,23,201,4,28,248,22, -144,7,23,205,2,249,22,159,8,23,206,1,8,63,23,204,1,28,248,22,151, -15,23,200,2,248,22,152,15,23,200,1,86,94,23,199,1,247,22,153,15,2, -2,27,248,22,179,3,23,195,1,28,249,22,159,9,8,46,249,22,139,8,23, -199,2,23,197,2,27,248,22,178,3,23,195,2,249,22,160,15,251,22,145,8, -250,22,144,8,23,205,2,36,23,203,1,2,65,249,22,144,8,23,204,1,23, -201,1,28,248,22,144,7,23,205,2,249,22,159,8,23,206,1,8,63,23,204, -1,28,248,22,151,15,23,200,2,248,22,152,15,23,200,1,86,94,23,199,1, -247,22,153,15,251,2,149,2,198,199,200,196,90,159,38,11,89,161,38,36,11, -86,95,28,28,248,22,151,15,23,196,2,10,28,248,22,150,15,23,196,2,10, -28,248,22,144,7,23,196,2,28,248,22,173,15,23,196,2,10,248,22,174,15, -23,196,2,11,12,252,22,168,11,2,36,2,42,36,23,200,2,23,201,2,28, -28,248,22,144,7,23,197,2,10,248,22,133,8,23,197,2,12,252,22,168,11, -2,36,2,63,37,23,200,2,23,201,2,90,159,39,11,89,161,39,36,11,248, -22,171,15,23,199,2,86,94,23,195,1,86,94,28,192,12,250,22,171,11,2, -36,2,64,23,201,2,249,22,7,194,195,27,248,22,156,15,23,196,1,27,251, -2,149,2,23,198,2,23,201,1,23,202,1,248,22,138,8,23,199,1,28,248, -22,150,15,23,196,2,249,22,168,15,23,197,1,23,195,1,192,252,80,158,41, -8,33,2,36,2,65,22,144,8,198,199,249,247,22,171,5,23,195,1,11,249, -247,22,171,5,194,11,28,248,22,87,23,195,2,9,27,248,22,80,23,196,2, -27,28,248,22,175,15,23,195,2,23,194,1,28,248,22,174,15,23,195,2,249, -22,176,15,23,196,1,250,80,159,43,40,39,248,22,191,15,2,58,11,10,250, -80,159,41,40,39,248,22,191,15,2,58,23,197,1,10,28,23,193,2,249,22, -79,248,22,178,15,249,22,176,15,23,198,1,247,22,128,16,248,80,159,41,8, -40,39,248,22,81,23,200,1,86,94,23,193,1,248,80,159,39,8,40,39,248, -22,81,23,198,1,28,248,22,87,23,195,2,9,27,248,22,80,23,196,2,27, -28,248,22,175,15,23,195,2,23,194,1,28,248,22,174,15,23,195,2,249,22, -176,15,23,196,1,250,80,159,43,40,39,248,22,191,15,2,58,11,10,250,80, -159,41,40,39,248,22,191,15,2,58,23,197,1,10,28,23,193,2,249,22,79, -248,22,178,15,249,22,176,15,23,198,1,247,22,128,16,248,80,159,41,8,41, -39,248,22,81,23,200,1,86,94,23,193,1,248,80,159,39,8,41,39,248,22, -81,23,198,1,28,248,22,87,23,195,2,9,27,248,22,80,23,196,2,27,28, -248,22,175,15,23,195,2,23,194,1,28,248,22,174,15,23,195,2,249,22,176, -15,23,196,1,250,80,159,43,40,39,248,22,191,15,2,58,11,10,250,80,159, -41,40,39,248,22,191,15,2,58,23,197,1,10,28,23,193,2,249,22,79,248, -22,178,15,249,22,176,15,23,198,1,247,22,128,16,248,80,159,41,8,42,39, -248,22,81,23,200,1,86,94,23,193,1,248,80,159,39,8,42,39,248,22,81, -23,198,1,32,158,2,88,163,8,36,38,48,11,2,50,222,33,159,2,28,248, -22,87,23,195,2,9,28,248,22,80,23,195,2,249,22,79,27,248,22,132,18, -23,198,2,28,248,22,144,7,23,194,2,248,22,158,15,23,194,1,28,248,22, -133,8,23,194,2,248,22,159,15,23,194,1,192,249,2,158,2,23,197,1,248, -22,133,18,23,199,1,249,22,93,23,195,2,249,2,158,2,23,197,1,248,22, -133,18,23,199,1,27,247,22,133,16,249,80,159,39,41,38,28,23,195,2,27, -249,22,166,8,247,22,165,8,2,66,28,192,249,22,156,8,194,7,63,2,61, -2,61,27,248,80,159,41,57,39,247,80,159,41,54,39,27,27,28,23,198,1, -250,22,168,15,248,22,191,15,2,54,247,22,162,8,2,67,11,27,248,80,159, -44,8,40,39,250,22,93,9,248,22,89,248,22,191,15,2,68,9,28,193,249, -22,79,195,194,192,27,250,22,157,2,23,198,1,2,69,11,28,23,193,2,249, -2,158,2,23,196,1,23,195,1,193,32,161,2,88,163,8,36,38,48,11,2, -50,222,33,162,2,28,248,22,87,23,195,2,9,28,248,22,80,23,195,2,249, -22,79,27,248,22,132,18,23,198,2,28,248,22,144,7,23,194,2,248,22,158, -15,23,194,1,28,248,22,133,8,23,194,2,248,22,159,15,23,194,1,192,249, -2,161,2,23,197,1,248,22,133,18,23,199,1,249,22,93,23,195,2,249,2, -161,2,23,197,1,248,22,133,18,23,199,1,27,247,22,133,16,249,80,159,39, -41,38,28,23,195,2,27,249,22,166,8,247,22,165,8,2,66,28,192,249,22, -156,8,194,7,63,2,61,2,61,27,248,80,159,41,57,39,247,80,159,41,54, -39,27,27,28,23,198,1,250,22,168,15,248,22,191,15,2,54,247,22,162,8, -2,67,11,27,248,80,159,44,8,41,39,250,22,93,23,205,1,248,22,89,248, -22,191,15,2,68,9,28,193,249,22,79,195,194,192,27,250,22,157,2,23,198, -1,2,69,11,28,23,193,2,249,2,161,2,23,196,1,23,195,1,193,32,164, -2,88,163,8,36,38,51,11,2,50,222,33,165,2,28,248,22,87,23,195,2, -9,28,248,22,80,23,195,2,249,22,79,27,248,22,132,18,23,198,2,28,248, -22,144,7,23,194,2,248,22,158,15,23,194,1,28,248,22,133,8,23,194,2, -248,22,159,15,23,194,1,192,27,248,22,133,18,23,198,1,28,248,22,87,23, -194,2,9,28,248,22,80,23,194,2,249,22,79,27,248,22,132,18,23,197,2, -28,248,22,144,7,23,194,2,248,22,158,15,23,194,1,28,248,22,133,8,23, -194,2,248,22,159,15,23,194,1,192,249,2,164,2,23,200,1,248,22,133,18, -23,198,1,249,22,93,23,198,2,249,2,164,2,23,200,1,248,22,133,18,23, -198,1,249,22,93,23,195,2,27,248,22,133,18,23,198,1,28,248,22,87,23, -194,2,9,28,248,22,80,23,194,2,249,22,79,27,248,22,132,18,23,197,2, -28,248,22,144,7,23,194,2,248,22,158,15,23,194,1,28,248,22,133,8,23, -194,2,248,22,159,15,23,194,1,192,249,2,164,2,23,200,1,248,22,133,18, -23,198,1,249,22,93,23,198,2,249,2,164,2,23,200,1,248,22,133,18,23, -198,1,27,247,22,133,16,249,80,159,39,41,38,28,23,195,2,27,249,22,166, -8,247,22,165,8,2,66,28,192,249,22,156,8,194,7,63,2,61,2,61,27, -248,80,159,41,57,39,247,80,159,41,54,39,27,27,28,23,198,1,250,22,168, -15,248,22,191,15,2,54,247,22,162,8,2,67,11,27,248,80,159,44,8,42, -39,250,22,93,23,205,1,248,22,89,248,22,191,15,2,68,23,206,1,28,193, -249,22,79,195,194,192,27,250,22,157,2,23,198,1,2,69,11,28,23,193,2, -249,2,164,2,23,196,1,23,195,1,193,27,20,13,159,80,159,37,55,37,26, -9,80,159,46,56,37,249,22,33,11,80,159,48,55,37,22,188,14,10,22,131, -15,10,22,132,15,10,22,133,15,10,248,22,139,6,23,196,2,28,248,22,139, -7,23,194,2,12,86,94,248,22,167,9,23,194,1,27,20,13,159,80,159,38, -55,37,26,9,80,159,47,56,37,249,22,33,11,80,159,49,55,37,22,188,14, -10,22,131,15,10,22,132,15,10,22,133,15,10,248,22,139,6,23,197,2,28, -248,22,139,7,23,194,2,12,86,94,248,22,167,9,23,194,1,27,20,13,159, -80,159,39,55,37,26,9,80,159,48,56,37,249,22,33,11,80,159,50,55,37, -22,188,14,10,22,131,15,10,22,132,15,10,22,133,15,10,248,22,139,6,23, -198,2,28,248,22,139,7,23,194,2,12,86,94,248,22,167,9,23,194,1,248, -80,159,40,8,43,39,197,86,94,249,22,130,7,247,22,167,5,23,196,2,248, -22,154,6,249,22,133,4,36,249,22,181,3,23,198,1,23,199,1,27,28,23, -197,2,86,95,23,196,1,23,195,1,23,197,1,86,94,23,197,1,27,248,22, -191,15,2,58,27,250,80,159,42,40,39,23,197,1,11,11,27,248,22,136,4, -23,199,1,27,28,23,194,2,23,194,1,86,94,23,194,1,36,27,248,22,136, -4,23,202,1,27,28,23,194,2,23,194,1,86,94,23,194,1,36,249,22,134, -6,23,199,1,20,20,95,88,163,8,36,36,48,11,9,224,4,2,33,168,2, -23,195,1,23,197,1,27,248,22,183,5,23,195,1,248,80,159,39,8,43,39, -193,159,36,20,114,159,36,16,1,11,16,0,20,26,145,9,2,1,2,1,29, -11,11,11,11,9,9,11,11,11,10,43,80,158,36,36,20,114,159,41,16,39, -2,2,2,3,2,4,2,5,2,6,2,7,2,8,2,9,2,10,2,11,2, -12,2,13,2,14,2,15,2,16,2,17,2,18,2,19,2,20,30,2,23,1, -20,112,97,114,97,109,101,116,101,114,105,122,97,116,105,111,110,45,107,101,121, -11,6,30,2,23,1,23,101,120,116,101,110,100,45,112,97,114,97,109,101,116, -101,114,105,122,97,116,105,111,110,11,3,2,24,2,25,2,26,2,27,30,2, -28,76,102,105,110,100,45,108,105,110,107,115,45,112,97,116,104,33,11,4,2, -29,2,30,2,31,30,2,28,1,21,101,120,99,101,112,116,105,111,110,45,104, -97,110,100,108,101,114,45,107,101,121,11,2,2,32,2,33,2,34,2,35,2, -36,2,37,2,38,2,39,2,40,16,0,37,39,36,16,0,36,16,22,2,9, -2,10,2,8,2,26,2,3,2,34,2,25,2,31,2,20,2,24,2,32,2, -29,2,27,2,30,2,33,2,35,2,18,2,17,2,19,2,15,2,14,2,16, -58,11,11,11,16,13,2,13,2,11,2,40,2,12,2,6,2,39,2,38,2, -4,2,37,2,7,2,36,2,2,2,5,16,13,11,11,11,11,11,11,11,11, -11,11,11,11,11,16,13,2,13,2,11,2,40,2,12,2,6,2,39,2,38, -2,4,2,37,2,7,2,36,2,2,2,5,49,49,37,12,11,11,16,0,16, -0,16,0,36,36,11,12,11,11,16,0,16,0,16,0,36,36,16,40,20,15, -16,2,32,0,88,163,36,37,45,11,2,2,222,33,70,80,159,36,36,37,20, -15,16,2,249,22,146,7,7,92,7,92,80,159,36,37,37,20,15,16,2,88, -163,36,37,54,38,2,4,223,0,33,75,80,159,36,38,37,20,15,16,2,88, -163,36,38,58,38,2,5,223,0,33,77,80,159,36,39,37,20,15,16,2,20, -25,96,2,6,88,163,8,36,39,8,25,8,32,9,223,0,33,84,88,163,36, -38,47,52,9,223,0,33,85,88,163,36,37,46,52,9,223,0,33,86,80,159, -36,40,37,20,15,16,2,27,248,22,137,16,248,22,158,8,27,28,249,22,159, -9,247,22,171,8,2,43,6,1,1,59,6,1,1,58,250,22,128,8,6,14, -14,40,91,94,126,97,93,42,41,126,97,40,46,42,41,23,196,2,23,196,1, -88,163,8,36,38,48,11,2,7,223,0,33,90,80,159,36,41,37,20,15,16, -2,32,0,88,163,8,36,38,47,11,2,8,222,33,91,80,159,36,42,37,20, -15,16,2,32,0,88,163,8,36,39,48,11,2,9,222,33,93,80,159,36,43, -37,20,15,16,2,32,0,88,163,8,36,38,46,11,2,10,222,33,94,80,159, -36,44,37,20,15,16,2,88,163,45,39,49,8,128,16,2,11,223,0,33,96, -80,159,36,45,37,20,15,16,2,88,163,45,40,50,8,128,16,2,13,223,0, -33,98,80,159,36,47,37,20,15,16,2,250,22,168,15,248,22,191,15,2,54, -247,22,162,8,2,55,80,159,36,48,37,20,15,16,2,247,22,137,2,80,158, -36,49,20,15,16,2,11,80,158,36,50,20,15,16,2,249,22,168,15,248,22, -191,15,2,54,2,55,80,159,36,51,37,20,15,16,2,247,22,137,2,80,158, -36,52,20,15,16,2,11,80,158,36,53,20,15,16,2,88,163,36,36,51,8, -240,16,0,24,0,2,20,223,0,33,99,80,159,36,54,37,20,15,16,2,32, -0,88,163,8,36,37,46,11,2,24,222,33,100,80,159,36,57,37,20,15,16, -2,32,0,88,163,36,37,43,11,2,25,222,33,101,80,159,36,58,37,20,15, -16,2,88,163,8,36,39,54,11,2,26,223,0,33,104,80,159,36,59,37,20, -15,16,2,248,80,159,37,8,25,37,88,163,8,36,36,53,8,240,16,0,56, -0,9,223,1,33,107,80,159,36,8,24,37,20,15,16,2,249,22,175,8,248, -22,178,8,80,159,39,8,24,38,247,22,137,2,80,159,36,8,26,37,20,15, -16,2,249,22,175,8,248,22,178,8,80,159,39,8,24,38,11,80,159,36,8, -27,37,20,15,16,2,88,163,36,37,44,16,2,36,8,128,128,2,31,223,0, -33,115,80,159,36,8,28,37,20,15,16,2,88,163,36,39,46,16,2,8,240, -0,240,0,0,8,155,244,2,32,223,0,33,125,80,159,36,8,30,37,20,15, -16,2,88,163,36,38,56,16,2,36,8,240,0,128,0,0,2,33,223,0,33, -127,80,159,36,8,31,37,20,15,16,2,88,163,8,36,38,8,25,16,4,36, -8,240,0,65,0,0,8,128,2,36,2,50,223,0,33,128,2,80,159,36,8, -39,39,20,15,16,2,88,163,36,40,8,33,16,4,36,8,240,0,193,0,0, -8,128,2,36,2,12,223,0,33,139,2,80,159,36,46,37,20,15,16,2,32, -0,88,163,36,39,50,11,2,34,222,33,140,2,80,159,36,8,32,37,20,15, -16,2,32,0,88,163,36,41,8,27,11,2,35,222,33,143,2,80,159,36,8, -33,37,20,15,16,2,20,27,158,32,0,88,163,36,38,52,11,2,36,222,33, -146,2,88,163,36,38,49,16,4,36,36,38,36,2,36,223,0,33,148,2,80, -159,36,8,34,37,20,15,16,2,20,27,158,32,0,88,163,36,38,52,11,2, -37,222,33,151,2,88,163,36,38,49,16,4,36,36,38,36,2,37,223,0,33, -152,2,80,159,36,8,35,37,20,15,16,2,20,27,158,32,0,88,163,36,37, -44,11,2,38,222,33,153,2,32,0,88,163,36,37,44,11,2,38,222,33,154, -2,80,159,36,8,36,37,20,15,16,2,88,163,8,36,37,51,16,4,52,36, -8,128,4,36,2,50,223,0,33,155,2,80,159,36,8,40,39,20,15,16,2, -88,163,8,36,37,51,16,4,52,36,8,128,8,36,2,50,223,0,33,156,2, -80,159,36,8,41,39,20,15,16,2,88,163,8,36,37,51,16,4,52,36,8, -128,16,36,2,50,223,0,33,157,2,80,159,36,8,42,39,20,15,16,2,20, -25,96,2,39,88,163,36,36,55,16,4,8,32,8,36,8,128,4,36,9,223, -0,33,160,2,88,163,36,37,56,16,4,8,32,8,36,8,128,8,36,9,223, -0,33,163,2,88,163,36,38,57,16,4,8,32,8,36,8,128,16,36,9,223, -0,33,166,2,80,159,36,8,37,37,20,15,16,2,88,163,8,36,37,57,16, -4,36,8,24,8,128,32,36,2,50,223,0,33,167,2,80,159,36,8,43,39, -20,15,16,2,88,163,8,36,39,54,16,4,52,36,8,128,32,36,2,40,223, -0,33,169,2,80,159,36,8,38,37,95,29,94,2,21,68,35,37,107,101,114, -110,101,108,11,29,94,2,21,69,35,37,109,105,110,45,115,116,120,11,2,28, -9,9,9,36,0}; - EVAL_ONE_SIZED_STR((char *)expr, 16468); +94,23,206,1,247,22,153,15,253,2,142,2,23,203,1,23,207,1,23,208,1, +23,209,1,23,210,1,23,199,1,2,28,248,22,150,15,23,196,2,249,22,168, +15,23,197,1,23,195,1,192,32,145,2,88,163,36,40,57,11,2,52,222,33, +146,2,28,248,22,130,4,23,197,2,86,94,23,196,1,19,248,22,138,8,23, +195,2,35,248,22,138,8,23,196,2,249,22,160,15,251,22,145,8,250,22,144, +8,23,204,1,36,23,203,4,2,53,2,53,28,248,22,144,7,23,204,2,249, +22,159,8,23,205,1,8,63,23,203,1,28,248,22,151,15,23,199,2,248,22, +152,15,23,199,1,86,94,23,198,1,247,22,153,15,2,27,248,22,179,3,23, +198,1,28,249,22,159,9,8,46,249,22,139,8,23,198,2,23,197,2,35,248, +22,178,3,23,195,2,249,22,160,15,251,22,145,8,250,22,144,8,23,204,1, +36,23,203,1,2,53,2,53,28,248,22,144,7,23,204,2,249,22,159,8,23, +205,1,8,63,23,203,1,28,248,22,151,15,23,199,2,248,22,152,15,23,199, +1,86,94,23,198,1,247,22,153,15,28,248,22,130,4,23,194,2,86,94,23, +193,1,19,248,22,138,8,23,196,2,35,248,22,138,8,23,197,2,249,22,160, +15,251,22,145,8,250,22,144,8,23,205,1,36,23,203,4,2,53,2,53,28, +248,22,144,7,23,205,2,249,22,159,8,23,206,1,8,63,23,204,1,28,248, +22,151,15,23,200,2,248,22,152,15,23,200,1,86,94,23,199,1,247,22,153, +15,2,27,248,22,179,3,23,195,1,28,249,22,159,9,8,46,249,22,139,8, +23,199,2,23,197,2,35,248,22,178,3,23,195,2,249,22,160,15,251,22,145, +8,250,22,144,8,23,205,1,36,23,203,1,2,53,2,53,28,248,22,144,7, +23,205,2,249,22,159,8,23,206,1,8,63,23,204,1,28,248,22,151,15,23, +200,2,248,22,152,15,23,200,1,86,94,23,199,1,247,22,153,15,251,2,145, +2,198,199,200,196,90,159,38,11,89,161,38,36,11,86,95,28,28,248,22,151, +15,23,196,2,10,28,248,22,150,15,23,196,2,10,28,248,22,144,7,23,196, +2,28,248,22,173,15,23,196,2,10,248,22,174,15,23,196,2,11,12,252,22, +168,11,2,38,2,44,36,23,200,2,23,201,2,28,28,248,22,144,7,23,197, +2,10,248,22,133,8,23,197,2,12,252,22,168,11,2,38,2,66,37,23,200, +2,23,201,2,90,159,39,11,89,161,39,36,11,248,22,171,15,23,199,2,86, +94,23,195,1,86,94,28,192,12,250,22,171,11,2,38,2,67,23,201,2,249, +22,7,194,195,27,248,22,156,15,23,196,1,27,251,2,145,2,23,198,2,23, +201,1,23,202,1,248,22,138,8,23,199,1,28,248,22,150,15,23,196,2,249, +22,168,15,23,197,1,23,195,1,192,2,53,252,80,158,41,8,35,2,38,2, +53,32,0,88,163,8,36,38,43,11,9,222,33,148,2,198,199,32,150,2,88, +163,36,40,57,11,2,52,222,33,151,2,28,248,22,130,4,23,197,2,86,94, +23,196,1,19,248,22,138,8,23,195,2,19,248,22,138,8,23,196,2,249,22, +160,15,251,22,145,8,250,22,144,8,23,204,2,36,23,203,4,2,53,249,22, +144,8,23,203,1,23,201,4,28,248,22,144,7,23,204,2,249,22,159,8,23, +205,1,8,63,23,203,1,28,248,22,151,15,23,199,2,248,22,152,15,23,199, +1,86,94,23,198,1,247,22,153,15,2,2,27,248,22,179,3,23,198,1,28, +249,22,159,9,8,46,249,22,139,8,23,198,2,23,197,2,27,248,22,178,3, +23,195,2,249,22,160,15,251,22,145,8,250,22,144,8,23,204,2,36,23,203, +1,2,68,249,22,144,8,23,203,1,23,201,1,28,248,22,144,7,23,204,2, +249,22,159,8,23,205,1,8,63,23,203,1,28,248,22,151,15,23,199,2,248, +22,152,15,23,199,1,86,94,23,198,1,247,22,153,15,28,248,22,130,4,23, +194,2,86,94,23,193,1,19,248,22,138,8,23,196,2,19,248,22,138,8,23, +197,2,249,22,160,15,251,22,145,8,250,22,144,8,23,205,2,36,23,203,4, +2,53,249,22,144,8,23,204,1,23,201,4,28,248,22,144,7,23,205,2,249, +22,159,8,23,206,1,8,63,23,204,1,28,248,22,151,15,23,200,2,248,22, +152,15,23,200,1,86,94,23,199,1,247,22,153,15,2,2,27,248,22,179,3, +23,195,1,28,249,22,159,9,8,46,249,22,139,8,23,199,2,23,197,2,27, +248,22,178,3,23,195,2,249,22,160,15,251,22,145,8,250,22,144,8,23,205, +2,36,23,203,1,2,68,249,22,144,8,23,204,1,23,201,1,28,248,22,144, +7,23,205,2,249,22,159,8,23,206,1,8,63,23,204,1,28,248,22,151,15, +23,200,2,248,22,152,15,23,200,1,86,94,23,199,1,247,22,153,15,251,2, +150,2,198,199,200,196,90,159,38,11,89,161,38,36,11,86,95,28,28,248,22, +151,15,23,196,2,10,28,248,22,150,15,23,196,2,10,28,248,22,144,7,23, +196,2,28,248,22,173,15,23,196,2,10,248,22,174,15,23,196,2,11,12,252, +22,168,11,2,38,2,44,36,23,200,2,23,201,2,28,28,248,22,144,7,23, +197,2,10,248,22,133,8,23,197,2,12,252,22,168,11,2,38,2,66,37,23, +200,2,23,201,2,90,159,39,11,89,161,39,36,11,248,22,171,15,23,199,2, +86,94,23,195,1,86,94,28,192,12,250,22,171,11,2,38,2,67,23,201,2, +249,22,7,194,195,27,248,22,156,15,23,196,1,27,251,2,150,2,23,198,2, +23,201,1,23,202,1,248,22,138,8,23,199,1,28,248,22,150,15,23,196,2, +249,22,168,15,23,197,1,23,195,1,192,252,80,158,41,8,35,2,38,2,68, +22,144,8,198,199,249,247,22,171,5,23,195,1,11,249,247,22,171,5,194,11, +28,248,22,87,23,195,2,9,27,27,248,22,80,23,197,2,28,248,22,175,15, +23,194,2,192,28,248,22,174,15,23,194,2,249,22,176,15,23,195,1,249,22, +176,15,250,80,159,45,40,39,248,22,191,15,2,60,11,10,248,22,191,15,2, +59,250,80,159,41,40,39,248,22,191,15,2,60,23,196,1,10,28,23,193,2, +249,22,79,248,22,178,15,249,22,176,15,23,198,1,247,22,128,16,27,248,22, +81,23,199,1,28,248,22,87,23,194,2,9,27,248,80,159,42,8,24,39,248, +22,80,23,196,2,28,23,193,2,249,22,79,248,22,178,15,249,22,176,15,23, +198,1,247,22,128,16,248,80,159,44,8,43,39,248,22,81,23,198,1,86,94, +23,193,1,248,80,159,42,8,43,39,248,22,81,23,196,1,86,94,23,193,1, +27,248,22,81,23,197,1,28,248,22,87,23,194,2,9,27,248,80,159,40,8, +24,39,248,22,80,23,196,2,28,23,193,2,249,22,79,248,22,178,15,249,22, +176,15,23,198,1,247,22,128,16,248,80,159,42,8,43,39,248,22,81,23,198, +1,86,94,23,193,1,248,80,159,40,8,43,39,248,22,81,23,196,1,28,248, +22,87,23,195,2,9,27,27,248,22,80,23,197,2,28,248,22,175,15,23,194, +2,192,28,248,22,174,15,23,194,2,249,22,176,15,23,195,1,249,22,176,15, +250,80,159,45,40,39,248,22,191,15,2,60,11,10,248,22,191,15,2,59,250, +80,159,41,40,39,248,22,191,15,2,60,23,196,1,10,28,23,193,2,249,22, +79,248,22,178,15,249,22,176,15,23,198,1,247,22,128,16,27,248,22,81,23, +199,1,28,248,22,87,23,194,2,9,27,248,80,159,42,8,24,39,248,22,80, +23,196,2,28,23,193,2,249,22,79,248,22,178,15,249,22,176,15,23,198,1, +247,22,128,16,248,80,159,44,8,44,39,248,22,81,23,198,1,86,94,23,193, +1,248,80,159,42,8,44,39,248,22,81,23,196,1,86,94,23,193,1,27,248, +22,81,23,197,1,28,248,22,87,23,194,2,9,27,248,80,159,40,8,24,39, +248,22,80,23,196,2,28,23,193,2,249,22,79,248,22,178,15,249,22,176,15, +23,198,1,247,22,128,16,248,80,159,42,8,44,39,248,22,81,23,198,1,86, +94,23,193,1,248,80,159,40,8,44,39,248,22,81,23,196,1,28,248,22,87, +23,195,2,9,27,27,248,22,80,23,197,2,28,248,22,175,15,23,194,2,192, +28,248,22,174,15,23,194,2,249,22,176,15,23,195,1,249,22,176,15,250,80, +159,45,40,39,248,22,191,15,2,60,11,10,248,22,191,15,2,59,250,80,159, +41,40,39,248,22,191,15,2,60,23,196,1,10,28,23,193,2,249,22,79,248, +22,178,15,249,22,176,15,23,198,1,247,22,128,16,27,248,22,81,23,199,1, +28,248,22,87,23,194,2,9,27,27,248,22,80,23,196,2,28,248,22,175,15, +23,194,2,192,28,248,22,174,15,23,194,2,249,22,176,15,23,195,1,249,22, +176,15,250,80,159,49,40,39,248,22,191,15,2,60,11,10,248,22,191,15,2, +59,250,80,159,45,40,39,248,22,191,15,2,60,23,196,1,10,28,23,193,2, +249,22,79,248,22,178,15,249,22,176,15,23,198,1,247,22,128,16,27,248,22, +81,23,198,1,28,248,22,87,23,194,2,9,27,248,80,159,46,8,24,39,248, +22,80,23,196,2,28,23,193,2,249,22,79,248,22,178,15,249,22,176,15,23, +198,1,247,22,128,16,248,80,159,48,8,45,39,248,22,81,23,198,1,86,94, +23,193,1,248,80,159,46,8,45,39,248,22,81,23,196,1,86,94,23,193,1, +27,248,22,81,23,196,1,28,248,22,87,23,194,2,9,27,248,80,159,44,8, +24,39,248,22,80,23,196,2,28,23,193,2,249,22,79,248,22,178,15,249,22, +176,15,23,198,1,247,22,128,16,248,80,159,46,8,45,39,248,22,81,23,198, +1,86,94,23,193,1,248,80,159,44,8,45,39,248,22,81,23,196,1,86,94, +23,193,1,27,248,22,81,23,197,1,28,248,22,87,23,194,2,9,27,27,248, +22,80,23,196,2,28,248,22,175,15,23,194,2,192,28,248,22,174,15,23,194, +2,249,22,176,15,23,195,1,249,22,176,15,250,80,159,47,40,39,248,22,191, +15,2,60,11,10,248,22,191,15,2,59,250,80,159,43,40,39,248,22,191,15, +2,60,23,196,1,10,28,23,193,2,249,22,79,248,22,178,15,249,22,176,15, +23,198,1,247,22,128,16,27,248,22,81,23,198,1,28,248,22,87,23,194,2, +9,27,248,80,159,44,8,24,39,248,22,80,23,196,2,28,23,193,2,249,22, +79,248,22,178,15,249,22,176,15,23,198,1,247,22,128,16,248,80,159,46,8, +45,39,248,22,81,23,198,1,86,94,23,193,1,248,80,159,44,8,45,39,248, +22,81,23,196,1,86,94,23,193,1,27,248,22,81,23,196,1,28,248,22,87, +23,194,2,9,27,248,80,159,42,8,24,39,248,22,80,23,196,2,28,23,193, +2,249,22,79,248,22,178,15,249,22,176,15,23,198,1,247,22,128,16,248,80, +159,44,8,45,39,248,22,81,23,198,1,86,94,23,193,1,248,80,159,42,8, +45,39,248,22,81,23,196,1,27,247,22,133,16,249,80,159,39,41,38,28,23, +195,2,27,249,22,166,8,247,22,165,8,2,69,28,192,249,22,156,8,194,7, +63,2,64,2,64,250,80,159,42,8,25,39,248,80,159,43,57,39,247,80,159, +43,54,39,2,70,27,28,23,199,1,250,22,168,15,248,22,191,15,2,56,247, +22,162,8,2,71,11,27,248,80,159,45,8,43,39,250,22,93,9,248,22,89, +248,22,191,15,2,61,9,28,193,249,22,79,195,194,192,27,247,22,133,16,249, +80,159,39,41,38,28,23,195,2,27,249,22,166,8,247,22,165,8,2,69,28, +192,249,22,156,8,194,7,63,2,64,2,64,250,80,159,42,8,25,39,248,80, +159,43,57,39,247,80,159,43,54,39,2,70,27,28,23,199,1,250,22,168,15, +248,22,191,15,2,56,247,22,162,8,2,71,11,27,248,80,159,45,8,44,39, +250,22,93,23,206,1,248,22,89,248,22,191,15,2,61,9,28,193,249,22,79, +195,194,192,27,247,22,133,16,249,80,159,39,41,38,28,23,195,2,27,249,22, +166,8,247,22,165,8,2,69,28,192,249,22,156,8,194,7,63,2,64,2,64, +250,80,159,42,8,25,39,248,80,159,43,57,39,27,248,22,191,15,2,58,28, +248,22,175,15,23,194,2,192,27,28,248,22,173,15,23,195,2,20,13,159,80, +159,45,55,37,250,80,159,48,56,37,249,22,33,11,80,159,50,55,37,22,128, +16,248,22,191,15,2,59,27,248,22,191,15,2,60,250,80,159,49,40,39,23, +196,1,23,198,2,11,11,28,23,193,2,192,86,94,23,193,1,27,249,22,176, +15,27,248,22,191,15,2,60,250,80,159,52,40,39,23,196,1,11,11,248,22, +191,15,2,59,90,159,39,11,89,161,39,36,11,248,22,171,15,23,197,1,86, +95,23,195,1,23,194,1,249,22,176,15,23,200,1,23,195,1,2,70,27,28, +23,199,1,250,22,168,15,248,22,191,15,2,56,247,22,162,8,2,71,11,27, +27,250,22,93,23,206,1,248,22,89,248,22,191,15,2,61,23,207,1,28,248, +22,87,23,194,2,9,27,27,248,22,80,23,196,2,28,248,22,175,15,23,194, +2,192,28,248,22,174,15,23,194,2,249,22,176,15,23,195,1,249,22,176,15, +250,80,159,54,40,39,248,22,191,15,2,60,11,10,248,22,191,15,2,59,250, +80,159,50,40,39,248,22,191,15,2,60,23,196,1,10,28,23,193,2,249,22, +79,248,22,178,15,249,22,176,15,23,198,1,247,22,128,16,27,248,22,81,23, +198,1,28,248,22,87,23,194,2,9,27,248,80,159,51,8,24,39,248,22,80, +23,196,2,28,23,193,2,249,22,79,248,22,178,15,249,22,176,15,23,198,1, +247,22,128,16,248,80,159,53,8,45,39,248,22,81,23,198,1,86,94,23,193, +1,248,80,159,51,8,45,39,248,22,81,23,196,1,86,94,23,193,1,27,248, +22,81,23,196,1,28,248,22,87,23,194,2,9,27,248,80,159,49,8,24,39, +248,22,80,23,196,2,28,23,193,2,249,22,79,248,22,178,15,249,22,176,15, +23,198,1,247,22,128,16,248,80,159,51,8,45,39,248,22,81,23,198,1,86, +94,23,193,1,248,80,159,49,8,45,39,248,22,81,23,196,1,28,193,249,22, +79,195,194,192,27,20,13,159,80,159,37,55,37,26,9,80,159,46,56,37,249, +22,33,11,80,159,48,55,37,22,188,14,10,22,131,15,10,22,132,15,10,22, +133,15,10,248,22,139,6,23,196,2,28,248,22,139,7,23,194,2,12,86,94, +248,22,167,9,23,194,1,27,20,13,159,80,159,38,55,37,26,9,80,159,47, +56,37,249,22,33,11,80,159,49,55,37,22,188,14,10,22,131,15,10,22,132, +15,10,22,133,15,10,248,22,139,6,23,197,2,28,248,22,139,7,23,194,2, +12,86,94,248,22,167,9,23,194,1,27,20,13,159,80,159,39,55,37,26,9, +80,159,48,56,37,249,22,33,11,80,159,50,55,37,22,188,14,10,22,131,15, +10,22,132,15,10,22,133,15,10,248,22,139,6,23,198,2,28,248,22,139,7, +23,194,2,12,86,94,248,22,167,9,23,194,1,248,80,159,40,8,46,39,197, +86,94,249,22,130,7,247,22,167,5,23,196,2,248,22,154,6,249,22,133,4, +36,249,22,181,3,23,198,1,23,199,1,27,28,23,197,2,86,95,23,196,1, +23,195,1,23,197,1,86,94,23,197,1,27,248,22,191,15,2,60,27,250,80, +159,42,40,39,23,197,1,11,11,27,248,22,136,4,23,199,1,27,28,23,194, +2,23,194,1,86,94,23,194,1,36,27,248,22,136,4,23,202,1,27,28,23, +194,2,23,194,1,86,94,23,194,1,36,249,22,134,6,23,199,1,20,20,95, +88,163,8,36,36,48,11,9,224,4,2,33,163,2,23,195,1,23,197,1,27, +248,22,183,5,23,195,1,248,80,159,39,8,46,39,193,159,36,20,114,159,36, +16,1,11,16,0,20,26,145,9,2,1,2,1,29,11,11,11,11,9,9,11, +11,11,10,43,80,158,36,36,20,114,159,42,16,41,2,2,2,3,2,4,2, +5,2,6,2,7,2,8,2,9,2,10,2,11,2,12,2,13,2,14,2,15, +2,16,2,17,2,18,2,19,2,20,30,2,23,1,20,112,97,114,97,109,101, +116,101,114,105,122,97,116,105,111,110,45,107,101,121,11,6,30,2,23,1,23, +101,120,116,101,110,100,45,112,97,114,97,109,101,116,101,114,105,122,97,116,105, +111,110,11,3,2,24,2,25,2,26,2,27,2,28,2,29,30,2,30,76,102, +105,110,100,45,108,105,110,107,115,45,112,97,116,104,33,11,4,2,31,2,32, +2,33,30,2,30,1,21,101,120,99,101,112,116,105,111,110,45,104,97,110,100, +108,101,114,45,107,101,121,11,2,2,34,2,35,2,36,2,37,2,38,2,39, +2,40,2,41,2,42,16,0,37,39,36,16,0,36,16,24,2,9,2,10,2, +8,2,28,2,3,2,36,2,25,2,26,2,27,2,33,2,20,2,24,2,34, +2,31,2,29,2,32,2,35,2,37,2,18,2,17,2,19,2,15,2,14,2, +16,8,24,11,11,11,16,13,2,13,2,11,2,42,2,12,2,6,2,41,2, +40,2,4,2,39,2,7,2,38,2,2,2,5,16,13,11,11,11,11,11,11, +11,11,11,11,11,11,11,16,13,2,13,2,11,2,42,2,12,2,6,2,41, +2,40,2,4,2,39,2,7,2,38,2,2,2,5,49,49,37,12,11,11,16, +0,16,0,16,0,36,36,11,12,11,11,16,0,16,0,16,0,36,36,16,43, +20,15,16,2,32,0,88,163,36,37,45,11,2,2,222,33,72,80,159,36,36, +37,20,15,16,2,249,22,146,7,7,92,7,92,80,159,36,37,37,20,15,16, +2,88,163,36,37,54,38,2,4,223,0,33,77,80,159,36,38,37,20,15,16, +2,88,163,36,38,58,38,2,5,223,0,33,79,80,159,36,39,37,20,15,16, +2,20,25,96,2,6,88,163,8,36,39,8,25,8,32,9,223,0,33,86,88, +163,36,38,47,52,9,223,0,33,87,88,163,36,37,46,52,9,223,0,33,88, +80,159,36,40,37,20,15,16,2,27,248,22,137,16,248,22,158,8,27,28,249, +22,159,9,247,22,171,8,2,45,6,1,1,59,6,1,1,58,250,22,128,8, +6,14,14,40,91,94,126,97,93,42,41,126,97,40,46,42,41,23,196,2,23, +196,1,88,163,8,36,38,48,11,2,7,223,0,33,92,80,159,36,41,37,20, +15,16,2,32,0,88,163,8,36,38,47,11,2,8,222,33,93,80,159,36,42, +37,20,15,16,2,32,0,88,163,8,36,39,48,11,2,9,222,33,95,80,159, +36,43,37,20,15,16,2,32,0,88,163,8,36,38,46,11,2,10,222,33,96, +80,159,36,44,37,20,15,16,2,88,163,45,39,49,8,128,16,2,11,223,0, +33,98,80,159,36,45,37,20,15,16,2,88,163,45,40,50,8,128,16,2,13, +223,0,33,100,80,159,36,47,37,20,15,16,2,250,22,168,15,248,22,191,15, +2,56,247,22,162,8,2,57,80,159,36,48,37,20,15,16,2,247,22,137,2, +80,158,36,49,20,15,16,2,11,80,158,36,50,20,15,16,2,249,22,168,15, +248,22,191,15,2,56,2,57,80,159,36,51,37,20,15,16,2,247,22,137,2, +80,158,36,52,20,15,16,2,11,80,158,36,53,20,15,16,2,88,163,36,36, +51,8,240,16,0,24,0,2,20,223,0,33,101,80,159,36,54,37,20,15,16, +2,32,0,88,163,8,36,37,46,11,2,24,222,33,102,80,159,36,57,37,20, +15,16,2,88,163,36,37,56,52,2,25,223,0,33,103,80,159,36,58,37,20, +15,16,2,88,163,36,37,55,52,2,26,223,0,33,104,80,159,36,59,37,20, +15,16,2,88,163,36,37,51,52,2,27,223,0,33,105,80,159,36,8,24,37, +20,15,16,2,88,163,8,36,38,55,16,4,36,8,64,8,128,8,36,2,52, +223,0,33,106,80,159,36,8,41,39,20,15,16,2,88,163,8,36,39,49,16, +4,36,36,8,128,8,36,2,28,223,0,33,107,80,159,36,8,25,37,20,15, +16,2,248,80,159,37,8,27,37,88,163,8,36,36,53,8,240,16,0,120,2, +9,223,1,33,108,80,159,36,8,26,37,20,15,16,2,249,22,175,8,248,22, +178,8,80,159,39,8,26,38,247,22,137,2,80,159,36,8,28,37,20,15,16, +2,249,22,175,8,248,22,178,8,80,159,39,8,26,38,11,80,159,36,8,29, +37,20,15,16,2,88,163,36,37,44,16,2,36,8,240,0,128,0,0,2,33, +223,0,33,116,80,159,36,8,30,37,20,15,16,2,88,163,36,39,46,16,2, +8,240,0,240,0,0,8,240,27,244,0,0,2,34,223,0,33,126,80,159,36, +8,32,37,20,15,16,2,88,163,36,38,56,16,4,36,36,38,36,2,35,223, +0,33,128,2,80,159,36,8,33,37,20,15,16,2,88,163,8,36,38,8,25, +16,4,36,8,128,16,8,129,16,36,2,52,223,0,33,129,2,80,159,36,8, +42,39,20,15,16,2,88,163,36,40,8,33,16,4,36,8,128,16,8,131,16, +36,2,12,223,0,33,140,2,80,159,36,46,37,20,15,16,2,32,0,88,163, +36,39,50,11,2,36,222,33,141,2,80,159,36,8,34,37,20,15,16,2,32, +0,88,163,36,41,8,27,11,2,37,222,33,144,2,80,159,36,8,35,37,20, +15,16,2,20,27,158,32,0,88,163,36,38,52,11,2,38,222,33,147,2,88, +163,36,38,49,16,4,36,36,44,36,2,38,223,0,33,149,2,80,159,36,8, +36,37,20,15,16,2,20,27,158,32,0,88,163,36,38,52,11,2,39,222,33, +152,2,88,163,36,38,49,16,4,36,36,44,36,2,39,223,0,33,153,2,80, +159,36,8,37,37,20,15,16,2,20,27,158,32,0,88,163,36,37,44,11,2, +40,222,33,154,2,32,0,88,163,36,37,44,11,2,40,222,33,155,2,80,159, +36,8,38,37,20,15,16,2,88,163,8,36,37,53,16,4,52,8,128,4,8, +128,32,36,2,52,223,0,33,156,2,80,159,36,8,43,39,20,15,16,2,88, +163,8,36,37,53,16,4,52,8,128,4,8,128,64,36,2,52,223,0,33,157, +2,80,159,36,8,44,39,20,15,16,2,88,163,8,36,37,57,16,4,52,8, +128,4,8,128,128,36,2,52,223,0,33,158,2,80,159,36,8,45,39,20,15, +16,2,20,25,96,2,41,88,163,36,36,56,16,4,8,32,8,164,8,8,128, +32,36,9,223,0,33,159,2,88,163,36,37,57,16,4,8,32,8,164,8,8, +128,64,36,9,223,0,33,160,2,88,163,36,38,8,27,16,4,8,48,8,184, +12,8,128,128,36,9,223,0,33,161,2,80,159,36,8,39,37,20,15,16,2, +88,163,8,36,37,57,16,4,36,8,24,8,240,0,64,0,0,36,2,52,223, +0,33,162,2,80,159,36,8,46,39,20,15,16,2,88,163,8,36,39,54,16, +4,52,36,8,240,0,64,0,0,36,2,42,223,0,33,164,2,80,159,36,8, +40,37,95,29,94,2,21,68,35,37,107,101,114,110,101,108,11,29,94,2,21, +69,35,37,109,105,110,45,115,116,120,11,2,30,9,9,9,36,0}; + EVAL_ONE_SIZED_STR((char *)expr, 17069); } { SHARED_OK static MZCOMPILED_STRING_FAR unsigned char expr[] = {35,126,9,53,46,51,46,57,48,48,46,50,84,0,0,0,0,0,0,0,0, @@ -1409,7 +1437,7 @@ 2,2,74,35,37,112,108,97,99,101,45,115,116,114,117,99,116,11,29,94,2, 2,66,35,37,98,111,111,116,11,29,94,2,2,68,35,37,101,120,112,111,98, 115,11,29,94,2,2,68,35,37,107,101,114,110,101,108,11,97,36,11,8,240, -186,91,0,0,100,159,2,3,36,36,159,2,4,36,36,159,2,5,36,36,159, +198,91,0,0,100,159,2,3,36,36,159,2,4,36,36,159,2,5,36,36,159, 2,6,36,36,159,2,7,36,36,159,2,8,36,36,159,2,9,36,36,159,2, 9,36,36,16,0,159,36,20,114,159,36,16,1,11,16,0,20,26,145,9,2, 1,2,1,29,11,11,11,11,9,9,11,11,11,18,96,11,46,46,46,36,80, diff --git a/racket/src/racket/src/startup.inc b/racket/src/racket/src/startup.inc index 31884f8c0f..b67691dd28 100644 --- a/racket/src/racket/src/startup.inc +++ b/racket/src/racket/src/startup.inc @@ -372,9 +372,30 @@ "(define-values(coerce-to-path)" "(lambda(p)" "(cond" -"((string? p)(string->path p))" -"((bytes? p)(bytes->path p))" +"((string? p)(collects-relative-path->complete-path(string->path p)))" +"((bytes? p)(collects-relative-path->complete-path(bytes->path p)))" +"((path? p)(collects-relative-path->complete-path p))" "(else p))))" +"(define-values(collects-relative-path->complete-path)" +"(lambda(p)" +"(cond" +"((complete-path? p) p)" +"(else" +"(path->complete-path" +" p" +"(or(exe-relative-path->complete-path(find-system-path 'collects-dir))" +"(find-system-path 'orig-dir)))))))" +"(define-values(exe-relative-path->complete-path)" +"(lambda(collects-path)" +"(cond" +"((complete-path? collects-path) collects-path)" +"((absolute-path? collects-path)" +"(path->complete-path collects-path" +"(path->complete-path" +"(find-executable-path(find-system-path 'exec-file) #f #t)" +"(find-system-path 'orig-dir))))" +"(else" +"(find-executable-path(find-system-path 'exec-file) collects-path #t)))))" "(define-values(add-config-search)" "(lambda(ht key orig-l)" "(let((l(hash-ref ht key #f)))" @@ -389,11 +410,11 @@ "(lambda()" "(let*((d(find-config-dir))" "(ht(get-config-table d))" -"(lf(or(hash-ref ht 'links-file #f)" -"(build-path(or" -"(coerce-to-path(hash-ref ht 'lib-dir #f))" -" (build-path d 'up \"lib\"))" -" \"links.rktd\"))))" +"(lf(coerce-to-path" +"(or(hash-ref ht 'links-file #f)" +"(build-path(or(hash-ref ht 'lib-dir #f)" +" 'up)" +" \"links.rktd\")))))" "(list->vector" "(add-config-search" " ht" @@ -760,14 +781,7 @@ "(if(null? l)" " null" "(let*((collects-path(car l))" -"(v" -"(cond" -"((complete-path? collects-path) collects-path)" -"((absolute-path? collects-path)" -"(path->complete-path collects-path" -"(find-executable-path(find-system-path 'exec-file) #f #t)))" -"(else" -"(find-executable-path(find-system-path 'exec-file) collects-path #t)))))" +"(v(exe-relative-path->complete-path collects-path)))" "(if v" "(cons(simplify-path(path->complete-path v(current-directory)))" "(loop(cdr l)))" diff --git a/racket/src/racket/src/startup.rktl b/racket/src/racket/src/startup.rktl index ddabd34936..589d19d1b8 100644 --- a/racket/src/racket/src/startup.rktl +++ b/racket/src/racket/src/startup.rktl @@ -440,10 +440,35 @@ (define-values (coerce-to-path) (lambda (p) (cond - [(string? p) (string->path p)] - [(bytes? p) (bytes->path p)] + [(string? p) (collects-relative-path->complete-path (string->path p))] + [(bytes? p) (collects-relative-path->complete-path (bytes->path p))] + [(path? p) (collects-relative-path->complete-path p)] [else p]))) + (define-values (collects-relative-path->complete-path) + (lambda (p) + (cond + [(complete-path? p) p] + [else + (path->complete-path + p + (or (exe-relative-path->complete-path (find-system-path 'collects-dir)) + (find-system-path 'orig-dir)))]))) + + (define-values (exe-relative-path->complete-path) + (lambda (collects-path) + (cond + [(complete-path? collects-path) collects-path] + [(absolute-path? collects-path) + ;; This happens only under Windows; add a drive + ;; specification to make the path complete + (path->complete-path collects-path + (path->complete-path + (find-executable-path (find-system-path 'exec-file) #f #t) + (find-system-path 'orig-dir)))] + [else + (find-executable-path (find-system-path 'exec-file) collects-path #t)]))) + (define-values (add-config-search) (lambda (ht key orig-l) (let ([l (hash-ref ht key #f)]) @@ -463,11 +488,11 @@ (lambda () (let* ([d (find-config-dir)] [ht (get-config-table d)] - [lf (or (hash-ref ht 'links-file #f) - (build-path (or - (coerce-to-path (hash-ref ht 'lib-dir #f)) - (build-path d 'up "lib")) - "links.rktd"))]) + [lf (coerce-to-path + (or (hash-ref ht 'links-file #f) + (build-path (or (hash-ref ht 'lib-dir #f) + 'up) + "links.rktd")))]) (list->vector (add-config-search ht @@ -837,7 +862,7 @@ (define-values (load/use-compiled) (lambda (f) ((current-load/use-compiled) f #f))) - + (define-values (find-library-collection-paths) (case-lambda [() (find-library-collection-paths null null)] @@ -868,14 +893,7 @@ (if (null? l) null (let* ([collects-path (car l)] - [v - (cond - [(complete-path? collects-path) collects-path] - [(absolute-path? collects-path) - (path->complete-path collects-path - (find-executable-path (find-system-path 'exec-file) #f #t))] - [else - (find-executable-path (find-system-path 'exec-file) collects-path #t)])]) + [v (exe-relative-path->complete-path collects-path)]) (if v (cons (simplify-path (path->complete-path v (current-directory))) (loop (cdr l))) diff --git a/racket/src/worksp/build-at.bat b/racket/src/worksp/build-at.bat index 7240955b24..cfb44b3a9e 100644 --- a/racket/src/worksp/build-at.bat +++ b/racket/src/worksp/build-at.bat @@ -1,4 +1,4 @@ cd %1 -set SELF_RACKET_FLAGS=-G . +set BUILD_CONFIG=%2 set PLT_SETUP_OPTIONS=--no-foreign-libs build diff --git a/racket/src/worksp/build.bat b/racket/src/worksp/build.bat index a8042a7c3e..5c7bf16dd7 100644 --- a/racket/src/worksp/build.bat +++ b/racket/src/worksp/build.bat @@ -8,6 +8,11 @@ set DEVENV=devenv for %%X in (vcexpress.exe) do (set VCEXP=%%~$PATH:X) if defined VCEXP set DEVENV=%VCEXP% +if not exist ..\..\etc mkdir ..\..\etc +if not exist ..\..\doc mkdir ..\..\doc + +if not defined BUILD_CONFIG set BUILD_CONFIG=..\..\etc + cd racket "%DEVENV%" racket.sln /Build "Release|%BUILDMODE%" if errorlevel 1 exit /B 1 @@ -17,7 +22,7 @@ if errorlevel 1 exit /B 1 cd .. cd gc2 -..\..\..\racketcgc %SELF_RACKET_FLAGS% -cu make.rkt +..\..\..\racketcgc -G ..\%BUILD_CONFIG% -cu make.rkt if errorlevel 1 exit /B 1 cd .. @@ -35,7 +40,7 @@ if errorlevel 1 exit /B 1 cd .. cd mzcom -..\..\..\racket %SELF_RACKET_FLAGS% -cu xform.rkt +..\..\..\racket -G ..\%BUILD_CONFIG -cu xform.rkt if errorlevel 1 exit /B 1 cd .. @@ -44,11 +49,6 @@ cd mzcom if errorlevel 1 exit /B 1 cd .. -..\..\racket -l racket/kernel/init -e "(if (directory-exists? \"../../etc\") (void) (make-directory \"../../etc\"))" -if errorlevel 1 exit /B 1 -..\..\racket -l racket/kernel/init -e "(if (directory-exists? \"../../doc\") (void) (make-directory \"../../doc\"))" -if errorlevel 1 exit /B 1 - copy ..\COPYING-libscheme.txt ..\..\lib\ if errorlevel 1 exit /B 1 copy ..\COPYING_LESSER.txt ..\..\lib\ @@ -56,5 +56,5 @@ if errorlevel 1 exit /B 1 copy ..\COPYING.txt ..\..\lib\ if errorlevel 1 exit /B 1 -..\..\racket -N "raco setup" %SELF_RACKET_FLAGS% -l- setup %PLT_SETUP_OPTIONS% +..\..\racket -G %BUILD_CONFIG% -N "raco setup" %SELF_RACKET_FLAGS% -l- setup %PLT_SETUP_OPTIONS% if errorlevel 1 exit /B 1