diff --git a/Makefile b/Makefile
--- a/Makefile
+++ b/Makefile
@@ -20,7 +20,7 @@
 GHCPROF= # -prof -fprof-late #-prof -fprof-auto
 GHCFLAGS= $(GHCEXTS) $(GHCINCS) $(GHCWARNS) $(GHCOPTS) $(GHCTOOL) $(GHCPKGS) $(GHCOUT) $(GHCPROF)
 #
-.PHONY:	clean bootstrap install ghcgen newmhs cachelib timecompile exampletest cachetest runtest runtestmhs everytest everytestmhs nfibtest
+.PHONY:	clean bootstrap install ghcgen newmhs cachelib timecompile exampletest cachetest runtest runtestmhs everytest everytestmhs nfibtest info
 
 all:	bin/mhs
 
@@ -39,17 +39,22 @@
 	$(CCEVAL) src/runtime/comb.c -o bin/mhseval
 
 # Compile mhs with ghc
-bin/gmhs:	src/*/*.hs ghc/*.hs ghc/*/*.hs Tools/convertX.sh
+bin/gmhs:	src/*/*.hs ghc/*.hs ghc/*/*.hs ghc/*/*/*.hs
 	@mkdir -p bin
 	$(GHC) $(GHCFLAGS) src/MicroHs/Main.hs -main-is MicroHs.Main -o bin/gmhs
 
+# Compile mhs with ghc, with code coverage
+bin/cmhs:	src/*/*.hs ghc/*.hs ghc/*/*.hs
+	@mkdir -p bin
+	$(GHC) $(GHCFLAGS) -fhpc src/MicroHs/Main.hs -main-is MicroHs.Main -o bin/cmhs
+
 # Generate distribution C file
 generated/mhs.c:	bin/mhs src/*/*.hs
 	@mkdir -p generated
-	bin/mhs -ilib -isrc MicroHs.Main -ogenerated/mhs.c
+	bin/mhs -isrc MicroHs.Main -ogenerated/mhs.c
 
 ghcgen:	bin/gmhs src/*/*.hs lib/*.hs lib/*/*.hs lib/*/*/*.hs
-	bin/gmhs -ilib -isrc MicroHs.Main -ogenerated/mhs.c
+	bin/gmhs -isrc MicroHs.Main -ogenerated/mhs.c
 
 # Make sure boottrapping works
 bootstrap:	bin/mhs-stage2
@@ -61,14 +66,14 @@
 bin/mhs-stage1:	bin/mhs src/*/*.hs
 	@mkdir -p generated
 	@echo "*** Build stage1 compiler, using bin/mhs"
-	bin/mhs -ilib -isrc MicroHs.Main -ogenerated/mhs-stage1.c
+	bin/mhs -isrc MicroHs.Main -ogenerated/mhs-stage1.c
 	$(CCEVAL) generated/mhs-stage1.c -o bin/mhs-stage1
 
 # Build stage2 compiler with stage1 compiler, and compare
 bin/mhs-stage2:	bin/mhs-stage1 src/*/*.hs
 	@mkdir -p generated
 	@echo "*** Build stage2 compiler, with stage1 compiler"
-	bin/mhs-stage1 -ilib -isrc MicroHs.Main -ogenerated/mhs-stage2.c
+	bin/mhs-stage1 -isrc MicroHs.Main -ogenerated/mhs-stage2.c
 	cmp generated/mhs-stage1.c generated/mhs-stage2.c
 	@echo "*** stage2 equal to stage1"
 	$(CCEVAL) generated/mhs-stage2.c -o bin/mhs-stage2
@@ -88,8 +93,8 @@
 
 #
 cachelib:
-	@-rm .mhscache
-	bin/mhs -c AllOfLib
+	@-rm -f .mhscache
+	bin/mhs -C AllOfLib
 
 #
 clean:
@@ -108,16 +113,16 @@
 	@echo "*** Set environment variable MHSDIR to $(PREFIX)/lib/mhs"
 	@echo "***"
 
-everytest:	runtest exampletest cachetest bootcombtest nfibtest
+everytest:	newmhs runtest exampletest cachetest bootcombtest nfibtest info
 
-everytestmhs:	bin/mhs bin/mhseval exampletest cachetest bootstrap runtestmhs nfibtest
+everytestmhs:	bin/mhs bin/mhseval exampletest cachetest bootstrap runtestmhs nfibtest info
 
 runtestmhs:
-	cd tests; make MHS=../bin/mhs cache; make MHS="../bin/mhs +RTS -H2M -RTS -c" test
+	cd tests; make MHS=../bin/mhs cache; make MHS="../bin/mhs +RTS -H2M -RTS -C" info test
 
 bootcombtest:	bin/gmhs bin/mhseval
-	bin/gmhs -ilib -isrc -ogmhs.comb  MicroHs.Main
-	bin/mhseval +RTS -v -rgmhs.comb -RTS -ilib -isrc -omhs.comb MicroHs.Main
+	bin/gmhs -isrc -ogmhs.comb  MicroHs.Main
+	bin/mhseval +RTS -v -rgmhs.comb -RTS -isrc -omhs.comb MicroHs.Main
 	cmp gmhs.comb mhs.comb
 
 exampletest:	bin/mhs bin/mhseval Example.hs
@@ -125,14 +130,17 @@
 	bin/mhs Example && bin/mhseval
 	bin/mhs Example -oEx && ./Ex && rm Ex
 
+info:	bin/mhs
+	bin/mhs -r -itests Info
+
 cachetest:	bin/mhs bin/mhseval Example.hs
 	rm -f .mhscache
-	bin/mhs -c AllOfLib
-	bin/mhs -c Example && bin/mhseval
+	bin/mhs -C AllOfLib
+	bin/mhs -C Example && bin/mhseval
 	rm -f .mhscache
 
 nfibtest: bin/mhs bin/mhseval
 	bin/mhs -itests Nfib && bin/mhseval
 
 emscripten: bin/mhs
-	make test -f Makefile.emscripten;
+	make test -f Makefile.emscripten
diff --git a/MicroHs.cabal b/MicroHs.cabal
--- a/MicroHs.cabal
+++ b/MicroHs.cabal
@@ -1,6 +1,6 @@
 cabal-version:       3.0
 name:                MicroHs
-version:             0.8.5.0
+version:             0.9.1.0
 synopsis:            A compiler for a subset of Haskell
 license:             Apache-2.0
 license-file:        LICENSE
@@ -44,8 +44,11 @@
                        MicroHs.Compile
                        MicroHs.CompileCache
                        MicroHs.Desugar
+                       MicroHs.EncodeData
                        MicroHs.Exp
+                       MicroHs.ExpPrint
                        MicroHs.Expr
+                       MicroHs.Fixity
                        MicroHs.Graph
                        MicroHs.Ident
                        MicroHs.IdentMap
@@ -69,6 +72,7 @@
                        containers   >= 0.5 && < 0.8,
                        deepseq      >= 1.1 && < 1.6,
                        ghc-prim     >= 0.5 && < 0.12,
+                       haskeline    >= 0.8 && < 0.9,
                        mtl          >= 2.0 && < 2.4,
                        time         >= 1.1 && < 1.15,
                        pretty       >= 1.0 && < 1.2,
diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -1,11 +1,11 @@
 # Micro Haskell
-This directory contains an implementation of a small subset of Haskell.
+This directory contains an implementation of a subset of Haskell.
 It uses combinators for the runtime execution.
 
 The compiler can compile itself.
 
 ## Compiling MicroHs
-There are two different ways to compile MicroHs
+There are two different ways to compile MicroHs:
 * Using GHC with standard `Prelude` and libraries. `Makefile` target `bin/gmhs`
 * Using the included combinator file and runtime.  `Makefile` target `bin/mhs`
 
@@ -22,6 +22,8 @@
 
 To compile on Windows make sure `cl` is in the path, and then use `nmake` with `Makefile.windows`.
 
+The compiler can also be used with emscripten to produce JavaScript, see `Makefile.emscripten`.
+
 ## Language
 The language is an extended subset of Haskell-98.
 
@@ -29,7 +31,6 @@
  * Top level definitions must have a type signature.
  * Type variables need an explicit `forall`.
  * Type variables without a kind annotation are assumed to have kind `Type`.
- * There is no prefix negation.
  * There is no `Read` class.
  * There is no deriving.
  * There is no record syntax.
@@ -57,9 +58,11 @@
    * ScopedTypeVariables
    * StarIsType
    * TupleSections
+   * TypeLits
    * TypeSynonymInstances
    * UndecidableInstances
    * UndecidableSuperClasses
+   * ViewPatterns
  * `main` in the top module given to `mhs` serves at the program entry point.
  * Many things that should be an error (but which are mostly harmless) are not reported.
  * More differences that I don't remember right now.
@@ -101,7 +104,10 @@
 The function type, `->`, is (of course) also built in.
 
 All other types are defined with the language.  They are converted to lambda terms using
-the Scott encoding.   The runtime system knows how lists and booleans are encoded.
+an encoding.
+For types with few constructors (< 5) it uses Scott encoding, otherwise it is a pair with
+an integer tag and a tuple (Scott encoded) with all arguments.
+The runtime system knows how lists and booleans are encoded.
 
 
 ## Compiler
@@ -112,10 +118,10 @@
 
 ### Compiler flags
 * `-iDIR` add `DIR` to search path for modules
-* `-oFILE` output file.  If the `FILE` ends in `.comb` it will produce a textual combinator file.  If `FILE` ends in `.c` it will produce a C file with the combinators.  For all other `FILE` it will compiler the combinators together with the runtime system to produce a regular executable.
-* `-r` run directly (does not work if compiled with GHC)
+* `-oFILE` output file.  If the `FILE` ends in `.comb` it will produce a textual combinator file.  If `FILE` ends in `.c` it will produce a C file with the combinators.  For all other `FILE` it will compile the combinators together with the runtime system to produce a regular executable.
+* `-r` run directly
 * `-v` be more verbose, flag can be repeated
-* `-c` use a compilation cache
+* `-C` use a compilation cache
 
 With the `-v` flag the processing time for each module is reported.
 E.g.
@@ -125,12 +131,12 @@
 which means that processing the module `MicroHs.Exp` took 284ms,
 with parsing taking 91ms and typecheck&desugar taking 193ms.
 
-With the `-c` flag the compiler writes out its internal cache of compiled modules to the file `.mhscache`
-at the end of compilation.  And a startup it reads this file if it exists, and then validates the contents
+With the `-C` flag the compiler writes out its internal cache of compiled modules to the file `.mhscache`
+at the end of compilation.  At startup it reads this file if it exists, and then validates the contents
 by an MD5 checksum for all the files in the cache.
 This can make compilation much faster since the compiler will not parse and typecheck a module if it is in
 the cache.
-Do **NOT** use `-c` when you are changing the compiler itself; if the cached data types change the compiler will probably just crash.
+Do **NOT** use `-C` when you are changing the compiler itself; if the cached data types change the compiler will probably just crash.
 
 
 ### Environment variables
@@ -139,10 +145,15 @@
 
 ### Compiler modules
 
+* `Abstract`, combinator bracket abstraction and optimization.
 * `Compile`, top level compiler.  Maintains a cache of already compiled modules.
+* `CompileCache`, cache for compiled modules.
 * `Desugar`, desugar full expressions to simple expressions.
+* `EncodeData`, data type encoding.
 * `Exp`, simple expression type, combinator abstraction and optimization.
+* `ExpPrint`, serialize `Exp` for the runtime system.
 * `Expr`, parsed expression type.
+* `Fixity`, resolve operator fixities.
 * `Graph`, strongly connected component algorithm.
 * `Ident`, identifiers and related types.
 * `IdentMap`, map from identifiers to something.
@@ -174,11 +185,6 @@
 * `expr` Evaluate expression.
 * `defn` Add definition (can also be an `import`)
 
-***NOTE*** When you `import` a module it is cached.
-If the file changes and you import it again it will not reload.
-You can use `:clear` (or `:reload`) to get back to an empty cache.
-This is a bug.
-
 ## Files
 There is a number of subdirectories:
 * `Tools/` a few useful tools for compressions etc.
@@ -215,7 +221,8 @@
 ### Features
 The runtime system can serialize and deserialize any expression
 and keep its graph structure (sharing and cycles).
-The only exceptions to this are C pointers file handles, which cannot be serialized (except for `stdin`, `stdout`, and `stderr`).
+The only exceptions to this are C pointers, e.g., file handles,
+which cannot be serialized (except for `stdin`, `stdout`, and `stderr`).
 
 ### Memory layout
 Memory allocation is based on cells.  Each cell has room for two pointers (i.e., two words, typically 16 bytes),
@@ -236,14 +243,14 @@
 
 ### Portability
 The C code for the evaluator does not use any special features, and should be
-portable to many platforms.  It has mostly been test with MacOS and Linux,
+portable to many platforms.  It has mostly been tested with MacOS and Linux,
 and somewhat with Windows.
 
-The code has only been tested on 64 bit platforms, so again, there are lurking problems
+The code has mostly been tested on 64 bit platforms, so again, there are lurking problems
 with other word sizes, but they should be easy to fix.
 
 The `src/runtime/` directory contains configuration files for different platform.
-Edit `src/runtime/eval.c` to `#include` the right one.
+Use the appropriate `src/runtime/eval-`*platform*`.c.
 
 ## Bootstrapping
 The compiler can compile itself.  To replace `bin/mhs` with a new version,
diff --git a/generated/mhs.c b/generated/mhs.c
--- a/generated/mhs.c
+++ b/generated/mhs.c
@@ -1,15027 +1,14542 @@
 static unsigned char data[] = {
-118,53,46,49,10,49,55,51,56,10,40,40,65,32,58,48,32,40,40,66,
-32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,32,40,40,66,32,
-40,66,32,40,66,32,67,41,41,41,32,40,40,66,32,40,66,32,67,41,
-41,32,80,41,41,41,41,32,40,40,65,32,58,49,32,40,85,32,40,90,
-32,40,90,32,40,90,32,75,41,41,41,41,41,32,40,40,65,32,58,50,
-32,40,85,32,40,75,32,40,90,32,40,90,32,75,41,41,41,41,41,32,
-40,40,65,32,58,51,32,40,85,32,40,75,32,40,75,32,40,90,32,75,
-41,41,41,41,41,32,40,40,65,32,58,52,32,40,85,32,40,75,32,40,
-75,32,40,75,32,75,41,41,41,41,41,32,40,40,65,32,58,53,32,40,
-85,32,40,75,32,40,75,32,40,75,32,65,41,41,41,41,41,32,40,40,
-65,32,58,54,32,40,75,32,40,110,111,68,101,102,97,117,108,116,32,34,
-65,108,116,101,114,110,97,116,105,118,101,46,101,109,112,116,121,34,41,41,
-41,32,40,40,65,32,58,55,32,40,75,32,40,110,111,68,101,102,97,117,
-108,116,32,34,65,108,116,101,114,110,97,116,105,118,101,46,60,124,62,34,
-41,41,41,32,40,40,65,32,58,56,32,40,40,83,32,40,40,40,83,39,
-32,83,39,41,32,40,40,66,32,95,49,53,41,32,95,49,41,41,32,40,
-40,40,67,39,32,95,50,56,53,41,32,40,40,66,32,95,49,51,41,32,
-95,49,41,41,32,95,52,56,49,41,41,41,32,95,53,41,41,32,40,40,
-65,32,58,57,32,40,40,83,32,40,40,40,83,39,32,67,39,41,32,95,
-51,41,32,95,52,41,41,32,40,40,40,67,39,32,95,49,52,41,32,95,
-49,41,32,95,52,56,48,41,41,41,32,40,40,65,32,58,49,48,32,40,
-40,40,83,39,32,80,41,32,95,50,41,32,40,40,40,67,39,32,95,49,
-52,41,32,95,49,41,32,95,49,52,53,48,41,41,41,32,40,40,65,32,
-58,49,49,32,40,40,66,32,89,41,32,40,40,40,83,39,32,66,41,32,
-40,40,66,32,80,41,32,95,50,41,41,32,40,40,66,32,40,67,39,32,
-66,41,41,32,95,51,41,41,41,41,32,40,40,65,32,58,49,50,32,40,
-40,66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,32,40,40,
-66,32,40,66,32,40,66,32,67,41,41,41,32,40,40,66,32,40,66,32,
-67,41,41,32,80,41,41,41,41,32,40,40,65,32,58,49,51,32,40,85,
-32,40,90,32,40,90,32,40,90,32,75,41,41,41,41,41,32,40,40,65,
-32,58,49,52,32,40,85,32,40,75,32,40,90,32,40,90,32,75,41,41,
-41,41,41,32,40,40,65,32,58,49,53,32,40,85,32,40,75,32,40,75,
-32,40,90,32,75,41,41,41,41,41,32,40,40,65,32,58,49,54,32,40,
-85,32,40,75,32,40,75,32,40,75,32,75,41,41,41,41,41,32,40,40,
-65,32,58,49,55,32,40,85,32,40,75,32,40,75,32,40,75,32,65,41,
-41,41,41,41,32,40,40,65,32,58,49,56,32,40,75,32,40,110,111,68,
-101,102,97,117,108,116,32,34,65,112,112,108,105,99,97,116,105,118,101,46,
-112,117,114,101,34,41,41,41,32,40,40,65,32,58,49,57,32,40,75,32,
-40,110,111,68,101,102,97,117,108,116,32,34,65,112,112,108,105,99,97,116,
-105,118,101,46,60,42,62,34,41,41,41,32,40,40,65,32,58,50,48,32,
-40,40,40,83,39,32,66,41,32,95,49,53,41,32,40,40,40,67,39,32,
-95,50,56,50,41,32,95,49,51,41,32,95,50,55,51,41,41,41,32,40,
-40,65,32,58,50,49,32,40,40,40,83,39,32,66,41,32,95,49,53,41,
-32,40,40,40,67,39,32,95,50,56,53,41,32,95,49,51,41,32,95,50,
-55,52,41,41,41,32,40,40,65,32,58,50,50,32,95,49,53,50,50,41,
-32,40,40,65,32,58,50,51,32,40,40,66,32,95,49,53,57,56,41,32,
-95,50,50,41,41,32,40,40,65,32,58,50,52,32,40,40,40,83,39,32,
-95,49,53,57,56,41,32,95,50,50,41,32,73,41,41,32,40,40,65,32,
-58,50,53,32,95,49,53,48,54,41,32,40,40,65,32,58,50,54,32,40,
-95,50,53,32,34,117,110,100,101,102,105,110,101,100,34,41,41,32,40,40,
-65,32,58,50,55,32,73,41,32,40,40,65,32,58,50,56,32,40,40,40,
-67,39,32,66,41,32,95,49,53,50,49,41,32,40,40,67,32,95,50,55,
-50,41,32,95,50,55,41,41,41,32,40,40,65,32,58,50,57,32,40,40,
-40,67,39,32,95,50,56,41,32,40,40,95,50,56,49,32,95,49,53,54,
-54,41,32,95,49,56,52,41,41,32,40,40,95,50,55,50,32,40,95,51,
-53,32,95,49,53,54,56,41,41,32,95,49,56,51,41,41,41,32,40,40,
-65,32,58,51,48,32,40,40,66,32,40,40,83,32,95,49,53,57,56,41,
-32,40,95,51,53,32,95,49,53,54,56,41,41,41,32,95,50,53,41,41,
-32,40,40,65,32,58,51,49,32,40,40,66,32,40,66,32,40,66,32,67,
-41,41,41,32,40,40,66,32,40,66,32,67,41,41,32,80,41,41,41,32,
-40,40,65,32,58,51,50,32,40,85,32,40,90,32,40,90,32,75,41,41,
-41,41,32,40,40,65,32,58,51,51,32,40,85,32,40,75,32,40,90,32,
-75,41,41,41,41,32,40,40,65,32,58,51,52,32,40,85,32,40,75,32,
-40,75,32,75,41,41,41,41,32,40,40,65,32,58,51,53,32,40,85,32,
-40,75,32,40,75,32,65,41,41,41,41,32,40,40,65,32,58,51,54,32,
-40,75,32,40,110,111,68,101,102,97,117,108,116,32,34,77,111,110,97,100,
-46,62,62,61,34,41,41,41,32,40,40,65,32,58,51,55,32,40,40,40,
-67,39,32,40,67,39,32,66,41,41,32,95,51,51,41,32,75,41,41,32,
-40,40,65,32,58,51,56,32,40,40,66,32,95,49,52,41,32,95,51,50,
-41,41,32,40,40,65,32,58,51,57,32,40,40,40,83,39,32,40,67,39,
-32,66,41,41,32,95,51,51,41,32,40,40,40,83,39,32,40,67,39,32,
-66,41,41,32,95,51,51,41,32,40,66,39,32,95,51,53,41,41,41,41,
-32,40,40,65,32,58,52,48,32,80,41,32,40,40,65,32,58,52,49,32,
-40,85,32,75,41,41,32,40,40,65,32,58,52,50,32,40,85,32,65,41,
-41,32,40,40,65,32,58,52,51,32,40,75,32,95,50,53,41,41,32,40,
-40,65,32,58,52,52,32,40,40,66,32,40,66,32,89,41,41,32,40,40,
-40,83,39,32,66,41,32,40,66,39,32,40,40,66,32,80,41,32,40,40,
-67,32,95,51,53,41,32,95,52,56,48,41,41,41,41,32,40,40,40,83,
-39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,40,67,39,
-32,66,41,41,41,32,40,66,39,32,95,51,51,41,41,41,32,40,40,40,
-83,39,32,40,67,39,32,40,67,39,32,66,41,41,41,32,40,66,39,32,
-95,51,51,41,41,32,40,40,40,67,39,32,66,41,32,40,66,39,32,95,
-51,53,41,41,32,95,52,56,49,41,41,41,41,41,41,32,40,40,65,32,
-58,52,53,32,40,40,66,32,40,66,32,89,41,41,32,40,40,40,83,39,
-32,66,41,32,40,66,39,32,40,40,66,32,80,41,32,40,40,67,32,95,
-51,53,41,32,95,49,52,53,48,41,41,41,41,32,40,40,40,67,39,32,
-40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,40,67,39,32,66,
-41,41,41,32,40,66,39,32,95,51,51,41,41,41,32,90,41,41,41,41,
-32,40,40,65,32,58,52,54,32,40,40,66,32,85,41,32,40,40,67,32,
-95,51,53,41,32,95,49,52,53,48,41,41,41,32,40,40,65,32,58,52,
-55,32,40,40,67,32,95,52,52,41,32,95,50,55,51,41,41,32,40,40,
-65,32,58,52,56,32,40,40,66,32,95,50,55,53,41,32,95,51,51,41,
-41,32,40,40,65,32,58,52,57,32,40,40,66,32,67,41,32,40,40,66,
-32,67,39,41,32,95,51,51,41,41,41,32,40,40,65,32,58,53,48,32,
-40,40,66,32,95,50,55,53,41,32,95,52,57,41,41,32,40,40,65,32,
-58,53,49,32,40,40,66,32,89,41,32,40,40,40,83,39,32,66,41,32,
-40,66,39,32,40,40,66,32,80,41,32,40,40,67,32,95,51,53,41,32,
-95,52,56,48,41,41,41,41,32,40,40,40,83,39,32,66,41,32,40,40,
-66,32,40,83,39,32,40,83,39,32,66,41,41,41,32,40,66,39,32,95,
-51,51,41,41,41,32,40,40,40,83,39,32,40,67,39,32,40,67,39,32,
-66,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,67,39,32,66,
-41,41,41,41,32,40,66,39,32,40,66,39,32,95,51,51,41,41,41,41,
-32,40,40,40,67,39,32,66,41,32,40,66,39,32,40,66,39,32,40,40,
-66,32,95,50,55,48,41,32,95,51,53,41,41,41,41,32,40,40,66,32,
-40,67,32,83,41,41,32,95,52,56,49,41,41,41,41,41,41,41,32,40,
-40,65,32,58,53,50,32,40,40,66,32,89,41,32,40,40,40,83,39,32,
-66,41,32,40,66,39,32,40,40,66,32,80,41,32,40,40,67,32,95,51,
-53,41,32,40,40,80,32,95,52,56,48,41,32,95,52,56,48,41,41,41,
-41,41,32,40,40,40,83,39,32,66,41,32,40,40,66,32,40,83,39,32,
-40,83,39,32,66,41,41,41,32,40,66,39,32,95,51,51,41,41,41,32,
-40,40,40,83,39,32,40,67,39,32,40,67,39,32,66,41,41,41,32,40,
-40,66,32,40,66,32,40,66,32,40,67,39,32,66,41,41,41,41,32,40,
-66,39,32,40,66,39,32,95,51,51,41,41,41,41,32,40,40,66,32,40,
-66,32,40,66,32,85,41,41,41,32,40,40,40,67,39,32,66,41,32,40,
-66,39,32,40,66,39,32,40,66,39,32,40,40,66,32,95,50,55,48,41,
-32,95,51,53,41,41,41,41,41,32,40,40,40,83,39,32,67,41,32,40,
-40,66,32,40,40,67,39,32,83,39,41,32,83,39,41,41,32,40,40,66,
-32,40,40,67,39,32,66,41,32,80,41,41,32,95,52,56,49,41,41,41,
-32,40,40,66,32,40,66,32,80,41,41,32,95,52,56,49,41,41,41,41,
-41,41,41,41,41,32,40,40,65,32,58,53,51,32,40,40,95,50,56,48,
-32,95,50,55,50,41,32,40,95,50,56,52,32,95,53,51,41,41,41,32,
-40,40,65,32,58,53,52,32,40,40,40,40,40,95,49,50,32,95,53,51,
-41,32,95,50,55,52,41,32,83,41,32,40,95,50,48,32,95,53,52,41,
-41,32,40,95,50,49,32,95,53,52,41,41,41,32,40,40,65,32,58,53,
-53,32,40,40,40,40,95,51,49,32,95,53,52,41,32,40,40,40,67,39,
-32,67,41,32,40,67,32,83,39,41,41,32,73,41,41,32,40,95,51,55,
-32,95,53,53,41,41,32,40,95,51,56,32,95,53,53,41,41,41,32,40,
-40,65,32,58,53,54,32,85,41,32,40,40,65,32,58,53,55,32,40,40,
-95,50,56,48,32,40,40,66,32,40,66,32,40,95,50,55,48,32,95,53,
-54,41,41,41,32,40,40,66,32,40,40,67,39,32,67,41,32,95,54,48,
-41,41,32,40,66,32,80,41,41,41,41,32,40,95,50,56,52,32,95,53,
-55,41,41,41,32,40,40,65,32,58,53,56,32,40,40,40,40,40,95,49,
-50,32,95,53,55,41,32,40,40,66,32,40,95,50,55,48,32,95,53,54,
-41,41,32,80,41,41,32,40,95,51,57,32,95,53,57,41,41,32,40,40,
-66,32,40,66,32,40,95,50,55,48,32,95,53,54,41,41,41,32,40,40,
-40,67,39,32,66,41,32,40,40,66,32,67,41,32,95,54,48,41,41,32,
-40,90,32,95,54,48,41,41,41,41,32,40,95,50,49,32,95,53,56,41,
-41,41,32,40,40,65,32,58,53,57,32,40,40,40,40,95,51,49,32,95,
-53,56,41,32,40,40,66,32,40,66,32,40,95,50,55,48,32,95,53,54,
-41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,67,41,32,
-95,54,48,41,41,32,40,66,32,95,54,48,41,41,41,41,32,40,95,49,
-54,32,95,53,56,41,41,32,40,95,49,52,32,95,53,56,41,41,41,32,
-40,40,65,32,58,54,48,32,40,85,32,73,41,41,32,40,40,65,32,58,
-54,49,32,40,40,66,32,40,95,50,55,50,32,95,53,57,56,41,41,32,
-95,54,48,41,41,32,40,40,65,32,58,54,50,32,40,40,66,32,40,95,
-50,55,48,32,95,53,54,41,41,32,40,66,32,40,80,32,95,49,52,53,
-48,41,41,41,41,32,40,40,65,32,58,54,51,32,40,40,66,32,40,95,
-50,55,48,32,95,53,54,41,41,32,40,90,32,40,80,32,95,49,52,53,
-48,41,41,41,41,32,40,40,65,32,58,54,52,32,40,40,95,50,55,48,
-32,95,53,54,41,32,40,40,83,32,80,41,32,73,41,41,41,32,40,40,
-65,32,58,54,53,32,40,40,66,32,40,95,50,55,48,32,95,53,54,41,
-41,32,40,40,67,32,40,83,39,32,80,41,41,32,73,41,41,41,32,40,
-40,65,32,58,54,54,32,40,40,66,32,40,66,32,40,66,32,40,66,32,
-40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
-32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
-66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,
-32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
-66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
-40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,66,
-32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
-66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
-40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,
-40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
-32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
-66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,
-32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
-66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
-40,66,32,67,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
-32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
-66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,
-66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
-40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,
-66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
-40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,
-32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
-66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,41,41,41,41,
-41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,
-66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
-40,66,32,67,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,66,
-32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
-66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,41,41,41,41,
-41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
-40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,
-41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,
-40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,
-41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,
-66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,41,41,41,41,
-32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
-40,66,32,67,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,
-66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,41,41,32,40,
-40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,
-41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,
-32,40,40,66,32,40,66,32,40,66,32,67,41,41,41,32,40,40,66,32,
-40,66,32,67,41,41,32,80,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,54,55,32,40,85,
-32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,
-90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,
-40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,
-32,75,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,32,40,40,65,32,58,54,56,32,40,85,32,40,75,32,40,
-90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,
-40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,
-32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,75,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,
-40,40,65,32,58,54,57,32,40,85,32,40,75,32,40,75,32,40,90,32,
-40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,
-32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,
-90,32,40,90,32,40,90,32,40,90,32,75,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,
-55,48,32,40,85,32,40,75,32,40,75,32,40,75,32,40,90,32,40,90,
-32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,
-90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,
-40,90,32,40,90,32,75,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,55,49,32,40,85,
-32,40,75,32,40,75,32,40,75,32,40,75,32,40,90,32,40,90,32,40,
-90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,
-40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,
-32,75,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,32,40,40,65,32,58,55,50,32,40,85,32,40,75,32,40,
-75,32,40,75,32,40,75,32,40,75,32,40,90,32,40,90,32,40,90,32,
-40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,
-32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,75,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,
-40,40,65,32,58,55,51,32,40,85,32,40,75,32,40,75,32,40,75,32,
-40,75,32,40,75,32,40,75,32,40,90,32,40,90,32,40,90,32,40,90,
-32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,
-90,32,40,90,32,40,90,32,40,90,32,75,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,
-55,52,32,40,85,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,
-32,40,75,32,40,75,32,40,90,32,40,90,32,40,90,32,40,90,32,40,
-90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,
-40,90,32,40,90,32,75,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,55,53,32,40,85,
-32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,
-75,32,40,75,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,
-40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,
-32,75,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,32,40,40,65,32,58,55,54,32,40,85,32,40,75,32,40,
-75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,
-40,75,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,
-32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,75,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,
-40,40,65,32,58,55,55,32,40,85,32,40,75,32,40,75,32,40,75,32,
-40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,
-32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,
-90,32,40,90,32,40,90,32,40,90,32,75,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,
-55,56,32,40,85,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,
-32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,
-90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,
-40,90,32,40,90,32,75,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,55,57,32,40,85,
-32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,
-75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,90,32,
-40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,
-32,75,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,32,40,40,65,32,58,56,48,32,40,85,32,40,75,32,40,
-75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,
-40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,90,32,40,90,
-32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,75,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,
-40,40,65,32,58,56,49,32,40,85,32,40,75,32,40,75,32,40,75,32,
-40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,
-32,40,75,32,40,75,32,40,75,32,40,75,32,40,90,32,40,90,32,40,
-90,32,40,90,32,40,90,32,40,90,32,75,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,
-56,50,32,40,85,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,
-32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,
-75,32,40,75,32,40,75,32,40,75,32,40,90,32,40,90,32,40,90,32,
-40,90,32,40,90,32,75,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,56,51,32,40,85,
-32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,
-75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,
-40,75,32,40,75,32,40,75,32,40,90,32,40,90,32,40,90,32,40,90,
-32,75,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,32,40,40,65,32,58,56,52,32,40,85,32,40,75,32,40,
-75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,
-40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,
-32,40,75,32,40,75,32,40,90,32,40,90,32,40,90,32,75,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,
-40,40,65,32,58,56,53,32,40,85,32,40,75,32,40,75,32,40,75,32,
-40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,
-32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,
-75,32,40,75,32,40,90,32,40,90,32,75,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,
-56,54,32,40,85,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,
-32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,
-75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,
-40,75,32,40,90,32,75,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,56,55,32,40,85,
-32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,
-75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,
-40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,
-32,75,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,32,40,40,65,32,58,56,56,32,40,85,32,40,75,32,40,
-75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,
-40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,
-32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,65,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,
-40,40,65,32,58,56,57,32,40,75,32,40,110,111,68,101,102,97,117,108,
-116,32,34,66,105,116,115,46,46,38,46,34,41,41,41,32,40,40,65,32,
-58,57,48,32,40,75,32,40,110,111,68,101,102,97,117,108,116,32,34,66,
-105,116,115,46,46,124,46,34,41,41,41,32,40,40,65,32,58,57,49,32,
-40,75,32,40,110,111,68,101,102,97,117,108,116,32,34,66,105,116,115,46,
-120,111,114,34,41,41,41,32,40,40,65,32,58,57,50,32,40,75,32,40,
-110,111,68,101,102,97,117,108,116,32,34,66,105,116,115,46,99,111,109,112,
-108,101,109,101,110,116,34,41,41,41,32,40,40,65,32,58,57,51,32,40,
-40,40,83,39,32,40,83,39,32,83,41,41,32,40,40,66,32,40,66,32,
-40,83,32,40,40,67,32,40,95,53,50,55,32,95,50,57,54,41,41,32,
-35,48,41,41,41,41,32,40,40,66,32,40,40,83,39,32,83,41,32,40,
-67,32,40,40,67,32,40,95,53,50,57,32,95,50,57,54,41,41,32,35,
-48,41,41,41,41,32,95,56,48,41,41,41,32,40,40,40,67,39,32,40,
-67,39,32,66,41,41,32,95,56,50,41,32,40,95,53,49,50,32,95,50,
-57,49,41,41,41,41,32,40,40,65,32,58,57,52,32,40,40,40,83,39,
-32,40,83,39,32,83,41,41,32,40,40,66,32,40,66,32,40,83,32,40,
-40,67,32,40,95,53,50,55,32,95,50,57,54,41,41,32,35,48,41,41,
-41,41,32,40,40,66,32,40,40,83,39,32,83,41,32,40,67,32,40,40,
-67,32,40,95,53,50,57,32,95,50,57,54,41,41,32,35,48,41,41,41,
-41,32,95,56,52,41,41,41,32,40,40,40,67,39,32,40,67,39,32,66,
-41,41,32,95,56,53,41,32,40,95,53,49,50,32,95,50,57,49,41,41,
-41,41,32,40,40,65,32,58,57,53,32,40,40,67,32,40,40,83,32,95,
-55,55,41,32,40,40,67,32,95,55,53,41,32,35,48,41,41,41,32,35,
-48,41,41,32,40,40,65,32,58,57,54,32,40,75,32,40,110,111,68,101,
-102,97,117,108,116,32,34,66,105,116,115,46,98,105,116,34,41,41,41,32,
-40,40,65,32,58,57,55,32,40,40,40,83,39,32,40,67,39,32,66,41,
-41,32,95,54,57,41,32,95,55,53,41,41,32,40,40,65,32,58,57,56,
-32,40,40,40,83,39,32,40,67,39,32,66,41,41,32,95,54,56,41,32,
-40,40,40,83,39,32,66,41,32,95,55,49,41,32,95,55,53,41,41,41,
-32,40,40,65,32,58,57,57,32,40,40,40,83,39,32,40,67,39,32,66,
-41,41,32,95,55,48,41,32,95,55,53,41,41,32,40,40,65,32,58,49,
-48,48,32,40,75,32,40,110,111,68,101,102,97,117,108,116,32,34,66,105,
-116,115,46,116,101,115,116,66,105,116,34,41,41,41,32,40,40,65,32,58,
-49,48,49,32,95,55,50,41,32,40,40,65,32,58,49,48,50,32,95,56,
-48,41,32,40,40,65,32,58,49,48,51,32,40,40,40,67,39,32,40,67,
-39,32,66,41,41,32,95,55,50,41,32,40,95,53,49,50,32,95,50,57,
-49,41,41,41,32,40,40,65,32,58,49,48,52,32,95,56,50,41,32,40,
-40,65,32,58,49,48,53,32,95,55,51,41,32,40,40,65,32,58,49,48,
-54,32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,95,55,51,41,
-32,40,95,53,49,50,32,95,50,57,49,41,41,41,32,40,40,65,32,58,
-49,48,55,32,40,75,32,40,110,111,68,101,102,97,117,108,116,32,34,66,
-105,116,115,46,112,111,112,67,111,117,110,116,34,41,41,41,32,40,40,65,
-32,58,49,48,56,32,40,75,32,40,110,111,68,101,102,97,117,108,116,32,
-34,66,105,116,115,46,98,105,116,83,105,122,101,77,97,121,98,101,34,41,
-41,41,32,40,40,65,32,58,49,48,57,32,40,40,66,32,40,66,32,40,
-95,52,57,51,32,40,95,50,53,32,34,98,105,116,83,105,122,101,32,105,
-115,32,117,110,100,101,102,105,110,101,100,34,41,41,41,41,32,95,56,55,
-41,41,32,40,40,65,32,58,49,49,48,32,40,40,66,32,40,66,32,40,
-66,32,67,41,41,41,32,40,40,66,32,40,66,32,67,41,41,32,80,41,
-41,41,32,40,40,65,32,58,49,49,49,32,40,85,32,40,90,32,40,90,
-32,75,41,41,41,41,32,40,40,65,32,58,49,49,50,32,40,85,32,40,
-75,32,40,90,32,75,41,41,41,41,32,40,40,65,32,58,49,49,51,32,
-40,85,32,40,75,32,40,75,32,75,41,41,41,41,32,40,40,65,32,58,
-49,49,52,32,40,85,32,40,75,32,40,75,32,65,41,41,41,41,32,40,
-40,65,32,58,49,49,53,32,40,75,32,40,110,111,68,101,102,97,117,108,
-116,32,34,70,105,110,105,116,101,66,105,116,115,46,102,105,110,105,116,101,
-66,105,116,83,105,122,101,34,41,41,41,32,40,40,65,32,58,49,49,54,
-32,40,40,40,83,39,32,40,83,39,32,40,40,83,39,32,40,95,53,49,
-48,32,95,50,57,49,41,41,32,40,40,67,32,40,95,53,49,48,32,95,
-50,57,49,41,41,32,35,49,41,41,41,41,32,40,40,40,67,39,32,40,
-67,39,32,66,41,41,32,40,40,66,32,40,66,32,89,41,41,32,40,40,
-40,67,39,32,40,67,39,32,40,67,39,32,83,41,41,41,32,40,40,66,
-32,40,66,32,40,66,32,40,83,32,40,40,67,32,40,95,53,50,55,32,
-95,50,57,54,41,41,32,40,40,95,53,49,53,32,95,50,57,49,41,32,
-40,95,51,55,51,32,35,48,41,41,41,41,41,41,41,32,40,40,40,67,
-39,32,40,67,39,32,40,67,39,32,83,41,41,41,32,40,40,40,67,39,
-32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,83,41,41,32,
-40,40,66,32,95,55,57,41,32,95,49,49,49,41,41,41,32,40,40,67,
-32,66,41,32,40,40,67,32,40,95,53,49,48,32,95,50,57,49,41,41,
-32,35,49,41,41,41,41,32,73,41,41,41,32,73,41,41,41,32,40,40,
-67,32,40,95,53,49,48,32,95,50,57,49,41,41,32,35,49,41,41,41,
-32,95,49,49,50,41,41,32,40,40,65,32,58,49,49,55,32,40,40,40,
-67,39,32,40,67,39,32,89,41,41,32,40,40,40,67,39,32,40,67,39,
-32,40,67,39,32,83,41,41,41,32,40,40,40,83,39,32,40,83,39,32,
-66,41,41,32,40,40,66,32,40,66,32,83,41,41,32,40,40,66,32,40,
-66,32,40,67,32,40,95,53,51,48,32,95,50,57,54,41,41,41,41,32,
-95,49,49,50,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,
-39,32,83,41,41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,
-32,40,40,66,32,40,66,32,83,41,41,32,40,40,66,32,95,55,57,41,
-32,95,49,49,49,41,41,41,32,40,40,67,32,66,41,32,40,40,67,32,
-40,95,53,48,57,32,95,50,57,49,41,41,32,35,49,41,41,41,41,32,
-73,41,41,41,32,73,41,41,32,35,48,41,41,32,40,40,65,32,58,49,
-49,56,32,40,40,95,50,49,48,32,40,40,67,32,40,40,67,32,83,39,
-41,32,95,49,50,51,41,41,32,73,41,41,32,40,95,50,49,52,32,95,
-49,49,56,41,41,41,32,40,40,65,32,58,49,49,57,32,40,40,40,95,
-49,55,49,50,32,40,75,32,40,40,80,32,40,95,49,55,50,49,32,34,
-70,97,108,115,101,34,41,41,32,40,95,49,55,50,49,32,34,84,114,117,
-101,34,41,41,41,41,32,40,95,49,55,49,55,32,95,49,49,57,41,41,
-32,40,95,49,55,49,56,32,95,49,49,57,41,41,41,32,40,40,65,32,
-58,49,50,48,32,40,40,95,49,50,55,32,95,49,50,53,41,32,95,49,
-50,54,41,41,32,40,40,65,32,58,49,50,49,32,40,82,32,95,49,50,
-54,41,41,32,40,40,65,32,58,49,50,50,32,40,85,32,95,49,50,53,
-41,41,32,40,40,65,32,58,49,50,51,32,40,40,80,32,95,49,50,54,
-41,32,95,49,50,53,41,41,32,40,40,65,32,58,49,50,52,32,95,49,
-50,54,41,32,40,40,65,32,58,49,50,53,32,75,41,32,40,40,65,32,
-58,49,50,54,32,65,41,32,40,40,65,32,58,49,50,55,32,80,41,32,
-40,40,65,32,58,49,50,56,32,40,85,32,75,41,41,32,40,40,65,32,
-58,49,50,57,32,40,85,32,65,41,41,32,40,40,65,32,58,49,51,48,
-32,40,75,32,40,110,111,68,101,102,97,117,108,116,32,34,66,111,117,110,
-100,101,100,46,109,105,110,66,111,117,110,100,34,41,41,41,32,40,40,65,
-32,58,49,51,49,32,40,75,32,40,110,111,68,101,102,97,117,108,116,32,
-34,66,111,117,110,100,101,100,46,109,97,120,66,111,117,110,100,34,41,41,
-41,32,40,40,65,32,58,49,51,50,32,40,40,95,50,49,48,32,95,49,
-53,48,48,41,32,95,49,53,48,49,41,41,32,40,40,65,32,58,49,51,
-51,32,40,40,40,40,40,40,40,40,95,53,50,52,32,95,49,51,50,41,
-32,95,49,53,48,57,41,32,95,49,53,48,50,41,32,95,49,53,48,51,
-41,32,95,49,53,48,52,41,32,95,49,53,48,53,41,32,40,95,53,51,
-56,32,95,49,51,51,41,41,32,40,95,53,51,57,32,95,49,51,51,41,
-41,41,32,40,40,65,32,58,49,51,52,32,40,40,95,50,49,48,32,95,
-49,53,49,48,41,32,40,95,50,49,52,32,95,49,51,52,41,41,41,32,
-40,40,65,32,58,49,51,53,32,40,40,40,40,40,40,40,40,95,53,50,
-52,32,95,49,51,52,41,32,95,49,53,48,57,41,32,40,40,40,67,39,
-32,40,67,39,32,40,95,50,49,49,32,95,53,52,48,41,41,41,32,95,
-49,53,48,57,41,32,95,53,52,52,41,41,32,40,40,40,67,39,32,40,
-67,39,32,40,95,50,49,50,32,95,53,52,48,41,41,41,32,95,49,53,
-48,57,41,32,95,53,52,54,41,41,32,40,40,40,67,39,32,40,67,39,
-32,40,95,50,49,49,32,95,53,52,48,41,41,41,32,95,49,53,48,57,
-41,32,95,53,52,54,41,41,32,40,40,40,67,39,32,40,67,39,32,40,
-95,50,49,50,32,95,53,52,48,41,41,41,32,95,49,53,48,57,41,32,
-95,53,52,52,41,41,32,40,95,53,51,56,32,95,49,51,53,41,41,32,
-40,95,53,51,57,32,95,49,51,53,41,41,41,32,40,40,65,32,58,49,
-51,54,32,40,40,95,49,50,55,32,40,95,49,51,55,32,35,48,41,41,
-32,40,95,49,51,55,32,35,49,50,55,41,41,41,32,40,40,65,32,58,
-49,51,55,32,95,49,53,49,49,41,32,40,40,65,32,58,49,51,56,32,
-95,49,53,49,50,41,32,40,40,65,32,58,49,51,57,32,40,40,40,83,
-39,32,95,49,50,50,41,32,40,95,49,53,48,51,32,35,57,55,41,41,
-32,40,40,67,32,95,49,53,48,51,41,32,35,49,50,50,41,41,41,32,
-40,40,65,32,58,49,52,48,32,40,40,40,83,39,32,95,49,50,50,41,
-32,40,95,49,53,48,51,32,35,54,53,41,41,32,40,40,67,32,95,49,
-53,48,51,41,32,35,57,48,41,41,41,32,40,40,65,32,58,49,52,49,
-32,40,40,40,83,39,32,95,49,50,49,41,32,95,49,51,57,41,32,95,
-49,52,48,41,41,32,40,40,65,32,58,49,52,50,32,40,40,40,83,39,
-32,95,49,50,50,41,32,40,95,49,53,48,51,32,35,52,56,41,41,32,
-40,40,67,32,95,49,53,48,51,41,32,35,53,55,41,41,41,32,40,40,
-65,32,58,49,52,51,32,40,40,40,83,39,32,95,49,50,49,41,32,95,
-49,52,50,41,32,40,40,40,83,39,32,95,49,50,49,41,32,40,40,40,
-83,39,32,95,49,50,50,41,32,40,95,49,53,48,51,32,35,57,55,41,
-41,32,40,40,67,32,95,49,53,48,51,41,32,35,49,48,50,41,41,41,
-32,40,40,40,83,39,32,95,49,50,50,41,32,40,95,49,53,48,51,32,
-35,55,48,41,41,32,40,40,67,32,95,49,53,48,51,41,32,35,55,48,
-41,41,41,41,41,32,40,40,65,32,58,49,52,52,32,40,40,40,83,39,
-32,95,49,50,49,41,32,95,49,52,49,41,32,95,49,52,50,41,41,32,
-40,40,65,32,58,49,52,53,32,40,40,40,83,39,32,95,49,50,50,41,
-32,40,95,49,53,48,51,32,35,51,50,41,41,32,40,40,67,32,95,49,
-53,48,51,41,32,35,49,50,54,41,41,41,32,40,40,65,32,58,49,52,
-54,32,40,40,40,83,39,32,95,49,50,49,41,32,40,40,67,32,40,95,
-50,49,49,32,95,49,51,50,41,41,32,35,51,50,41,41,32,40,40,40,
-83,39,32,95,49,50,49,41,32,40,40,67,32,40,95,50,49,49,32,95,
-49,51,50,41,41,32,35,57,41,41,32,40,40,67,32,40,95,50,49,49,
-32,95,49,51,50,41,41,32,35,49,48,41,41,41,41,32,40,40,65,32,
-58,49,52,55,32,40,40,83,32,40,40,83,32,40,40,40,83,39,32,95,
-49,50,50,41,32,40,95,49,53,48,51,32,35,52,56,41,41,32,40,40,
-67,32,95,49,53,48,51,41,32,35,53,55,41,41,41,32,40,40,83,32,
-40,40,83,32,40,40,40,83,39,32,95,49,50,50,41,32,40,95,49,53,
-48,51,32,35,57,55,41,41,32,40,40,67,32,95,49,53,48,51,41,32,
-35,49,48,50,41,41,41,32,40,40,83,32,40,40,67,32,40,40,40,83,
-39,32,95,49,50,50,41,32,40,95,49,53,48,51,32,35,54,53,41,41,
-32,40,40,67,32,95,49,53,48,51,41,32,35,55,48,41,41,41,32,40,
-95,50,53,32,34,100,105,103,105,116,84,111,73,110,116,34,41,41,41,32,
-40,40,40,67,39,32,40,95,53,49,48,32,95,50,57,49,41,41,32,95,
-49,51,56,41,32,40,40,40,95,53,49,48,32,95,50,57,49,41,32,40,
-95,49,51,56,32,35,54,53,41,41,32,35,49,48,41,41,41,41,41,32,
-40,40,40,67,39,32,40,95,53,49,48,32,95,50,57,49,41,41,32,95,
-49,51,56,41,32,40,40,40,95,53,49,48,32,95,50,57,49,41,32,40,
-95,49,51,56,32,35,57,55,41,41,32,35,49,48,41,41,41,41,41,32,
-40,40,40,67,39,32,40,95,53,49,48,32,95,50,57,49,41,41,32,95,
-49,51,56,41,32,40,95,49,51,56,32,35,52,56,41,41,41,41,32,40,
-40,65,32,58,49,52,56,32,40,40,83,32,40,40,83,32,40,40,40,83,
-39,32,95,49,50,50,41,32,40,95,49,53,48,51,32,35,54,53,41,41,
-32,40,40,67,32,95,49,53,48,51,41,32,35,57,48,41,41,41,32,40,
-95,49,50,54,32,40,40,40,110,111,77,97,116,99,104,32,34,46,47,108,
-105,98,47,68,97,116,97,47,67,104,97,114,46,104,115,34,41,32,35,56,
-51,41,32,35,49,41,41,41,41,32,40,40,66,32,95,49,51,55,41,32,
-40,40,40,67,39,32,40,95,53,48,57,32,95,50,57,49,41,41,32,40,
-40,40,67,39,32,40,95,53,49,48,32,95,50,57,49,41,41,32,95,49,
-51,56,41,32,40,95,49,51,56,32,35,54,53,41,41,41,32,40,95,49,
-51,56,32,35,57,55,41,41,41,41,41,32,40,40,65,32,58,49,52,57,
-32,40,40,83,32,40,40,83,32,40,40,40,83,39,32,95,49,50,50,41,
-32,40,95,49,53,48,51,32,35,57,55,41,41,32,40,40,67,32,95,49,
-53,48,51,41,32,35,57,55,41,41,41,32,40,95,49,50,54,32,40,40,
-40,110,111,77,97,116,99,104,32,34,46,47,108,105,98,47,68,97,116,97,
-47,67,104,97,114,46,104,115,34,41,32,35,56,55,41,32,35,49,41,41,
-41,41,32,40,40,66,32,95,49,51,55,41,32,40,40,40,67,39,32,40,
-95,53,48,57,32,95,50,57,49,41,41,32,40,40,40,67,39,32,40,95,
-53,49,48,32,95,50,57,49,41,41,32,95,49,51,56,41,32,40,95,49,
-51,56,32,35,57,55,41,41,41,32,40,95,49,51,56,32,35,54,53,41,
-41,41,41,41,32,40,40,65,32,58,49,53,48,32,40,40,40,95,49,55,
-49,50,32,40,75,32,40,40,67,32,40,40,83,32,40,40,67,32,61,61,
-41,32,35,51,57,41,41,32,40,40,66,32,40,95,50,55,50,32,40,95,
-49,55,50,48,32,35,51,57,41,41,41,32,40,40,40,67,39,32,95,50,
-55,50,41,32,40,40,66,32,95,49,55,50,49,41,32,95,49,53,49,41,
-41,32,40,95,49,55,50,48,32,35,51,57,41,41,41,41,41,32,40,95,
-49,55,50,49,32,34,39,92,57,50,38,39,39,34,41,41,41,41,32,40,
-95,49,55,49,55,32,95,49,53,48,41,41,32,40,40,66,32,40,95,50,
-55,50,32,40,95,49,55,50,48,32,35,51,52,41,41,41,32,40,89,32,
-40,40,66,32,40,80,32,40,95,49,55,50,48,32,35,51,52,41,41,41,
-32,40,40,40,83,39,32,67,41,32,40,40,66,32,40,40,83,39,32,83,
-39,41,32,40,40,67,32,40,95,50,49,49,32,95,49,51,50,41,41,32,
-35,51,52,41,41,41,32,40,40,67,39,32,66,41,32,40,40,66,32,95,
-50,55,50,41,32,40,40,66,32,95,49,55,50,49,41,32,95,49,53,49,
-41,41,41,41,41,32,40,66,32,40,95,50,55,50,32,40,95,49,55,50,
-49,32,34,92,57,50,38,92,51,52,38,34,41,41,41,41,41,41,41,41,
-41,32,40,40,65,32,58,49,53,49,32,40,40,40,67,39,32,89,41,32,
-40,40,40,83,39,32,66,41,32,40,40,66,32,80,41,32,40,40,83,32,
-40,40,83,32,95,49,52,53,41,32,40,40,66,32,40,95,52,56,50,32,
-34,39,92,57,50,38,34,41,41,32,40,40,40,67,39,32,95,52,56,50,
-41,32,40,40,66,32,40,95,49,55,49,52,32,95,50,57,55,41,41,32,
-95,49,51,56,41,41,32,40,40,79,32,35,51,57,41,32,75,41,41,41,
-41,41,32,40,40,67,32,79,41,32,75,41,41,41,41,32,40,40,66,32,
-40,66,32,40,67,32,66,41,41,41,32,40,66,39,32,40,40,66,32,67,
-41,32,40,67,32,40,95,50,49,49,32,95,49,51,50,41,41,41,41,41,
-41,41,32,40,40,79,32,40,40,80,32,35,49,48,41,32,34,92,57,50,
-38,110,34,41,41,32,40,40,79,32,40,40,80,32,35,49,51,41,32,34,
-92,57,50,38,114,34,41,41,32,40,40,79,32,40,40,80,32,35,57,41,
-32,34,92,57,50,38,116,34,41,41,32,40,40,79,32,40,40,80,32,35,
-56,41,32,34,92,57,50,38,98,34,41,41,32,40,40,79,32,40,40,80,
-32,35,57,50,41,32,34,92,57,50,38,92,57,50,38,34,41,41,32,75,
-41,41,41,41,41,41,41,32,40,40,65,32,58,49,53,50,32,40,40,40,
-40,40,40,40,95,53,48,56,32,95,49,52,53,56,41,32,95,49,52,53,
-57,41,32,95,49,52,54,48,41,32,95,49,52,54,50,41,32,40,40,83,
-32,40,40,83,32,40,40,67,32,40,95,53,50,55,32,95,49,53,53,41,
-41,32,38,48,46,48,41,41,32,73,41,41,32,40,95,53,49,50,32,95,
-49,53,50,41,41,41,32,40,40,67,32,40,40,67,32,40,40,67,32,40,
-40,67,32,40,95,53,50,54,32,95,49,53,53,41,41,32,38,48,46,48,
-41,41,32,38,45,49,46,48,41,41,32,38,48,46,48,41,41,32,38,49,
-46,48,41,41,32,95,51,55,55,41,41,32,40,40,65,32,58,49,53,51,
-32,40,40,40,40,95,50,54,49,32,95,49,53,50,41,32,95,49,52,54,
-49,41,32,40,95,50,54,55,32,95,49,53,51,41,41,32,40,40,40,83,
-39,32,95,49,52,54,49,41,32,40,40,66,32,40,95,53,49,53,32,95,
-49,53,50,41,41,32,95,53,53,54,41,41,32,40,40,66,32,40,95,53,
-49,53,32,95,49,53,50,41,41,32,95,53,53,55,41,41,41,41,32,40,
-40,65,32,58,49,53,52,32,40,40,95,50,49,48,32,95,49,52,54,51,
-41,32,95,49,52,54,52,41,41,32,40,40,65,32,58,49,53,53,32,40,
-40,40,40,40,40,40,40,95,53,50,52,32,95,49,53,52,41,32,40,95,
-53,51,51,32,95,49,53,53,41,41,32,95,49,52,54,53,41,32,95,49,
-52,54,54,41,32,95,49,52,54,55,41,32,95,49,52,54,56,41,32,40,
-95,53,51,56,32,95,49,53,53,41,41,32,40,95,53,51,57,32,95,49,
-53,53,41,41,41,32,40,40,65,32,58,49,53,54,32,40,40,40,95,49,
-55,49,50,32,40,95,49,55,49,54,32,95,49,53,54,41,41,32,95,49,
-52,54,57,41,32,40,95,49,55,49,56,32,95,49,53,54,41,41,41,32,
-40,40,65,32,58,49,53,55,32,40,95,53,54,49,32,40,40,66,32,40,
-40,40,83,39,32,40,95,53,49,49,32,40,95,53,52,57,32,95,51,50,
-51,41,41,41,32,40,40,66,32,40,95,53,54,50,32,95,51,50,52,41,
-41,32,40,85,32,75,41,41,41,32,40,40,66,32,40,40,95,50,54,57,
-32,40,40,67,32,40,40,80,32,40,95,53,53,48,32,40,40,80,32,95,
-51,50,51,41,32,95,51,50,48,41,41,41,32,95,50,57,50,41,41,32,
-95,50,57,54,41,41,32,40,40,95,53,49,53,32,40,95,53,52,57,32,
-95,51,50,51,41,41,32,40,95,51,55,51,32,35,50,41,41,41,41,32,
-40,85,32,65,41,41,41,41,32,40,95,53,54,57,32,95,49,54,57,41,
-41,41,41,32,40,40,65,32,58,49,53,56,32,40,40,40,40,40,40,40,
-40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,95,50,49,53,
-32,95,49,53,51,41,32,40,40,95,50,54,53,32,95,49,53,51,41,32,
-40,40,95,53,54,48,32,40,95,51,55,51,32,35,51,49,52,49,53,57,
-50,54,53,51,53,56,57,55,57,51,41,41,32,40,95,51,55,51,32,35,
-49,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,41,41,41,41,
-32,40,40,66,32,95,49,53,49,57,41,32,95,49,54,48,41,41,32,40,
-40,66,32,95,49,53,49,57,41,32,95,49,53,57,41,41,32,40,40,66,
-32,95,49,53,49,57,41,32,95,49,54,49,41,41,32,40,95,50,52,51,
-32,95,49,53,56,41,41,32,40,95,50,52,52,32,95,49,53,56,41,41,
-32,40,40,66,32,95,49,53,49,57,41,32,95,49,54,50,41,41,32,40,
-40,66,32,95,49,53,49,57,41,32,95,49,54,51,41,41,32,40,40,66,
-32,95,49,53,49,57,41,32,95,49,54,52,41,41,32,40,40,66,32,95,
-49,53,49,57,41,32,95,49,54,53,41,41,32,40,40,66,32,95,49,53,
-49,57,41,32,95,49,54,54,41,41,32,40,40,66,32,95,49,53,49,57,
-41,32,95,49,54,55,41,41,32,40,95,50,53,49,32,95,49,53,56,41,
-41,32,40,95,50,53,50,32,95,49,53,56,41,41,32,40,95,50,53,51,
-32,95,49,53,56,41,41,32,40,95,50,53,52,32,95,49,53,56,41,41,
-32,40,95,50,53,53,32,95,49,53,56,41,41,32,40,95,50,53,54,32,
-95,49,53,56,41,41,32,40,95,50,53,55,32,95,49,53,56,41,41,32,
-40,95,50,53,56,32,95,49,53,56,41,41,32,40,95,50,53,57,32,95,
-49,53,56,41,41,32,40,95,50,54,48,32,95,49,53,56,41,41,41,32,
-40,40,65,32,58,49,53,57,32,94,108,111,103,41,32,40,40,65,32,58,
-49,54,48,32,94,101,120,112,41,32,40,40,65,32,58,49,54,49,32,94,
-115,113,114,116,41,32,40,40,65,32,58,49,54,50,32,94,115,105,110,41,
-32,40,40,65,32,58,49,54,51,32,94,99,111,115,41,32,40,40,65,32,
-58,49,54,52,32,94,116,97,110,41,32,40,40,65,32,58,49,54,53,32,
-94,97,115,105,110,41,32,40,40,65,32,58,49,54,54,32,94,97,99,111,
-115,41,32,40,40,65,32,58,49,54,55,32,94,97,116,97,110,41,32,40,
-40,65,32,58,49,54,56,32,94,97,116,97,110,50,41,32,40,40,65,32,
-58,49,54,57,32,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,
-95,53,54,52,32,40,40,67,32,40,40,80,32,95,49,53,51,41,32,95,
-49,53,53,41,41,32,95,49,53,56,41,41,32,40,75,32,40,95,51,55,
-51,32,35,50,41,41,41,32,40,75,32,40,40,95,49,55,48,32,40,40,
-95,53,49,53,32,95,50,57,49,41,32,40,95,51,55,51,32,35,50,52,
-41,41,41,32,40,40,95,53,49,53,32,95,50,57,49,41,32,40,95,51,
-55,51,32,35,53,51,41,41,41,41,41,32,40,75,32,40,40,95,49,55,
-48,32,40,40,80,32,40,40,95,53,49,53,32,95,50,57,49,41,32,40,
-95,51,55,51,32,35,45,49,50,53,41,41,41,32,40,40,95,53,49,53,
-32,95,50,57,49,41,32,40,95,51,55,51,32,35,49,50,56,41,41,41,
-41,32,40,40,80,32,40,40,95,53,49,53,32,95,50,57,49,41,32,40,
-95,51,55,51,32,35,45,49,48,50,49,41,41,41,32,40,40,95,53,49,
-53,32,95,50,57,49,41,32,40,95,51,55,51,32,35,49,48,50,52,41,
-41,41,41,41,41,32,40,40,95,49,55,48,32,95,49,55,55,41,32,95,
-49,55,49,41,41,32,40,40,95,49,55,48,32,95,49,56,50,41,32,95,
-49,55,54,41,41,32,40,95,53,56,53,32,95,49,54,57,41,41,32,40,
-95,53,56,54,32,95,49,54,57,41,41,32,40,95,53,56,55,32,95,49,
-54,57,41,41,32,40,40,95,49,55,48,32,95,49,55,56,41,32,95,49,
-55,50,41,41,32,40,40,95,49,55,48,32,95,49,55,57,41,32,95,49,
-55,51,41,41,32,40,40,95,49,55,48,32,95,49,56,48,41,32,95,49,
-55,52,41,41,32,40,40,95,49,55,48,32,95,49,56,49,41,32,95,49,
-55,53,41,41,32,40,75,32,95,49,50,54,41,41,32,40,40,66,32,40,
-66,32,95,49,53,49,57,41,41,32,95,49,54,56,41,41,41,32,40,40,
-65,32,58,49,55,48,32,40,67,32,40,40,40,95,50,49,49,32,95,50,
-57,53,41,32,95,49,53,51,49,41,32,35,51,50,41,41,41,32,40,40,
-65,32,58,49,55,49,32,40,40,66,32,40,40,83,32,40,40,40,83,39,
-32,67,41,32,40,40,66,32,40,40,67,39,32,67,41,32,40,40,40,83,
-39,32,40,83,39,32,67,41,41,32,40,40,66,32,40,66,32,40,83,32,
-40,40,67,32,40,95,50,49,49,32,95,54,50,53,41,41,32,35,48,41,
-41,41,41,32,40,40,40,67,39,32,40,67,39,32,67,41,41,32,40,40,
-66,32,40,66,32,40,83,32,40,40,67,32,40,95,50,49,49,32,95,54,
-50,53,41,41,32,35,50,48,52,55,41,41,41,41,32,40,40,40,67,39,
-32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,80,41,41,32,
-40,40,67,32,66,41,32,40,40,66,32,95,51,55,53,41,32,40,40,67,
-32,40,95,54,57,32,95,54,50,56,41,41,32,35,52,53,48,51,53,57,
-57,54,50,55,51,55,48,52,57,54,41,41,41,41,41,32,40,40,40,67,
-39,32,40,95,53,49,48,32,95,50,57,49,41,41,32,40,40,40,67,39,
-32,40,95,53,49,48,32,95,50,57,49,41,41,32,95,49,52,57,56,41,
-32,35,49,48,50,51,41,41,32,35,53,50,41,41,41,41,32,40,40,80,
-32,40,40,95,53,49,53,32,95,51,50,50,41,32,40,95,51,55,51,32,
-35,48,41,41,41,32,40,40,95,53,49,53,32,95,50,57,49,41,32,40,
-95,51,55,51,32,35,48,41,41,41,41,41,41,32,40,40,40,67,39,32,
-40,67,39,32,80,41,41,32,40,40,67,32,66,41,32,95,51,55,53,41,
-41,32,40,40,95,53,49,53,32,95,50,57,49,41,32,40,95,51,55,51,
-32,35,48,41,41,41,41,41,41,32,40,40,40,67,39,32,40,95,56,50,
-32,95,54,50,56,41,41,32,40,40,67,32,40,95,54,56,32,95,54,50,
-56,41,41,32,35,57,50,50,51,51,55,50,48,51,54,56,53,52,55,55,
-53,56,48,55,41,41,32,35,53,50,41,41,41,32,40,40,67,32,40,95,
-54,56,32,95,54,50,56,41,41,32,35,52,53,48,51,53,57,57,54,50,
-55,51,55,48,52,57,53,41,41,41,32,40,40,67,32,40,40,67,32,40,
-40,40,67,39,32,40,95,50,49,50,32,95,54,50,53,41,41,32,40,40,
-67,32,40,95,54,56,32,95,54,50,56,41,41,32,35,45,57,50,50,51,
-51,55,50,48,51,54,56,53,52,55,55,53,56,48,56,41,41,32,35,48,
-41,41,32,95,50,55,51,41,41,32,40,95,53,49,50,32,95,51,50,50,
-41,41,41,41,32,95,49,52,56,53,41,41,32,40,40,65,32,58,49,55,
-50,32,40,40,66,32,40,40,40,83,39,32,95,49,50,50,41,32,40,40,
-40,67,39,32,40,95,50,49,49,32,95,54,50,53,41,41,32,40,40,40,
-67,39,32,40,95,56,50,32,95,54,50,56,41,41,32,40,40,67,32,40,
-95,54,56,32,95,54,50,56,41,41,32,35,57,50,50,51,51,55,50,48,
-51,54,56,53,52,55,55,53,56,48,55,41,41,32,35,53,50,41,41,32,
-35,50,48,52,55,41,41,32,40,40,40,67,39,32,40,95,50,49,50,32,
-95,54,50,53,41,41,32,40,40,67,32,40,95,54,56,32,95,54,50,56,
-41,41,32,35,52,53,48,51,53,57,57,54,50,55,51,55,48,52,57,53,
-41,41,32,35,48,41,41,41,32,95,49,52,56,53,41,41,32,40,40,65,
-32,58,49,55,51,32,40,40,66,32,40,40,40,83,39,32,95,49,50,50,
-41,32,40,40,40,67,39,32,40,95,50,49,49,32,95,54,50,53,41,41,
-32,40,40,40,67,39,32,40,95,56,50,32,95,54,50,56,41,41,32,40,
-40,67,32,40,95,54,56,32,95,54,50,56,41,41,32,35,57,50,50,51,
-51,55,50,48,51,54,56,53,52,55,55,53,56,48,55,41,41,32,35,53,
-50,41,41,32,35,50,48,52,55,41,41,32,40,40,40,67,39,32,40,95,
-50,49,49,32,95,54,50,53,41,41,32,40,40,67,32,40,95,54,56,32,
-95,54,50,56,41,41,32,35,52,53,48,51,53,57,57,54,50,55,51,55,
-48,52,57,53,41,41,32,35,48,41,41,41,32,95,49,52,56,53,41,41,
-32,40,40,65,32,58,49,55,52,32,40,40,66,32,40,40,40,83,39,32,
-95,49,50,50,41,32,40,40,40,67,39,32,40,95,50,49,49,32,95,54,
-50,53,41,41,32,40,40,40,67,39,32,40,95,56,50,32,95,54,50,56,
-41,41,32,40,40,67,32,40,95,54,56,32,95,54,50,56,41,41,32,35,
-57,50,50,51,51,55,50,48,51,54,56,53,52,55,55,53,56,48,55,41,
-41,32,35,53,50,41,41,32,35,48,41,41,32,40,40,40,67,39,32,40,
-95,50,49,50,32,95,54,50,53,41,41,32,40,40,67,32,40,95,54,56,
-32,95,54,50,56,41,41,32,35,52,53,48,51,53,57,57,54,50,55,51,
-55,48,52,57,53,41,41,32,35,48,41,41,41,32,95,49,52,56,53,41,
-41,32,40,40,65,32,58,49,55,53,32,40,40,66,32,40,40,40,83,39,
-32,95,49,50,50,41,32,40,40,40,67,39,32,40,95,50,49,50,32,95,
-54,50,53,41,41,32,40,40,67,32,40,95,54,56,32,95,54,50,56,41,
-41,32,35,45,57,50,50,51,51,55,50,48,51,54,56,53,52,55,55,53,
-56,48,56,41,41,32,35,48,41,41,32,40,40,40,67,39,32,40,95,50,
-49,49,32,95,54,50,53,41,41,32,40,40,67,32,40,95,54,56,32,95,
-54,50,56,41,41,32,35,57,50,50,51,51,55,50,48,51,54,56,53,52,
-55,55,53,56,48,55,41,41,32,35,48,41,41,41,32,95,49,52,56,53,
-41,41,32,40,40,65,32,58,49,55,54,32,40,40,40,67,39,32,66,41,
-32,40,40,66,32,40,95,53,49,49,32,95,49,53,50,41,41,32,40,95,
-53,49,53,32,95,49,53,50,41,41,41,32,40,40,95,50,54,57,32,40,
-40,67,32,40,40,80,32,95,49,53,51,41,32,95,50,57,50,41,41,32,
-95,50,57,54,41,41,32,40,40,95,53,49,53,32,95,49,53,50,41,32,
-40,95,51,55,51,32,35,50,41,41,41,41,41,32,40,40,65,32,58,49,
-55,55,32,40,40,66,32,40,40,83,32,40,40,40,83,39,32,67,41,32,
-40,40,66,32,40,40,67,39,32,67,41,32,40,40,40,83,39,32,40,83,
-39,32,67,41,41,32,40,40,66,32,40,66,32,40,83,32,40,40,67,32,
-40,95,50,49,49,32,95,54,50,53,41,41,32,35,48,41,41,41,41,32,
-40,40,40,67,39,32,40,67,39,32,67,41,41,32,40,40,66,32,40,66,
-32,40,83,32,40,40,67,32,40,95,50,49,49,32,95,54,50,53,41,41,
-32,35,50,53,53,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,
-66,41,41,32,40,40,66,32,40,66,32,80,41,41,32,40,40,67,32,66,
-41,32,40,40,66,32,95,51,55,53,41,32,40,40,67,32,40,95,54,57,
-32,95,54,50,56,41,41,32,35,52,49,57,52,51,48,52,41,41,41,41,
-41,32,40,40,40,67,39,32,40,95,53,49,48,32,95,50,57,49,41,41,
-32,40,40,40,67,39,32,40,95,53,49,48,32,95,50,57,49,41,41,32,
-95,49,52,57,56,41,32,35,49,50,55,41,41,32,35,50,50,41,41,41,
-41,32,40,40,80,32,40,40,95,53,49,53,32,95,51,50,50,41,32,40,
-95,51,55,51,32,35,48,41,41,41,32,40,40,95,53,49,53,32,95,50,
-57,49,41,32,40,95,51,55,51,32,35,48,41,41,41,41,41,41,32,40,
-40,40,67,39,32,40,67,39,32,80,41,41,32,40,40,67,32,66,41,32,
-95,51,55,53,41,41,32,40,40,95,53,49,53,32,95,50,57,49,41,32,
-40,95,51,55,51,32,35,48,41,41,41,41,41,41,32,40,40,40,67,39,
-32,40,95,56,50,32,95,54,50,56,41,41,32,40,40,67,32,40,95,54,
-56,32,95,54,50,56,41,41,32,35,50,49,52,55,52,56,51,54,52,55,
-41,41,32,35,50,51,41,41,41,32,40,40,67,32,40,95,54,56,32,95,
-54,50,56,41,41,32,35,56,51,56,56,54,48,55,41,41,41,32,40,40,
-67,32,40,40,67,32,40,40,40,67,39,32,40,95,50,49,50,32,95,54,
-50,53,41,41,32,40,40,67,32,40,95,54,56,32,95,54,50,56,41,41,
-32,35,50,49,52,55,52,56,51,54,52,56,41,41,32,35,48,41,41,32,
-95,50,55,51,41,41,32,40,95,53,49,50,32,95,51,50,50,41,41,41,
-41,32,95,49,52,56,53,41,41,32,40,40,65,32,58,49,55,56,32,40,
-40,66,32,40,40,40,83,39,32,95,49,50,50,41,32,40,40,40,67,39,
-32,40,95,50,49,49,32,95,54,50,53,41,41,32,40,40,40,67,39,32,
-40,95,56,50,32,95,54,50,56,41,41,32,40,40,67,32,40,95,54,56,
-32,95,54,50,56,41,41,32,35,50,49,52,55,52,56,51,54,52,55,41,
-41,32,35,50,51,41,41,32,35,50,53,53,41,41,32,40,40,40,67,39,
-32,40,95,50,49,50,32,95,54,50,53,41,41,32,40,40,67,32,40,95,
-54,56,32,95,54,50,56,41,41,32,35,56,51,56,56,54,48,55,41,41,
-32,35,48,41,41,41,32,95,49,52,56,53,41,41,32,40,40,65,32,58,
-49,55,57,32,40,40,66,32,40,40,40,83,39,32,95,49,50,50,41,32,
-40,40,40,67,39,32,40,95,50,49,49,32,95,54,50,53,41,41,32,40,
-40,40,67,39,32,40,95,56,50,32,95,54,50,56,41,41,32,40,40,67,
-32,40,95,54,56,32,95,54,50,56,41,41,32,35,50,49,52,55,52,56,
-51,54,52,55,41,41,32,35,50,51,41,41,32,35,50,48,52,55,41,41,
-32,40,40,40,67,39,32,40,95,50,49,49,32,95,54,50,53,41,41,32,
-40,40,67,32,40,95,54,56,32,95,54,50,56,41,41,32,35,56,51,56,
-56,54,48,55,41,41,32,35,48,41,41,41,32,95,49,52,56,53,41,41,
-32,40,40,65,32,58,49,56,48,32,40,40,66,32,40,40,40,83,39,32,
-95,49,50,50,41,32,40,40,40,67,39,32,40,95,50,49,49,32,95,54,
-50,53,41,41,32,40,40,40,67,39,32,40,95,56,50,32,95,54,50,56,
-41,41,32,40,40,67,32,40,95,54,56,32,95,54,50,56,41,41,32,35,
-50,49,52,55,52,56,51,54,52,55,41,41,32,35,50,51,41,41,32,35,
-48,41,41,32,40,40,40,67,39,32,40,95,50,49,50,32,95,54,50,53,
-41,41,32,40,40,67,32,40,95,54,56,32,95,54,50,56,41,41,32,35,
-56,51,56,56,54,48,55,41,41,32,35,48,41,41,41,32,95,49,52,56,
-53,41,41,32,40,40,65,32,58,49,56,49,32,40,40,66,32,40,40,40,
-83,39,32,95,49,50,50,41,32,40,40,40,67,39,32,40,95,50,49,50,
-32,95,54,50,53,41,41,32,40,40,67,32,40,95,54,56,32,95,54,50,
-56,41,41,32,35,50,49,52,55,52,56,51,54,52,56,41,41,32,35,48,
-41,41,32,40,40,40,67,39,32,40,95,50,49,49,32,95,54,50,53,41,
-41,32,40,40,67,32,40,95,54,56,32,95,54,50,56,41,41,32,35,50,
-49,52,55,52,56,51,54,52,55,41,41,32,35,48,41,41,41,32,95,49,
-52,56,53,41,41,32,40,40,65,32,58,49,56,50,32,40,40,40,67,39,
-32,66,41,32,40,40,66,32,40,95,53,49,49,32,95,49,53,50,41,41,
-32,40,95,53,49,53,32,95,49,53,50,41,41,41,32,40,40,95,50,54,
-57,32,40,40,67,32,40,40,80,32,95,49,53,51,41,32,95,50,57,50,
-41,41,32,95,50,57,54,41,41,32,40,40,95,53,49,53,32,95,49,53,
-50,41,32,40,95,51,55,51,32,35,50,41,41,41,41,41,32,40,40,65,
-32,58,49,56,51,32,40,40,66,32,90,41,32,85,41,41,32,40,40,65,
-32,58,49,56,52,32,40,90,32,85,41,41,32,40,40,65,32,58,49,56,
-53,32,40,40,40,83,39,32,95,50,49,48,41,32,40,40,40,83,39,32,
-67,41,32,40,40,66,32,40,67,32,83,39,41,41,32,40,40,40,67,39,
-32,67,41,32,40,40,66,32,40,67,32,67,39,41,41,32,40,40,66,32,
-95,50,49,49,41,32,40,85,32,75,41,41,41,41,32,40,75,32,95,49,
-50,53,41,41,41,41,32,40,40,66,32,40,40,67,39,32,66,41,32,40,
-85,32,40,75,32,95,49,50,53,41,41,41,41,32,40,40,66,32,95,50,
-49,49,41,32,40,85,32,65,41,41,41,41,41,32,40,40,66,32,95,50,
-49,52,41,32,40,40,66,32,95,49,56,53,41,32,40,40,40,83,39,32,
-80,41,32,40,85,32,75,41,41,32,40,85,32,65,41,41,41,41,41,41,
-32,40,40,65,32,58,49,56,54,32,80,41,32,40,40,65,32,58,49,56,
-55,32,40,40,83,32,40,40,40,83,39,32,95,49,55,49,50,41,32,40,
-40,40,83,39,32,40,83,39,32,80,41,41,32,40,40,66,32,40,40,67,
-39,32,66,41,32,40,40,66,32,95,49,55,50,50,41,32,40,40,67,32,
-40,95,53,51,48,32,95,50,57,54,41,41,32,95,49,55,50,53,41,41,
-41,41,32,40,40,66,32,40,66,32,40,95,50,55,50,32,40,95,49,55,
-50,49,32,34,76,101,102,116,32,34,41,41,41,41,32,40,40,40,67,39,
-32,95,49,55,49,51,41,32,40,85,32,75,41,41,32,95,49,55,50,53,
-41,41,41,41,32,40,40,66,32,40,40,67,39,32,66,41,32,40,40,66,
-32,95,49,55,50,50,41,32,40,40,67,32,40,95,53,51,48,32,95,50,
-57,54,41,41,32,95,49,55,50,53,41,41,41,41,32,40,40,66,32,40,
-66,32,40,95,50,55,50,32,40,95,49,55,50,49,32,34,82,105,103,104,
-116,32,34,41,41,41,41,32,40,40,40,67,39,32,95,49,55,49,51,41,
-32,40,85,32,65,41,41,32,95,49,55,50,53,41,41,41,41,41,32,40,
-40,66,32,95,49,55,49,55,41,32,40,40,66,32,95,49,56,55,41,32,
-40,40,40,83,39,32,80,41,32,40,85,32,75,41,41,32,40,85,32,65,
-41,41,41,41,41,41,32,40,40,66,32,95,49,55,49,56,41,32,40,40,
-66,32,95,49,56,55,41,32,40,40,40,83,39,32,80,41,32,40,85,32,
-75,41,41,32,40,85,32,65,41,41,41,41,41,41,32,40,40,65,32,58,
-49,56,56,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
-40,66,32,40,66,32,67,41,41,41,41,41,41,41,32,40,40,66,32,40,
-66,32,40,66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,41,
-41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,67,41,
-41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,67,41,
-41,41,41,32,40,40,66,32,40,66,32,40,66,32,67,41,41,41,32,40,
-40,66,32,40,66,32,67,41,41,32,80,41,41,41,41,41,41,41,32,40,
-40,65,32,58,49,56,57,32,40,85,32,40,90,32,40,90,32,40,90,32,
-40,90,32,40,90,32,40,90,32,75,41,41,41,41,41,41,41,41,32,40,
-40,65,32,58,49,57,48,32,40,85,32,40,75,32,40,90,32,40,90,32,
-40,90,32,40,90,32,40,90,32,75,41,41,41,41,41,41,41,41,32,40,
-40,65,32,58,49,57,49,32,40,85,32,40,75,32,40,75,32,40,90,32,
-40,90,32,40,90,32,40,90,32,75,41,41,41,41,41,41,41,41,32,40,
-40,65,32,58,49,57,50,32,40,85,32,40,75,32,40,75,32,40,75,32,
-40,90,32,40,90,32,40,90,32,75,41,41,41,41,41,41,41,41,32,40,
-40,65,32,58,49,57,51,32,40,85,32,40,75,32,40,75,32,40,75,32,
-40,75,32,40,90,32,40,90,32,75,41,41,41,41,41,41,41,41,32,40,
-40,65,32,58,49,57,52,32,40,85,32,40,75,32,40,75,32,40,75,32,
-40,75,32,40,75,32,40,90,32,75,41,41,41,41,41,41,41,41,32,40,
-40,65,32,58,49,57,53,32,40,85,32,40,75,32,40,75,32,40,75,32,
-40,75,32,40,75,32,40,75,32,75,41,41,41,41,41,41,41,41,32,40,
-40,65,32,58,49,57,54,32,40,85,32,40,75,32,40,75,32,40,75,32,
-40,75,32,40,75,32,40,75,32,65,41,41,41,41,41,41,41,41,32,40,
-40,65,32,58,49,57,55,32,40,40,40,83,39,32,95,50,55,50,41,32,
-95,49,57,49,41,32,40,40,66,32,40,95,50,55,50,32,40,40,67,32,
-40,95,53,48,57,32,95,50,57,49,41,41,32,40,40,95,53,49,53,32,
-95,50,57,49,41,32,40,95,51,55,51,32,35,49,41,41,41,41,41,32,
-95,49,57,50,41,41,41,32,40,40,65,32,58,49,57,56,32,40,40,40,
-83,39,32,95,50,55,50,41,32,95,49,57,49,41,32,40,40,66,32,40,
-95,50,55,50,32,40,40,95,53,50,51,32,95,50,57,49,41,32,40,40,
-95,53,49,53,32,95,50,57,49,41,32,40,95,51,55,51,32,35,49,41,
-41,41,41,41,32,95,49,57,50,41,41,41,32,40,40,65,32,58,49,57,
-57,32,40,75,32,40,110,111,68,101,102,97,117,108,116,32,34,69,110,117,
-109,46,116,111,69,110,117,109,34,41,41,41,32,40,40,65,32,58,50,48,
-48,32,40,75,32,40,110,111,68,101,102,97,117,108,116,32,34,69,110,117,
-109,46,102,114,111,109,69,110,117,109,34,41,41,41,32,40,40,65,32,58,
-50,48,49,32,40,40,40,83,39,32,66,41,32,40,40,66,32,95,52,49,
-50,41,32,95,49,57,49,41,41,32,40,40,66,32,40,66,32,40,95,49,
-57,51,32,95,50,48,55,41,41,41,32,95,49,57,50,41,41,41,32,40,
-40,65,32,58,50,48,50,32,40,40,40,83,39,32,66,41,32,40,66,39,
-32,40,40,66,32,95,52,49,50,41,32,95,49,57,49,41,41,41,32,40,
-40,40,83,39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,
-40,95,49,57,52,32,95,50,48,55,41,41,41,32,95,49,57,50,41,41,
-32,95,49,57,50,41,41,41,32,40,40,65,32,58,50,48,51,32,40,40,
-40,83,39,32,66,41,32,40,66,39,32,40,40,66,32,95,52,49,50,41,
-32,95,49,57,49,41,41,41,32,40,40,40,83,39,32,40,67,39,32,66,
-41,41,32,40,40,66,32,40,66,32,40,95,49,57,53,32,95,50,48,55,
-41,41,41,32,95,49,57,50,41,41,32,95,49,57,50,41,41,41,32,40,
-40,65,32,58,50,48,52,32,40,40,40,83,39,32,66,41,32,40,66,39,
-32,40,66,39,32,40,40,66,32,95,52,49,50,41,32,95,49,57,49,41,
-41,41,41,32,40,40,40,83,39,32,40,67,39,32,40,67,39,32,66,41,
-41,41,32,40,40,40,83,39,32,40,67,39,32,66,41,41,32,40,40,66,
-32,40,66,32,40,95,49,57,54,32,95,50,48,55,41,41,41,32,95,49,
-57,50,41,41,32,95,49,57,50,41,41,32,95,49,57,50,41,41,41,32,
-40,40,65,32,58,50,48,53,32,40,40,40,83,39,32,66,41,32,40,40,
-66,32,95,52,49,50,41,32,40,40,66,32,95,49,57,49,41,32,40,85,
-32,75,41,41,41,41,32,40,40,40,83,39,32,40,83,39,32,40,95,49,
-57,53,32,95,50,48,55,41,41,41,32,40,40,66,32,95,49,57,50,41,
-32,40,85,32,75,41,41,41,32,40,40,40,83,39,32,66,41,32,40,40,
-66,32,95,49,57,50,41,32,40,85,32,75,41,41,41,32,40,40,66,32,
-95,50,55,57,41,32,40,40,66,32,95,49,50,57,41,32,40,85,32,65,
-41,41,41,41,41,41,41,32,40,40,65,32,58,50,48,54,32,40,40,40,
-83,39,32,40,67,39,32,66,41,41,32,40,40,40,83,39,32,40,83,39,
-32,67,41,41,32,40,40,40,83,39,32,40,83,39,32,40,83,39,32,83,
-41,41,41,32,40,40,66,32,40,66,32,40,40,83,39,32,83,41,32,40,
-95,53,51,48,32,95,50,57,54,41,41,41,41,32,40,40,40,83,39,32,
-66,41,32,40,66,39,32,40,66,39,32,40,40,66,32,95,52,49,50,41,
-32,40,40,66,32,95,49,57,49,41,32,40,85,32,75,41,41,41,41,41,
-41,32,40,40,66,32,40,66,32,40,40,67,39,32,67,41,32,40,67,32,
-40,95,49,57,54,32,95,50,48,55,41,41,41,41,41,32,40,40,40,83,
-39,32,66,41,32,40,40,66,32,95,49,57,50,41,32,40,85,32,75,41,
-41,41,32,40,40,66,32,95,50,55,57,41,32,40,40,66,32,95,49,50,
-56,41,32,40,85,32,65,41,41,41,41,41,41,41,41,32,40,40,40,83,
-39,32,66,41,32,40,66,39,32,40,66,39,32,40,40,66,32,95,52,49,
-50,41,32,40,40,66,32,95,49,57,49,41,32,40,85,32,75,41,41,41,
-41,41,41,32,40,40,66,32,40,66,32,40,40,67,39,32,67,41,32,40,
-67,32,40,95,49,57,54,32,95,50,48,55,41,41,41,41,41,32,40,40,
-40,83,39,32,66,41,32,40,40,66,32,95,49,57,50,41,32,40,85,32,
-75,41,41,41,32,40,40,66,32,95,50,55,57,41,32,40,40,66,32,95,
-49,50,57,41,32,40,85,32,65,41,41,41,41,41,41,41,41,32,40,40,
-66,32,95,49,57,50,41,32,40,85,32,75,41,41,41,41,32,40,40,66,
-32,95,49,57,50,41,32,40,85,32,75,41,41,41,41,32,40,40,65,32,
-58,50,48,55,32,40,40,40,40,40,40,40,40,95,49,56,56,32,40,40,
-67,32,40,95,53,48,57,32,95,50,57,49,41,41,32,40,40,95,53,49,
-53,32,95,50,57,49,41,32,40,95,51,55,51,32,35,49,41,41,41,41,
-32,40,40,67,32,40,95,53,49,48,32,95,50,57,49,41,41,32,40,40,
-95,53,49,53,32,95,50,57,49,41,32,40,95,51,55,51,32,35,49,41,
-41,41,41,32,73,41,32,73,41,32,40,40,83,32,95,52,56,49,41,32,
-40,40,66,32,40,95,49,57,51,32,95,50,48,55,41,41,32,40,40,67,
-32,40,95,53,48,57,32,95,50,57,49,41,41,32,35,49,41,41,41,41,
-32,40,40,40,83,39,32,40,67,39,32,89,41,41,32,40,40,66,32,40,
-66,32,40,66,32,40,83,32,95,52,56,49,41,41,41,41,32,40,40,66,
-32,40,66,32,40,67,32,66,41,41,41,32,40,40,66,32,40,66,32,40,
-67,32,40,95,53,48,57,32,95,50,57,49,41,41,41,41,32,40,67,32,
-40,95,53,49,48,32,95,50,57,49,41,41,41,41,41,41,32,73,41,41,
-32,40,40,66,32,40,40,67,39,32,95,52,52,51,41,32,40,67,32,40,
-95,53,50,56,32,95,50,57,54,41,41,41,41,32,40,95,49,57,51,32,
-95,50,48,55,41,41,41,32,40,40,40,83,39,32,83,41,32,40,40,40,
-83,39,32,40,83,39,32,83,39,41,41,32,40,67,32,40,95,53,50,57,
-32,95,50,57,54,41,41,41,32,40,40,66,32,40,66,32,40,40,67,39,
-32,95,52,52,51,41,32,40,67,32,40,95,53,51,48,32,95,50,57,54,
-41,41,41,41,41,32,40,95,49,57,52,32,95,50,48,55,41,41,41,41,
-32,40,40,66,32,40,66,32,40,40,67,39,32,95,52,52,51,41,32,40,
-67,32,40,95,53,50,56,32,95,50,57,54,41,41,41,41,41,32,40,95,
-49,57,52,32,95,50,48,55,41,41,41,41,41,32,40,40,65,32,58,50,
-48,56,32,40,40,40,40,40,40,40,40,95,49,56,56,32,40,95,49,57,
-55,32,95,50,48,56,41,41,32,40,95,49,57,56,32,95,50,48,56,41,
-41,32,40,40,67,32,40,40,83,32,40,40,67,32,61,61,41,32,35,48,
-41,41,32,40,40,67,32,40,40,67,32,40,40,67,32,61,61,41,32,35,
-49,41,41,32,40,95,50,53,32,34,69,110,117,109,46,66,111,111,108,46,
-116,111,69,110,117,109,58,32,98,97,100,32,97,114,103,34,41,41,41,32,
-95,49,50,54,41,41,41,32,95,49,50,53,41,41,32,40,40,80,32,35,
-48,41,32,35,49,41,41,32,40,95,50,48,49,32,95,50,48,56,41,41,
-32,40,95,50,48,50,32,95,50,48,56,41,41,32,40,95,50,48,51,32,
-95,50,48,56,41,41,32,40,95,50,48,52,32,95,50,48,56,41,41,41,
-32,40,40,65,32,58,50,48,57,32,40,40,40,40,40,40,40,40,95,49,
-56,56,32,40,95,49,57,55,32,95,50,48,57,41,41,32,40,95,49,57,
-56,32,95,50,48,57,41,41,32,95,49,53,49,49,41,32,95,49,53,49,
-50,41,32,40,95,50,48,49,32,95,50,48,57,41,41,32,40,95,50,48,
-50,32,95,50,48,57,41,41,32,40,95,50,48,51,32,95,50,48,57,41,
-41,32,40,95,50,48,52,32,95,50,48,57,41,41,41,32,40,40,65,32,
-58,50,49,48,32,80,41,32,40,40,65,32,58,50,49,49,32,40,85,32,
-75,41,41,32,40,40,65,32,58,50,49,50,32,40,85,32,65,41,41,32,
-40,40,65,32,58,50,49,51,32,40,75,32,40,110,111,68,101,102,97,117,
-108,116,32,34,69,113,46,61,61,34,41,41,41,32,40,40,65,32,58,50,
-49,52,32,40,40,40,67,39,32,40,67,39,32,67,41,41,32,40,40,40,
-67,39,32,40,67,39,32,67,41,41,32,95,50,49,49,41,32,95,49,50,
-54,41,41,32,95,49,50,53,41,41,32,40,40,65,32,58,50,49,53,32,
-40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
-66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
-40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
-32,40,66,32,40,66,32,67,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,
-32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
-66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
-40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,
-66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
-40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
-32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,67,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
-40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
-32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,67,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,
-40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
-66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
-40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,
-66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
-40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
-32,40,66,32,40,66,32,67,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,
-66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
-40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,
-40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
-32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,67,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,
-40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
-32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,67,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,
-66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
-40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,
-41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
-40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
-32,40,66,32,40,66,32,67,41,41,41,41,41,41,41,41,41,41,41,41,
-32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
-40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,
-41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,
-32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,67,
-41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,
-32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,67,
-41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
-40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,
-41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
-32,40,66,32,40,66,32,67,41,41,41,41,41,41,41,32,40,40,66,32,
-40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,
-41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,67,
-41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,67,
-41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,67,41,41,41,32,
-40,40,66,32,40,66,32,67,41,41,32,80,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,
-50,49,54,32,40,85,32,40,90,32,40,90,32,40,90,32,40,90,32,40,
-90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,
-40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,
-32,40,90,32,40,90,32,40,90,32,75,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,
-50,49,55,32,40,85,32,40,75,32,40,90,32,40,90,32,40,90,32,40,
-90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,
-40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,
-32,40,90,32,40,90,32,40,90,32,75,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,
-50,49,56,32,40,85,32,40,75,32,40,75,32,40,90,32,40,90,32,40,
-90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,
-40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,
-32,40,90,32,40,90,32,40,90,32,75,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,
-50,49,57,32,40,85,32,40,75,32,40,75,32,40,75,32,40,90,32,40,
-90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,
-40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,
-32,40,90,32,40,90,32,40,90,32,75,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,
-50,50,48,32,40,85,32,40,75,32,40,75,32,40,75,32,40,75,32,40,
-90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,
-40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,
-32,40,90,32,40,90,32,40,90,32,75,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,
-50,50,49,32,40,85,32,40,75,32,40,75,32,40,75,32,40,75,32,40,
-75,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,
-40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,
-32,40,90,32,40,90,32,40,90,32,75,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,
-50,50,50,32,40,85,32,40,75,32,40,75,32,40,75,32,40,75,32,40,
-75,32,40,75,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,
-40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,
-32,40,90,32,40,90,32,40,90,32,75,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,
-50,50,51,32,40,85,32,40,75,32,40,75,32,40,75,32,40,75,32,40,
-75,32,40,75,32,40,75,32,40,90,32,40,90,32,40,90,32,40,90,32,
-40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,
-32,40,90,32,40,90,32,40,90,32,75,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,
-50,50,52,32,40,85,32,40,75,32,40,75,32,40,75,32,40,75,32,40,
-75,32,40,75,32,40,75,32,40,75,32,40,90,32,40,90,32,40,90,32,
-40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,
-32,40,90,32,40,90,32,40,90,32,75,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,
-50,50,53,32,40,85,32,40,75,32,40,75,32,40,75,32,40,75,32,40,
-75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,90,32,40,90,32,
-40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,
-32,40,90,32,40,90,32,40,90,32,75,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,
-50,50,54,32,40,85,32,40,75,32,40,75,32,40,75,32,40,75,32,40,
-75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,90,32,
-40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,
-32,40,90,32,40,90,32,40,90,32,75,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,
-50,50,55,32,40,85,32,40,75,32,40,75,32,40,75,32,40,75,32,40,
-75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,
-40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,
-32,40,90,32,40,90,32,40,90,32,75,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,
-50,50,56,32,40,85,32,40,75,32,40,75,32,40,75,32,40,75,32,40,
-75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,
-40,75,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,
-32,40,90,32,40,90,32,40,90,32,75,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,
-50,50,57,32,40,85,32,40,75,32,40,75,32,40,75,32,40,75,32,40,
-75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,
-40,75,32,40,75,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,
-32,40,90,32,40,90,32,40,90,32,75,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,
-50,51,48,32,40,85,32,40,75,32,40,75,32,40,75,32,40,75,32,40,
-75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,
-40,75,32,40,75,32,40,75,32,40,90,32,40,90,32,40,90,32,40,90,
-32,40,90,32,40,90,32,40,90,32,75,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,
-50,51,49,32,40,85,32,40,75,32,40,75,32,40,75,32,40,75,32,40,
-75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,
-40,75,32,40,75,32,40,75,32,40,75,32,40,90,32,40,90,32,40,90,
-32,40,90,32,40,90,32,40,90,32,75,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,
-50,51,50,32,40,85,32,40,75,32,40,75,32,40,75,32,40,75,32,40,
-75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,
-40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,90,32,40,90,
-32,40,90,32,40,90,32,40,90,32,75,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,
-50,51,51,32,40,85,32,40,75,32,40,75,32,40,75,32,40,75,32,40,
-75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,
-40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,90,
-32,40,90,32,40,90,32,40,90,32,75,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,
-50,51,52,32,40,85,32,40,75,32,40,75,32,40,75,32,40,75,32,40,
-75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,
-40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,
-32,40,90,32,40,90,32,40,90,32,75,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,
-50,51,53,32,40,85,32,40,75,32,40,75,32,40,75,32,40,75,32,40,
-75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,
-40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,
-32,40,75,32,40,90,32,40,90,32,75,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,
-50,51,54,32,40,85,32,40,75,32,40,75,32,40,75,32,40,75,32,40,
-75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,
-40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,
-32,40,75,32,40,75,32,40,90,32,75,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,
-50,51,55,32,40,85,32,40,75,32,40,75,32,40,75,32,40,75,32,40,
-75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,
-40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,
-32,40,75,32,40,75,32,40,75,32,75,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,
-50,51,56,32,40,85,32,40,75,32,40,75,32,40,75,32,40,75,32,40,
-75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,
-40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,
-32,40,75,32,40,75,32,40,75,32,65,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,
-50,51,57,32,40,75,32,40,110,111,68,101,102,97,117,108,116,32,34,70,
-108,111,97,116,105,110,103,46,112,105,34,41,41,41,32,40,40,65,32,58,
-50,52,48,32,40,75,32,40,110,111,68,101,102,97,117,108,116,32,34,70,
-108,111,97,116,105,110,103,46,101,120,112,34,41,41,41,32,40,40,65,32,
-58,50,52,49,32,40,75,32,40,110,111,68,101,102,97,117,108,116,32,34,
-70,108,111,97,116,105,110,103,46,108,111,103,34,41,41,41,32,40,40,65,
-32,58,50,52,50,32,40,40,40,83,39,32,67,41,32,95,50,50,49,41,
-32,40,40,83,32,40,40,40,83,39,32,95,50,54,51,41,32,95,50,49,
-54,41,32,40,40,40,67,39,32,95,53,49,53,41,32,40,40,66,32,95,
-50,54,50,41,32,95,50,49,54,41,41,32,40,95,51,55,51,32,35,49,
-41,41,41,41,32,40,40,40,67,39,32,95,53,49,53,41,32,40,40,66,
-32,95,50,54,50,41,32,95,50,49,54,41,41,32,40,95,51,55,51,32,
-35,50,41,41,41,41,41,32,40,40,65,32,58,50,52,51,32,40,40,40,
-83,39,32,66,41,32,40,66,39,32,95,50,49,56,41,41,32,40,40,40,
-83,39,32,66,41,32,40,40,66,32,95,53,49,49,41,32,40,40,66,32,
-95,50,54,50,41,32,95,50,49,54,41,41,41,32,95,50,49,57,41,41,
-41,32,40,40,65,32,58,50,52,52,32,40,40,40,83,39,32,66,41,32,
-40,40,40,83,39,32,67,39,41,32,40,40,66,32,95,50,54,51,41,32,
-95,50,49,54,41,41,32,95,50,49,57,41,41,32,95,50,49,57,41,41,
-32,40,40,65,32,58,50,52,53,32,40,75,32,40,110,111,68,101,102,97,
-117,108,116,32,34,70,108,111,97,116,105,110,103,46,115,105,110,34,41,41,
-41,32,40,40,65,32,58,50,52,54,32,40,75,32,40,110,111,68,101,102,
-97,117,108,116,32,34,70,108,111,97,116,105,110,103,46,99,111,115,34,41,
-41,41,32,40,40,65,32,58,50,52,55,32,40,40,83,32,40,40,40,83,
-39,32,83,39,41,32,40,40,66,32,95,50,54,51,41,32,95,50,49,54,
-41,41,32,95,50,50,51,41,41,32,95,50,50,52,41,41,32,40,40,65,
-32,58,50,52,56,32,40,75,32,40,110,111,68,101,102,97,117,108,116,32,
-34,70,108,111,97,116,105,110,103,46,97,115,105,110,34,41,41,41,32,40,
-40,65,32,58,50,52,57,32,40,75,32,40,110,111,68,101,102,97,117,108,
-116,32,34,70,108,111,97,116,105,110,103,46,97,99,111,115,34,41,41,41,
-32,40,40,65,32,58,50,53,48,32,40,75,32,40,110,111,68,101,102,97,
-117,108,116,32,34,70,108,111,97,116,105,110,103,46,97,116,97,110,34,41,
-41,41,32,40,40,65,32,58,50,53,49,32,40,40,83,32,40,40,40,83,
-39,32,67,39,41,32,40,40,66,32,95,50,54,51,41,32,95,50,49,54,
-41,41,32,40,40,83,32,40,40,40,83,39,32,83,39,41,32,40,40,66,
-32,95,53,49,48,41,32,40,40,66,32,95,50,54,50,41,32,95,50,49,
-54,41,41,41,32,95,50,49,56,41,41,32,40,40,40,83,39,32,66,41,
-32,95,50,49,56,41,32,40,40,66,32,95,53,49,50,41,32,40,40,66,
-32,95,50,54,50,41,32,95,50,49,54,41,41,41,41,41,41,32,40,40,
-40,67,39,32,95,53,49,53,41,32,40,40,66,32,95,50,54,50,41,32,
-95,50,49,54,41,41,32,40,95,51,55,51,32,35,50,41,41,41,41,32,
-40,40,65,32,58,50,53,50,32,40,40,83,32,40,40,40,83,39,32,67,
-39,41,32,40,40,66,32,95,50,54,51,41,32,95,50,49,54,41,41,32,
-40,40,83,32,40,40,40,83,39,32,83,39,41,32,40,40,66,32,95,53,
-48,57,41,32,40,40,66,32,95,50,54,50,41,32,95,50,49,54,41,41,
-41,32,95,50,49,56,41,41,32,40,40,40,83,39,32,66,41,32,95,50,
-49,56,41,32,40,40,66,32,95,53,49,50,41,32,40,40,66,32,95,50,
-54,50,41,32,95,50,49,54,41,41,41,41,41,41,32,40,40,40,67,39,
-32,95,53,49,53,41,32,40,40,66,32,95,50,54,50,41,32,95,50,49,
-54,41,41,32,40,95,51,55,51,32,35,50,41,41,41,41,32,40,40,65,
-32,58,50,53,51,32,40,40,83,32,40,40,40,83,39,32,83,39,41,32,
-40,40,66,32,95,50,54,51,41,32,95,50,49,54,41,41,32,95,50,50,
-57,41,41,32,95,50,51,48,41,41,32,40,40,65,32,58,50,53,52,32,
-40,40,40,83,39,32,66,41,32,95,50,49,57,41,32,40,40,40,83,39,
-32,83,41,32,40,40,66,32,95,53,48,57,41,32,40,40,66,32,95,50,
-54,50,41,32,95,50,49,54,41,41,41,32,40,40,40,83,39,32,66,41,
-32,95,50,50,48,41,32,40,40,83,32,40,40,40,83,39,32,67,39,41,
-32,40,40,66,32,95,53,48,57,41,32,40,40,66,32,95,50,54,50,41,
-32,95,50,49,54,41,41,41,32,40,40,40,67,39,32,83,41,32,40,40,
-66,32,95,53,49,49,41,32,40,40,66,32,95,50,54,50,41,32,95,50,
-49,54,41,41,41,32,73,41,41,41,32,40,40,40,67,39,32,95,53,49,
-53,41,32,40,40,66,32,95,50,54,50,41,32,95,50,49,54,41,41,32,
-40,95,51,55,51,32,35,49,41,41,41,41,41,41,41,32,40,40,65,32,
-58,50,53,53,32,40,40,40,83,39,32,66,41,32,95,50,49,57,41,32,
-40,40,40,83,39,32,83,41,32,40,40,66,32,95,53,48,57,41,32,40,
-40,66,32,95,50,54,50,41,32,95,50,49,54,41,41,41,32,40,40,40,
-83,39,32,66,41,32,95,50,50,48,41,32,40,40,83,32,40,40,40,83,
-39,32,67,39,41,32,40,40,66,32,95,53,49,48,41,32,40,40,66,32,
-95,50,54,50,41,32,95,50,49,54,41,41,41,32,40,40,40,67,39,32,
-83,41,32,40,40,66,32,95,53,49,49,41,32,40,40,66,32,95,50,54,
-50,41,32,95,50,49,54,41,41,41,32,73,41,41,41,32,40,40,40,67,
-39,32,95,53,49,53,41,32,40,40,66,32,95,50,54,50,41,32,95,50,
-49,54,41,41,32,40,95,51,55,51,32,35,49,41,41,41,41,41,41,41,
-32,40,40,65,32,58,50,53,54,32,40,40,83,32,40,40,40,83,39,32,
-67,39,41,32,40,40,66,32,95,50,54,51,41,32,95,50,49,54,41,41,
-32,40,40,40,83,39,32,66,41,32,95,50,49,57,41,32,40,40,83,32,
-40,40,40,83,39,32,83,39,41,32,40,40,66,32,95,50,54,51,41,32,
-95,50,49,54,41,41,32,40,40,40,83,39,32,67,41,32,40,40,66,32,
-95,53,48,57,41,32,40,40,66,32,95,50,54,50,41,32,95,50,49,54,
-41,41,41,32,40,40,40,67,39,32,95,53,49,53,41,32,40,40,66,32,
-95,50,54,50,41,32,95,50,49,54,41,41,32,40,95,51,55,51,32,35,
-49,41,41,41,41,41,32,40,40,40,83,39,32,67,41,32,40,40,66,32,
-95,53,49,48,41,32,40,40,66,32,95,50,54,50,41,32,95,50,49,54,
-41,41,41,32,40,40,40,67,39,32,95,53,49,53,41,32,40,40,66,32,
-95,50,54,50,41,32,95,50,49,54,41,41,32,40,95,51,55,51,32,35,
-49,41,41,41,41,41,41,41,32,40,40,40,67,39,32,95,53,49,53,41,
-32,40,40,66,32,95,50,54,50,41,32,95,50,49,54,41,41,32,40,95,
-51,55,51,32,35,50,41,41,41,41,32,40,40,65,32,58,50,53,55,32,
-40,40,40,83,39,32,66,41,32,95,50,49,57,41,32,40,40,40,83,39,
-32,95,53,48,57,41,32,40,40,66,32,95,50,54,50,41,32,95,50,49,
-54,41,41,32,40,40,40,67,39,32,95,53,49,53,41,32,40,40,66,32,
-95,50,54,50,41,32,95,50,49,54,41,41,32,40,95,51,55,51,32,35,
-49,41,41,41,41,41,32,40,40,65,32,58,50,53,56,32,40,40,83,32,
-40,40,40,83,39,32,67,39,41,32,40,40,66,32,95,53,49,48,41,32,
-40,40,66,32,95,50,54,50,41,32,95,50,49,54,41,41,41,32,95,50,
-49,56,41,41,32,40,40,40,67,39,32,95,53,49,53,41,32,40,40,66,
-32,95,50,54,50,41,32,95,50,49,54,41,41,32,40,95,51,55,51,32,
-35,49,41,41,41,41,32,40,40,65,32,58,50,53,57,32,40,40,40,83,
-39,32,66,41,32,95,50,51,53,41,32,95,50,49,56,41,41,32,40,40,
-65,32,58,50,54,48,32,40,40,40,83,39,32,66,41,32,95,50,51,53,
-41,32,40,40,40,83,39,32,66,41,32,40,40,66,32,95,53,49,50,41,
-32,40,40,66,32,95,50,54,50,41,32,95,50,49,54,41,41,41,32,95,
-50,49,56,41,41,41,32,40,40,65,32,58,50,54,49,32,40,40,66,32,
-40,66,32,40,66,32,67,41,41,41,32,40,40,66,32,40,66,32,67,41,
-41,32,80,41,41,41,32,40,40,65,32,58,50,54,50,32,40,85,32,40,
-90,32,40,90,32,75,41,41,41,41,32,40,40,65,32,58,50,54,51,32,
-40,85,32,40,75,32,40,90,32,75,41,41,41,41,32,40,40,65,32,58,
-50,54,52,32,40,85,32,40,75,32,40,75,32,75,41,41,41,41,32,40,
-40,65,32,58,50,54,53,32,40,85,32,40,75,32,40,75,32,65,41,41,
-41,41,32,40,40,65,32,58,50,54,54,32,40,75,32,40,110,111,68,101,
-102,97,117,108,116,32,34,70,114,97,99,116,105,111,110,97,108,46,47,34,
-41,41,41,32,40,40,65,32,58,50,54,55,32,40,40,83,32,95,50,54,
-51,41,32,40,40,40,67,39,32,95,53,49,53,41,32,95,50,54,50,41,
-32,40,95,51,55,51,32,35,49,41,41,41,41,32,40,40,65,32,58,50,
-54,56,32,40,75,32,40,110,111,68,101,102,97,117,108,116,32,34,70,114,
-97,99,116,105,111,110,97,108,46,102,114,111,109,82,97,116,105,111,110,97,
-108,34,41,41,41,32,40,40,65,32,58,50,54,57,32,40,40,40,83,39,
-32,40,83,39,32,83,41,41,32,40,40,40,83,39,32,66,41,32,40,40,
-66,32,83,41,32,40,40,40,83,39,32,67,41,32,40,40,66,32,95,53,
-51,48,41,32,40,85,32,40,75,32,65,41,41,41,41,32,40,40,40,67,
-39,32,95,53,49,53,41,32,40,40,66,32,40,85,32,65,41,41,32,40,
-40,66,32,95,51,55,57,41,32,40,85,32,40,75,32,75,41,41,41,41,
-41,32,40,95,51,55,51,32,35,48,41,41,41,41,41,32,40,40,40,83,
-39,32,66,41,32,40,66,39,32,40,40,66,32,95,50,54,52,41,32,40,
-85,32,40,90,32,75,41,41,41,41,41,32,40,40,40,83,39,32,40,67,
-39,32,66,41,41,32,40,40,66,32,95,51,57,56,41,32,40,40,40,83,
-39,32,67,41,32,40,40,40,83,39,32,80,41,32,40,40,66,32,95,50,
-54,50,41,32,40,85,32,40,90,32,75,41,41,41,41,32,40,85,32,40,
-75,32,75,41,41,41,41,32,40,85,32,40,75,32,65,41,41,41,41,41,
-32,40,40,66,32,95,53,49,50,41,32,40,40,66,32,40,85,32,65,41,
-41,32,40,40,66,32,95,51,55,57,41,32,40,85,32,40,75,32,75,41,
-41,41,41,41,41,41,41,41,32,40,40,66,32,95,51,57,56,41,32,40,
-40,40,83,39,32,67,41,32,40,40,40,83,39,32,80,41,32,40,40,66,
-32,95,50,54,50,41,32,40,85,32,40,90,32,75,41,41,41,41,32,40,
-85,32,40,75,32,75,41,41,41,41,32,40,85,32,40,75,32,65,41,41,
-41,41,41,41,32,40,40,65,32,58,50,55,48,32,73,41,32,40,40,65,
-32,58,50,55,49,32,40,83,32,95,49,53,48,56,41,41,32,40,40,65,
-32,58,50,55,50,32,66,41,32,40,40,65,32,58,50,55,51,32,73,41,
-32,40,40,65,32,58,50,55,52,32,75,41,32,40,40,65,32,58,50,55,
-53,32,67,41,32,40,40,65,32,58,50,55,54,32,95,49,53,48,55,41,
-32,40,40,65,32,58,50,55,55,32,85,41,32,40,40,65,32,58,50,55,
-56,32,40,40,40,67,39,32,40,83,39,32,40,67,39,32,66,41,41,41,
-32,66,41,32,73,41,41,32,40,40,65,32,58,50,55,57,32,95,50,55,
-52,41,32,40,40,65,32,58,50,56,48,32,80,41,32,40,40,65,32,58,
-50,56,49,32,40,85,32,75,41,41,32,40,40,65,32,58,50,56,50,32,
-40,85,32,65,41,41,32,40,40,65,32,58,50,56,51,32,40,75,32,40,
-110,111,68,101,102,97,117,108,116,32,34,70,117,110,99,116,111,114,46,102,
-109,97,112,34,41,41,41,32,40,40,65,32,58,50,56,52,32,40,40,40,
-67,39,32,95,50,55,50,41,32,95,50,56,49,41,32,95,50,55,52,41,
-41,32,40,40,65,32,58,50,56,53,32,95,50,56,49,41,32,40,40,65,
-32,58,50,56,54,32,73,41,32,40,40,65,32,58,50,56,55,32,40,40,
-95,50,56,48,32,40,66,32,95,50,56,54,41,41,32,40,95,50,56,52,
-32,95,50,56,55,41,41,41,32,40,40,65,32,58,50,56,56,32,40,40,
-40,40,40,95,49,50,32,95,50,56,55,41,32,95,50,56,54,41,32,40,
-66,32,95,50,56,54,41,41,32,40,95,50,48,32,95,50,56,56,41,41,
-32,40,95,50,49,32,95,50,56,56,41,41,41,32,40,40,65,32,58,50,
-56,57,32,40,40,40,40,95,51,49,32,95,50,56,56,41,32,85,41,32,
-40,95,51,55,32,95,50,56,57,41,41,32,40,95,51,56,32,95,50,56,
-57,41,41,41,32,40,40,65,32,58,50,57,48,32,40,40,83,32,40,40,
-40,83,39,32,95,49,55,49,50,41,32,40,40,66,32,40,40,67,39,32,
-66,41,32,40,40,66,32,95,49,55,50,50,41,32,40,40,67,32,40,95,
-53,51,48,32,95,50,57,54,41,41,32,35,49,49,41,41,41,41,32,40,
-40,66,32,40,66,32,40,95,50,55,50,32,40,95,49,55,50,49,32,34,
-73,100,101,110,116,105,116,121,32,34,41,41,41,41,32,40,40,67,32,95,
-49,55,49,51,41,32,35,49,49,41,41,41,41,32,40,40,66,32,95,49,
-55,49,55,41,32,95,50,57,48,41,41,41,32,40,40,66,32,95,49,55,
-49,56,41,32,95,50,57,48,41,41,41,32,40,40,65,32,58,50,57,49,
-32,40,40,40,40,40,40,40,95,53,48,56,32,95,49,52,53,49,41,32,
-95,49,52,53,50,41,32,95,49,52,53,51,41,32,95,49,52,53,55,41,
-32,40,40,83,32,40,40,83,32,40,40,67,32,40,95,53,50,55,32,95,
-50,57,54,41,41,32,35,48,41,41,32,73,41,41,32,40,95,53,49,50,
-32,95,50,57,49,41,41,41,32,40,40,67,32,40,40,67,32,40,40,67,
-32,40,40,67,32,40,95,53,50,54,32,95,50,57,54,41,41,32,35,48,
-41,41,32,35,45,49,41,41,32,35,48,41,41,32,35,49,41,41,32,95,
-51,55,52,41,41,32,40,40,65,32,58,50,57,50,32,40,40,40,40,40,
-40,40,40,95,51,55,56,32,40,40,80,32,95,50,57,53,41,32,95,50,
-57,49,41,41,32,95,49,52,53,52,41,32,95,49,52,53,53,41,32,40,
-95,51,56,57,32,95,50,57,50,41,41,32,40,95,51,57,48,32,95,50,
-57,50,41,41,32,40,95,51,57,49,32,95,50,57,50,41,41,32,40,95,
-51,57,50,32,95,50,57,50,41,41,32,95,51,55,51,41,41,32,40,40,
-65,32,58,50,57,51,32,40,40,95,49,50,55,32,40,40,40,95,53,48,
-57,32,95,50,57,49,41,32,40,95,49,52,57,56,32,40,40,95,49,52,
-55,53,32,35,45,49,41,32,35,50,41,41,41,32,35,49,41,41,32,40,
-95,49,52,57,56,32,40,40,95,49,52,55,53,32,35,45,49,41,32,35,
-50,41,41,41,41,32,40,40,65,32,58,50,57,52,32,40,95,53,54,49,
-32,40,40,66,32,95,53,53,57,41,32,95,51,55,51,41,41,41,32,40,
-40,65,32,58,50,57,53,32,40,40,95,50,49,48,32,95,49,52,56,54,
-41,32,95,49,52,56,55,41,41,32,40,40,65,32,58,50,57,54,32,40,
-40,40,40,40,40,40,40,95,53,50,52,32,95,50,57,53,41,32,95,49,
-53,48,57,41,32,95,49,52,56,56,41,32,95,49,52,56,57,41,32,95,
-49,52,57,48,41,32,95,49,52,57,49,41,32,40,95,53,51,56,32,95,
-50,57,54,41,41,32,40,95,53,51,57,32,95,50,57,54,41,41,41,32,
-40,40,65,32,58,50,57,55,32,40,40,40,95,49,55,49,50,32,40,95,
-49,55,49,54,32,95,50,57,55,41,41,32,95,50,57,56,41,32,40,95,
-49,55,49,56,32,95,50,57,55,41,41,41,32,40,40,65,32,58,50,57,
-56,32,40,40,83,32,40,40,83,32,40,40,67,32,40,95,53,50,55,32,
-95,50,57,54,41,41,32,35,48,41,41,32,40,40,66,32,95,50,57,57,
-41,32,40,95,53,49,50,32,95,50,57,49,41,41,41,41,32,40,40,66,
-32,40,95,52,56,49,32,35,52,53,41,41,32,95,50,57,57,41,41,41,
-32,40,40,65,32,58,50,57,57,32,40,40,83,32,40,40,67,32,40,40,
-40,83,39,32,83,39,41,32,40,40,67,32,40,95,53,50,57,32,95,50,
-57,54,41,41,32,35,45,49,48,41,41,32,40,40,40,67,39,32,66,41,
-32,40,40,66,32,95,52,56,50,41,32,40,40,66,32,95,50,57,57,41,
-32,40,40,67,32,40,95,51,56,48,32,95,50,57,50,41,41,32,35,49,
-48,41,41,41,41,32,40,40,67,32,79,41,32,75,41,41,41,41,32,40,
-40,67,32,79,41,32,75,41,41,41,32,40,40,66,32,95,49,53,49,49,
-41,32,40,40,66,32,40,40,95,53,49,48,32,95,50,57,49,41,32,40,
-95,49,53,49,50,32,35,52,56,41,41,41,32,40,40,67,32,40,95,51,
-56,49,32,95,50,57,50,41,41,32,35,49,48,41,41,41,41,41,32,40,
-40,65,32,58,51,48,48,32,40,90,32,75,41,41,32,40,40,65,32,58,
-51,48,49,32,40,40,66,32,90,41,32,40,40,66,32,40,66,32,90,41,
-41,32,80,41,41,41,32,40,40,65,32,58,51,48,50,32,40,40,66,32,
-40,66,32,40,66,32,90,41,41,41,32,40,40,66,32,40,66,32,40,66,
-32,90,41,41,41,32,40,40,66,32,40,66,32,40,66,32,67,41,41,41,
-32,40,40,66,32,40,66,32,67,41,41,32,80,41,41,41,41,41,32,40,
-40,65,32,58,51,48,51,32,40,40,40,83,39,32,83,41,32,40,40,40,
-83,39,32,40,83,39,32,67,41,41,32,40,40,40,67,39,32,40,67,39,
-32,83,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,83,
-39,32,83,39,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,
-95,49,50,49,41,32,40,40,67,32,40,95,53,51,48,32,95,50,57,54,
-41,41,32,35,48,41,41,41,32,40,40,67,32,40,95,50,49,49,32,95,
-50,57,53,41,41,32,35,48,41,41,41,41,32,40,40,66,32,40,66,32,
-40,40,67,39,32,80,41,32,40,40,67,32,40,95,53,49,48,32,95,50,
-57,49,41,41,32,35,49,41,41,41,41,32,40,67,32,40,95,53,48,57,
-32,95,50,57,49,41,41,41,41,41,32,40,67,32,80,41,41,41,32,40,
-95,51,56,48,32,95,50,57,50,41,41,41,32,40,95,51,56,49,32,95,
-50,57,50,41,41,41,32,40,40,65,32,58,51,48,52,32,95,51,48,48,
-41,32,40,40,65,32,58,51,48,53,32,40,40,40,83,39,32,67,41,32,
-40,40,66,32,40,80,32,95,52,57,56,41,41,32,40,40,40,67,39,32,
-40,67,39,32,66,41,41,32,40,40,40,67,39,32,67,41,32,40,95,50,
-49,49,32,95,50,57,53,41,41,32,95,52,57,56,41,41,32,95,52,57,
-57,41,41,41,32,40,40,66,32,40,40,67,39,32,40,67,39,32,40,67,
-39,32,67,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,
-32,67,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,
-40,67,39,32,83,39,41,41,41,41,32,40,40,66,32,40,66,32,40,66,
-32,40,66,32,67,41,41,41,41,32,40,40,66,32,40,40,67,39,32,40,
-67,39,32,40,67,39,32,67,41,41,41,32,40,40,66,32,40,66,32,40,
-66,32,40,40,83,39,32,83,39,41,32,40,40,67,32,40,95,50,49,49,
-32,95,50,57,53,41,41,32,35,48,41,41,41,41,41,32,40,40,66,32,
-40,40,67,39,32,40,67,39,32,67,41,41,32,40,40,66,32,40,66,32,
-40,40,83,39,32,83,39,41,32,40,40,67,32,40,95,50,49,49,32,95,
-50,57,53,41,41,32,35,49,41,41,41,41,32,40,40,66,32,40,40,67,
-39,32,67,41,32,40,40,66,32,40,40,67,39,32,83,39,41,32,40,40,
-67,32,40,95,50,49,49,32,95,50,57,53,41,41,32,35,50,41,41,41,
-32,40,67,32,95,51,48,53,41,41,41,41,32,40,67,32,95,51,48,53,
-41,41,41,41,41,32,40,67,32,95,51,48,53,41,41,41,41,41,32,40,
-67,32,95,51,48,53,41,41,41,41,32,40,85,32,75,41,41,41,32,40,
-85,32,65,41,41,41,41,32,40,40,67,32,95,51,48,51,41,32,35,52,
-41,41,41,41,32,40,40,65,32,58,51,48,54,32,40,95,51,49,50,32,
-95,50,55,52,41,41,32,40,40,65,32,58,51,48,55,32,40,40,95,52,
-49,52,32,40,95,50,55,55,32,95,51,48,54,41,41,32,95,51,48,52,
-41,41,32,40,40,65,32,58,51,48,56,32,40,40,67,32,40,40,40,67,
-39,32,66,41,32,40,40,80,32,95,52,56,48,41,32,40,40,40,67,39,
-32,40,67,39,32,79,41,41,32,80,41,32,75,41,41,41,32,40,40,40,
-83,39,32,40,67,39,32,40,67,39,32,40,67,39,32,66,41,41,41,41,
-32,40,40,66,32,40,66,32,40,66,32,40,66,32,95,51,48,57,41,41,
-41,41,32,40,40,40,83,39,32,40,67,39,32,40,67,39,32,66,41,41,
-41,32,40,40,66,32,40,66,32,40,66,32,95,51,48,57,41,41,41,32,
-40,40,40,83,39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,
-32,95,51,48,57,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,
-32,95,52,49,50,41,32,40,85,32,40,40,95,53,49,53,32,95,50,57,
-49,41,32,40,95,51,55,51,32,35,48,41,41,41,41,41,32,95,51,48,
-56,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,95,52,
-49,50,41,32,40,85,32,35,49,41,41,41,32,95,51,48,56,41,41,41,
-41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,95,52,49,50,41,
-32,40,85,32,35,50,41,41,41,32,95,51,48,56,41,41,41,41,32,40,
-40,40,67,39,32,66,41,32,40,40,66,32,95,52,49,50,41,32,40,85,
-32,35,51,41,41,41,32,95,51,48,56,41,41,41,41,32,40,40,66,32,
-85,41,32,40,40,66,32,40,66,32,80,41,41,32,40,40,67,39,32,40,
-95,53,48,57,32,95,50,57,49,41,41,32,40,40,67,32,40,95,53,49,
-49,32,95,50,57,49,41,41,32,40,40,95,53,49,53,32,95,50,57,49,
-41,32,40,95,51,55,51,32,35,52,41,41,41,41,41,41,41,41,32,40,
-40,65,32,58,51,48,57,32,40,40,66,32,89,41,32,40,40,40,83,39,
-32,66,41,32,83,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,
-66,32,40,66,32,90,41,41,32,40,40,40,83,39,32,66,41,32,40,40,
-66,32,83,41,32,85,41,41,32,40,40,66,32,40,66,32,90,41,41,32,
-40,40,66,32,40,66,32,90,41,41,32,40,40,67,32,40,40,40,67,39,
-32,67,39,41,32,40,40,66,32,67,39,41,32,83,41,41,32,40,40,66,
-32,40,66,32,40,66,32,40,83,32,66,41,41,41,41,32,40,40,66,32,
-40,66,32,40,66,32,40,66,32,40,66,32,90,41,41,41,41,41,32,40,
-40,66,32,40,40,83,39,32,40,67,39,32,66,41,41,32,40,40,66,32,
-66,39,41,32,66,39,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
-40,66,32,40,66,32,40,83,32,66,41,41,41,41,41,41,32,40,40,66,
-32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,90,
-41,41,41,41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,66,39,
-32,40,66,39,32,40,40,66,32,40,67,39,32,40,67,39,32,40,67,39,
-32,67,41,41,41,41,32,40,40,66,32,40,40,67,39,32,66,41,32,40,
-66,39,32,40,40,66,32,67,41,32,40,95,53,50,55,32,95,50,57,54,
-41,41,41,41,41,32,40,40,67,39,32,66,41,32,95,52,56,49,41,41,
-41,41,41,41,32,40,40,66,32,40,40,67,39,32,66,41,32,95,52,56,
-49,41,41,32,40,67,32,95,51,48,57,41,41,41,41,41,41,41,41,41,
-41,32,40,40,40,110,111,77,97,116,99,104,32,34,46,47,108,105,98,47,
-68,97,116,97,47,73,110,116,77,97,112,46,104,115,34,41,32,35,54,53,
-41,32,35,49,41,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,
-51,49,48,32,40,40,95,50,55,50,32,40,95,52,49,50,32,95,53,57,
-56,41,41,32,95,51,48,56,41,41,32,40,40,65,32,58,51,49,49,32,
-40,40,40,67,39,32,67,41,32,40,40,40,67,39,32,67,41,32,40,67,
-32,95,51,48,53,41,41,32,40,95,50,53,32,34,68,97,116,97,46,73,
-110,116,77,97,112,46,33,34,41,41,41,32,73,41,41,32,40,40,65,32,
-58,51,49,50,32,40,40,66,32,40,67,39,32,89,41,41,32,40,40,40,
-67,39,32,40,67,39,32,40,83,39,32,40,83,39,32,67,41,41,41,41,
-32,40,40,66,32,40,40,83,39,32,66,41,32,40,40,66,32,40,83,39,
-32,80,41,41,32,40,67,32,95,51,48,49,41,41,41,41,32,40,40,66,
-32,40,66,32,40,40,67,39,32,40,83,39,32,67,41,41,32,40,40,66,
-32,40,40,83,39,32,40,83,39,32,83,39,41,41,32,40,95,50,49,49,
-32,95,50,57,53,41,41,41,32,40,40,40,67,39,32,40,67,39,32,66,
-41,41,32,40,40,66,32,66,39,41,32,40,66,32,95,50,55,48,41,41,
-41,32,40,40,40,67,39,32,40,67,39,32,95,50,55,48,41,41,32,95,
-51,48,54,41,32,40,40,40,40,95,51,48,50,32,95,51,48,48,41,32,
-95,51,48,48,41,32,95,51,48,48,41,32,95,51,48,48,41,41,41,41,
-41,41,41,32,40,66,32,40,40,67,39,32,66,41,32,95,51,48,49,41,
-41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,67,
-39,32,40,67,39,32,40,67,39,32,67,41,41,41,41,32,40,40,40,67,
-39,32,40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,41,41,32,
-40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,
-39,32,83,39,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
-40,66,32,40,66,32,67,41,41,41,41,41,32,40,40,40,83,39,32,40,
-83,39,32,40,83,39,32,40,83,39,32,40,83,39,32,67,41,41,41,41,
-41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,40,
-83,39,32,83,39,41,32,40,40,67,32,40,95,50,49,49,32,95,50,57,
-53,41,41,32,35,48,41,41,41,41,41,41,41,32,40,40,40,83,39,32,
-40,83,39,32,40,83,39,32,40,83,39,32,40,83,39,32,67,41,41,41,
-41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
-40,83,39,32,83,39,41,32,40,40,67,32,40,95,50,49,49,32,95,50,
-57,53,41,41,32,35,49,41,41,41,41,41,41,41,32,40,40,40,83,39,
-32,40,83,39,32,40,83,39,32,40,83,39,32,40,83,39,32,67,41,41,
-41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
-40,40,67,39,32,83,39,41,32,40,40,67,32,40,95,50,49,49,32,95,
-50,57,53,41,41,32,35,50,41,41,41,41,41,41,41,32,40,40,66,32,
-40,40,67,39,32,40,67,39,32,40,67,39,32,66,41,41,41,32,40,40,
-66,32,40,66,32,66,39,41,41,32,95,51,48,50,41,41,41,32,67,41,
-41,41,32,40,40,66,32,40,40,67,39,32,40,67,39,32,66,41,41,32,
-40,40,66,32,40,66,32,67,39,41,41,32,95,51,48,50,41,41,41,32,
-67,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,67,
-41,41,41,41,32,40,40,66,32,40,40,67,39,32,66,41,32,40,40,66,
-32,67,39,41,32,95,51,48,50,41,41,41,32,67,41,41,41,41,41,32,
-40,40,66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,32,40,
-40,66,32,40,66,32,40,66,32,67,41,41,41,32,40,40,66,32,40,66,
-32,40,67,39,32,95,51,48,50,41,41,41,32,67,41,41,41,41,41,41,
-32,40,85,32,75,41,41,41,32,40,85,32,65,41,41,41,41,32,40,40,
-67,32,95,51,48,51,41,32,35,52,41,41,41,41,41,32,40,40,65,32,
-58,51,49,51,32,73,41,32,40,40,65,32,58,51,49,52,32,40,95,51,
-49,51,32,95,51,48,52,41,41,32,40,40,65,32,58,51,49,53,32,40,
-40,40,67,39,32,67,41,32,40,40,40,67,39,32,67,41,32,95,51,48,
-53,41,32,95,49,50,53,41,41,32,40,75,32,95,49,50,54,41,41,41,
-32,40,40,65,32,58,51,49,54,32,40,40,66,32,40,66,32,95,51,49,
-51,41,41,32,40,40,67,32,95,51,48,54,41,32,95,49,52,53,48,41,
-41,41,32,40,40,65,32,58,51,49,55,32,40,40,66,32,95,51,49,51,
-41,32,40,40,66,32,95,51,48,55,41,32,40,40,67,32,95,52,50,57,
-41,32,40,95,52,54,54,32,95,49,52,53,48,41,41,41,41,41,32,40,
-40,65,32,58,51,49,56,32,40,40,66,32,40,95,52,49,50,32,95,53,
-57,56,41,41,32,95,51,48,56,41,41,32,40,40,65,32,58,51,49,57,
-32,40,40,95,50,49,48,32,95,51,54,49,41,32,95,51,54,50,41,41,
-32,40,40,65,32,58,51,50,48,32,40,40,40,40,40,40,40,40,95,53,
-50,52,32,95,51,49,57,41,32,40,95,53,51,51,32,95,51,50,48,41,
-41,32,95,51,54,51,41,32,95,51,54,52,41,32,95,51,54,53,41,32,
-95,51,54,54,41,32,40,95,53,51,56,32,95,51,50,48,41,41,32,40,
-95,53,51,57,32,95,51,50,48,41,41,41,32,40,40,65,32,58,51,50,
-49,32,40,40,40,95,49,55,49,50,32,40,95,49,55,49,54,32,95,51,
-50,49,41,41,32,95,51,53,55,41,32,40,95,49,55,49,56,32,95,51,
-50,49,41,41,41,32,40,40,65,32,58,51,50,50,32,40,40,40,40,40,
-40,40,95,53,48,56,32,95,51,51,48,41,32,95,51,51,51,41,32,95,
-51,52,50,41,32,95,51,51,49,41,32,95,51,51,50,41,32,40,40,67,
-32,40,40,67,32,40,40,67,32,40,40,67,32,40,95,53,50,54,32,95,
-51,50,48,41,41,32,95,51,53,50,41,41,32,95,51,53,54,41,41,32,
-95,51,53,50,41,41,32,95,51,53,51,41,41,32,73,41,41,32,40,40,
-65,32,58,51,50,51,32,40,40,40,40,40,40,40,40,95,51,55,56,32,
-40,40,80,32,95,51,49,57,41,32,95,51,50,50,41,41,32,40,95,51,
-56,55,32,95,51,50,51,41,41,32,40,95,51,56,56,32,95,51,50,51,
-41,41,32,40,95,51,56,57,32,95,51,50,51,41,41,32,40,95,51,57,
-48,32,95,51,50,51,41,41,32,95,51,52,54,41,32,40,95,51,57,50,
-32,95,51,50,51,41,41,32,73,41,41,32,40,40,65,32,58,51,50,52,
-32,40,95,53,54,49,32,95,53,53,57,41,41,32,40,40,65,32,58,51,
-50,53,32,40,40,40,40,40,40,40,40,95,49,56,56,32,40,40,67,32,
-40,95,53,48,57,32,95,51,50,50,41,41,32,40,40,95,53,49,53,32,
-95,51,50,50,41,32,40,95,51,55,51,32,35,49,41,41,41,41,32,40,
-40,67,32,40,95,53,49,48,32,95,51,50,50,41,41,32,40,40,95,53,
-49,53,32,95,51,50,50,41,32,40,95,51,55,51,32,35,49,41,41,41,
-41,32,95,51,55,51,41,32,95,51,55,52,41,32,40,40,83,32,95,52,
-56,49,41,32,40,40,66,32,40,95,49,57,51,32,95,51,50,53,41,41,
-32,40,40,67,32,40,95,53,48,57,32,95,51,50,50,41,41,32,40,95,
-51,55,51,32,35,49,41,41,41,41,41,32,40,40,40,83,39,32,40,67,
-39,32,89,41,41,32,40,40,66,32,40,66,32,40,66,32,40,83,32,95,
-52,56,49,41,41,41,41,32,40,40,66,32,40,66,32,40,67,32,66,41,
-41,41,32,40,40,66,32,40,66,32,40,67,32,40,95,53,48,57,32,95,
-51,50,50,41,41,41,41,32,40,67,32,40,95,53,49,48,32,95,51,50,
-50,41,41,41,41,41,41,32,73,41,41,32,40,40,66,32,40,40,67,39,
-32,95,52,52,51,41,32,40,67,32,40,95,53,50,56,32,95,51,50,48,
-41,41,41,41,32,40,95,49,57,51,32,95,51,50,53,41,41,41,32,40,
-40,40,83,39,32,83,41,32,40,40,40,83,39,32,40,83,39,32,83,39,
-41,41,32,40,67,32,40,95,53,50,57,32,95,51,50,48,41,41,41,32,
-40,40,66,32,40,66,32,40,40,67,39,32,95,52,52,51,41,32,40,67,
-32,40,95,53,51,48,32,95,51,50,48,41,41,41,41,41,32,40,95,49,
-57,52,32,95,51,50,53,41,41,41,41,32,40,40,66,32,40,66,32,40,
-40,67,39,32,95,52,52,51,41,32,40,67,32,40,95,53,50,56,32,95,
-51,50,48,41,41,41,41,41,32,40,95,49,57,52,32,95,51,50,53,41,
-41,41,41,41,32,40,40,65,32,58,51,50,54,32,40,85,32,40,75,32,
-95,52,48,57,41,41,41,32,40,40,65,32,58,51,50,55,32,40,40,95,
-50,49,48,32,40,40,67,32,40,40,67,32,83,39,41,32,40,40,80,32,
-95,49,50,54,41,32,95,49,50,53,41,41,41,32,40,40,80,32,95,49,
-50,53,41,32,95,49,50,54,41,41,41,32,40,95,50,49,52,32,95,51,
-50,55,41,41,41,32,40,40,65,32,58,51,50,56,32,40,40,40,67,39,
-32,66,41,32,40,40,66,32,40,83,32,40,85,32,40,40,95,51,54,57,
-32,95,51,55,48,41,32,95,52,56,48,41,41,41,41,32,40,40,66,32,
-90,41,32,40,40,66,32,90,41,32,95,51,54,57,41,41,41,41,32,95,
-51,52,48,41,41,32,40,40,65,32,58,51,50,57,32,35,48,41,32,40,
-40,65,32,58,51,51,48,32,40,40,67,32,40,40,40,67,39,32,67,39,
-41,32,66,41,32,40,40,40,83,39,32,40,83,39,32,67,41,41,32,40,
-40,66,32,40,66,32,40,67,32,83,39,41,41,41,32,40,40,40,67,39,
-32,66,41,32,66,41,32,40,40,66,32,40,40,83,39,32,67,41,32,40,
-40,66,32,40,67,32,83,39,41,41,32,40,40,66,32,40,66,32,40,95,
-51,54,57,32,95,51,55,48,41,41,41,32,95,51,51,52,41,41,41,41,
-32,40,40,40,67,39,32,40,83,39,32,83,41,41,32,40,40,66,32,40,
-40,83,39,32,83,41,32,95,51,52,49,41,41,32,40,40,40,67,39,32,
-66,41,32,40,66,39,32,95,49,50,54,41,41,32,40,40,66,32,40,66,
-32,40,95,51,50,56,32,95,51,55,48,41,41,41,32,95,51,51,55,41,
-41,41,41,32,40,40,66,32,40,66,32,40,95,51,50,56,32,95,51,55,
-49,41,41,41,32,40,67,32,95,51,51,55,41,41,41,41,41,41,41,32,
-40,40,40,83,39,32,66,41,32,40,40,40,67,39,32,83,39,41,32,66,
-41,32,40,40,40,67,39,32,40,83,39,32,67,41,41,32,40,40,66,32,
-40,66,32,40,67,32,67,39,41,41,41,32,40,40,40,83,39,32,40,67,
-39,32,83,41,41,32,40,40,40,83,39,32,66,41,32,40,40,66,32,83,
-41,32,40,67,32,95,51,52,49,41,41,41,32,40,40,66,32,40,40,67,
-39,32,66,41,32,95,49,50,54,41,41,32,40,40,66,32,40,66,32,40,
-95,51,50,56,32,95,51,55,48,41,41,41,32,40,67,32,95,51,51,55,
-41,41,41,41,41,32,40,40,66,32,40,66,32,40,95,51,50,56,32,95,
-51,55,49,41,41,41,32,95,51,51,55,41,41,41,41,32,73,41,41,41,
-32,40,40,40,67,39,32,66,41,32,66,41,32,40,40,40,67,39,32,66,
-41,32,40,40,66,32,40,67,39,32,66,41,41,32,85,41,41,32,40,40,
-66,32,40,66,32,40,95,51,54,57,32,95,51,55,49,41,41,41,32,95,
-51,51,52,41,41,41,41,41,41,41,32,40,40,40,110,111,77,97,116,99,
-104,32,34,46,47,108,105,98,47,68,97,116,97,47,73,110,116,101,103,101,
-114,46,104,115,34,41,32,35,49,50,50,41,32,35,49,41,41,41,32,40,
-40,65,32,58,51,51,49,32,40,40,83,32,73,41,32,40,40,40,67,39,
-32,66,41,32,40,40,66,32,83,41,32,85,41,41,32,40,40,66,32,90,
-41,32,40,40,66,32,90,41,32,40,40,67,32,40,40,67,32,83,39,41,
-32,40,95,51,54,57,32,95,51,55,49,41,41,41,32,40,95,51,54,57,
-32,95,51,55,48,41,41,41,41,41,41,41,32,40,40,65,32,58,51,51,
-50,32,40,85,32,40,75,32,40,95,51,54,57,32,95,51,55,48,41,41,
-41,41,32,40,40,65,32,58,51,51,51,32,40,40,40,67,39,32,66,41,
-32,95,51,51,48,41,32,95,51,51,49,41,41,32,40,40,65,32,58,51,
-51,52,32,40,95,51,51,53,32,95,51,50,57,41,41,32,40,40,65,32,
-58,51,51,53,32,40,40,40,83,39,32,67,41,32,40,40,66,32,40,67,
-32,83,39,41,41,32,40,40,40,83,39,32,80,41,32,40,40,67,32,40,
-40,83,32,40,40,67,32,40,95,50,49,49,32,95,50,57,53,41,41,32,
-95,51,50,57,41,41,32,40,40,67,32,79,41,32,75,41,41,41,32,95,
-52,56,48,41,41,32,40,40,66,32,40,66,32,40,40,67,39,32,40,40,
-83,39,32,95,52,56,49,41,32,40,85,32,65,41,41,41,32,40,67,32,
-40,40,40,67,39,32,95,51,51,53,41,32,40,85,32,75,41,41,32,95,
-52,56,48,41,41,41,41,41,32,40,40,67,32,95,51,51,54,41,32,95,
-51,50,57,41,41,41,41,41,32,40,40,40,83,39,32,67,41,32,40,40,
-66,32,40,40,67,39,32,83,39,41,32,83,39,41,41,32,40,40,66,32,
-40,66,32,40,40,67,39,32,40,40,83,39,32,95,52,56,49,41,32,40,
-85,32,65,41,41,41,32,40,40,40,67,39,32,67,41,32,40,40,67,39,
-32,95,51,51,53,41,32,40,85,32,75,41,41,41,32,95,52,56,48,41,
-41,41,41,32,40,40,40,67,39,32,67,41,32,95,51,51,54,41,32,95,
-51,50,57,41,41,41,41,32,40,40,66,32,40,66,32,40,40,67,39,32,
-66,41,32,40,40,66,32,40,67,39,32,40,40,83,39,32,95,52,56,49,
-41,32,40,85,32,65,41,41,41,41,32,40,40,66,32,67,41,32,40,40,
-67,39,32,95,51,51,53,41,32,40,85,32,75,41,41,41,41,41,41,41,
-32,95,51,51,54,41,41,41,41,32,40,40,65,32,58,51,51,54,32,40,
-40,66,32,40,66,32,40,66,32,40,40,40,83,39,32,80,41,32,40,40,
-67,32,40,95,51,56,48,32,95,50,57,50,41,41,32,95,51,55,50,41,
-41,32,40,40,67,32,40,95,51,56,49,32,95,50,57,50,41,41,32,95,
-51,55,50,41,41,41,41,41,32,40,40,66,32,40,66,32,40,95,53,48,
-57,32,95,50,57,49,41,41,41,32,40,95,53,48,57,32,95,50,57,49,
-41,41,41,41,32,40,40,65,32,58,51,51,55,32,40,95,51,51,56,32,
-95,51,50,57,41,41,32,40,40,65,32,58,51,51,56,32,40,40,40,83,
-39,32,67,41,32,40,40,66,32,40,83,32,83,39,41,41,32,40,40,67,
-32,40,40,40,67,39,32,83,39,41,32,40,40,66,32,67,39,41,32,40,
-40,66,32,83,41,32,40,40,67,32,61,61,41,32,35,48,41,41,41,41,
-32,40,40,67,32,40,40,40,67,39,32,67,39,41,32,83,39,41,32,40,
-40,40,67,39,32,66,41,32,40,85,32,95,52,56,48,41,41,32,40,90,
-32,75,41,41,41,41,32,40,90,32,75,41,41,41,41,32,40,40,80,32,
-95,50,54,41,32,40,75,32,40,75,32,40,40,40,110,111,77,97,116,99,
-104,32,34,46,47,108,105,98,47,68,97,116,97,47,73,110,116,101,103,101,
-114,46,104,115,34,41,32,35,49,53,56,41,32,35,49,41,41,41,41,41,
-41,41,32,40,40,40,83,39,32,67,41,32,40,40,66,32,40,40,67,39,
-32,83,39,41,32,83,39,41,41,32,40,40,66,32,40,66,32,40,40,67,
-39,32,40,40,83,39,32,95,52,56,49,41,32,40,85,32,65,41,41,41,
-32,40,40,40,67,39,32,67,41,32,40,40,67,39,32,95,51,51,56,41,
-32,40,85,32,75,41,41,41,32,95,52,56,48,41,41,41,41,32,40,40,
-40,67,39,32,67,41,32,95,51,51,57,41,32,95,51,50,57,41,41,41,
-41,32,40,40,66,32,40,66,32,40,40,67,39,32,66,41,32,40,40,66,
-32,40,67,39,32,40,40,83,39,32,95,52,56,49,41,32,40,85,32,65,
-41,41,41,41,32,40,40,66,32,67,41,32,40,40,67,39,32,95,51,51,
-56,41,32,40,85,32,75,41,41,41,41,41,41,41,32,95,51,51,57,41,
-41,41,41,32,40,40,65,32,58,51,51,57,32,40,40,66,32,40,66,32,
-40,66,32,40,40,83,32,40,40,83,32,40,40,67,32,40,95,53,50,55,
-32,95,50,57,54,41,41,32,35,48,41,41,32,40,40,40,83,39,32,80,
-41,32,40,40,67,32,40,95,51,56,48,32,95,50,57,50,41,41,32,95,
-51,55,50,41,41,32,40,40,67,32,40,95,51,56,49,32,95,50,57,50,
-41,41,32,95,51,55,50,41,41,41,41,32,40,40,40,83,39,32,80,41,
-32,40,40,40,67,39,32,40,95,53,49,48,32,95,50,57,49,41,41,32,
-40,40,67,32,40,95,51,56,48,32,95,50,57,50,41,41,32,95,51,55,
-50,41,41,32,35,49,41,41,32,40,40,40,67,39,32,40,95,53,48,57,
-32,95,50,57,49,41,41,32,40,40,67,32,40,95,51,56,49,32,95,50,
-57,50,41,41,32,95,51,55,50,41,41,32,95,51,55,50,41,41,41,41,
-41,41,32,40,40,67,39,32,40,67,39,32,40,95,53,48,57,32,95,50,
-57,49,41,41,41,32,40,95,53,49,48,32,95,50,57,49,41,41,41,41,
-32,40,40,65,32,58,51,52,48,32,40,40,95,50,55,50,32,95,52,52,
-50,41,32,40,40,95,50,55,50,32,40,95,52,52,52,32,40,40,67,32,
-40,95,50,49,49,32,95,50,57,53,41,41,32,35,48,41,41,41,32,95,
-52,52,50,41,41,41,32,40,40,65,32,58,51,52,49,32,40,40,40,67,
-39,32,83,41,32,40,40,40,83,39,32,40,67,39,32,67,41,41,32,40,
-40,66,32,40,66,32,40,40,83,39,32,40,83,39,32,95,49,50,49,41,
-41,32,40,67,32,40,95,53,50,55,32,95,50,57,54,41,41,41,41,41,
-32,40,40,66,32,40,66,32,40,40,67,39,32,40,67,39,32,95,49,50,
-50,41,41,32,40,67,32,40,95,50,49,49,32,95,50,57,53,41,41,41,
-41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,89,32,40,
-40,40,67,39,32,40,67,39,32,67,41,41,32,40,40,66,32,40,67,32,
-40,40,40,67,39,32,83,39,41,32,83,39,41,32,40,40,40,67,39,32,
-66,41,32,40,85,32,95,49,50,53,41,41,32,40,90,32,75,41,41,41,
-41,41,32,40,40,66,32,40,40,67,39,32,40,67,39,32,66,41,41,32,
-66,39,41,41,32,40,40,66,32,40,40,83,39,32,66,41,32,40,40,66,
-32,40,83,39,32,66,41,41,32,40,40,66,32,40,66,32,95,49,50,49,
-41,41,32,40,95,53,50,55,32,95,50,57,54,41,41,41,41,41,32,40,
-40,67,39,32,66,41,32,40,40,66,32,40,67,39,32,66,41,41,32,40,
-40,66,32,40,66,32,95,49,50,50,41,41,32,40,95,50,49,49,32,95,
-50,57,53,41,41,41,41,41,41,41,41,32,40,95,50,53,32,34,108,116,
-87,46,99,109,112,34,41,41,41,41,32,95,52,52,50,41,41,32,95,52,
-52,50,41,41,41,41,32,95,52,50,56,41,41,32,95,52,50,56,41,41,
-32,40,40,65,32,58,51,52,50,32,40,40,83,32,66,41,32,40,40,66,
-32,90,41,32,40,40,66,32,40,66,32,40,80,32,40,40,95,51,54,57,
-32,95,51,55,48,41,32,95,52,56,48,41,41,41,41,32,40,40,66,32,
-90,41,32,40,40,66,32,90,41,32,40,40,66,32,40,83,32,73,41,41,
-32,40,40,66,32,90,41,32,40,40,66,32,40,66,32,40,80,32,40,40,
-95,51,54,57,32,95,51,55,48,41,32,95,52,56,48,41,41,41,41,32,
-40,40,66,32,90,41,32,40,40,66,32,90,41,32,40,40,67,32,66,41,
-32,40,40,40,83,39,32,40,83,39,32,83,41,41,32,40,40,66,32,40,
-66,32,40,67,32,83,41,41,41,32,40,40,40,67,39,32,40,67,39,32,
-66,41,41,32,40,40,66,32,40,66,32,40,67,39,32,80,41,41,41,32,
-40,40,40,67,39,32,66,41,32,66,41,32,40,40,40,67,39,32,66,41,
-32,40,40,66,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,
-95,51,54,57,41,41,32,95,51,52,51,41,41,41,32,40,67,32,40,95,
-51,52,52,32,95,51,50,57,41,41,41,41,41,41,32,40,90,32,75,41,
-41,41,41,32,40,40,40,67,39,32,66,41,32,66,41,32,40,40,40,83,
-39,32,40,83,39,32,40,83,39,32,83,41,41,41,32,40,40,66,32,40,
-66,32,40,66,32,40,67,32,83,41,41,41,41,32,40,40,40,67,39,32,
-40,67,39,32,40,67,39,32,66,41,41,41,32,40,40,66,32,40,66,32,
-40,66,32,40,67,39,32,80,41,41,41,41,32,40,40,40,67,39,32,66,
-41,32,40,40,66,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,
-32,95,51,54,57,41,41,32,95,51,52,51,41,41,41,32,40,95,51,52,
-52,32,95,51,50,57,41,41,41,41,32,40,90,32,75,41,41,41,41,32,
-40,40,40,67,39,32,66,41,32,40,40,66,32,40,67,39,32,66,41,41,
-32,40,40,66,32,40,66,32,95,51,54,57,41,41,32,95,51,52,51,41,
-41,41,32,95,51,52,53,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,32,40,40,65,32,58,51,52,51,32,40,40,40,67,39,32,67,
-41,32,40,40,40,67,39,32,67,41,32,40,95,50,49,49,32,95,51,50,
-55,41,41,32,95,51,55,49,41,41,32,95,51,55,48,41,41,32,40,40,
-65,32,58,51,52,52,32,40,40,40,83,39,32,40,67,39,32,66,41,41,
-32,40,40,66,32,85,41,32,40,40,67,32,40,40,83,32,40,40,67,32,
-40,95,50,49,49,32,95,50,57,53,41,41,32,35,48,41,41,32,40,40,
-67,32,79,41,32,75,41,41,41,32,95,52,56,48,41,41,41,32,40,40,
-66,32,40,40,83,39,32,66,41,32,40,40,66,32,40,67,39,32,40,40,
-83,39,32,95,52,56,49,41,32,40,40,67,32,40,95,51,56,49,32,95,
-50,57,50,41,41,32,95,51,55,50,41,41,41,41,32,40,40,67,39,32,
-67,41,32,40,40,67,39,32,95,51,52,52,41,32,40,40,67,32,40,95,
-51,56,48,32,95,50,57,50,41,41,32,95,51,55,50,41,41,41,41,41,
-41,32,40,40,67,39,32,40,67,39,32,40,95,53,48,57,32,95,50,57,
-49,41,41,41,32,40,67,32,40,95,53,49,49,32,95,50,57,49,41,41,
-41,41,41,41,32,40,40,65,32,58,51,52,53,32,40,40,66,32,40,66,
-32,40,95,52,49,55,32,95,51,51,52,41,41,41,32,40,40,66,32,40,
-66,32,40,40,95,52,51,49,32,95,52,56,50,41,32,40,40,95,52,49,
-50,32,40,40,67,32,95,52,54,53,41,32,35,48,41,41,32,40,40,95,
-49,57,51,32,95,50,48,55,41,32,35,48,41,41,41,41,41,32,40,40,
-66,32,95,52,49,50,41,32,40,95,51,52,52,32,95,51,50,57,41,41,
-41,41,41,32,40,40,65,32,58,51,52,54,32,40,40,66,32,40,83,32,
-73,41,41,32,40,40,66,32,90,41,32,40,40,66,32,40,66,32,40,80,
-32,40,95,50,53,32,34,73,110,116,101,103,101,114,58,32,100,105,118,105,
-115,105,111,110,32,98,121,32,48,34,41,41,41,41,32,40,40,66,32,90,
-41,32,40,40,66,32,90,41,32,40,40,67,32,66,41,32,40,40,66,32,
-40,66,32,40,83,32,40,85,32,40,40,80,32,40,40,95,51,54,57,32,
-95,51,55,48,41,32,95,52,56,48,41,41,32,40,40,95,51,54,57,32,
-95,51,55,48,41,32,95,52,56,48,41,41,41,41,41,41,32,40,40,66,
-32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,
-40,40,83,39,32,66,41,32,66,41,32,40,40,40,67,39,32,40,67,39,
-32,40,67,39,32,40,67,39,32,83,41,41,41,41,32,40,40,40,67,39,
-32,40,67,39,32,40,83,39,32,40,67,39,32,40,67,39,32,83,41,41,
-41,41,41,32,40,40,40,67,39,32,40,83,39,32,40,67,39,32,66,41,
-41,41,32,40,40,66,32,40,66,32,66,39,41,41,32,40,40,66,32,40,
-66,32,40,66,32,40,67,39,32,66,41,41,41,41,32,40,40,66,32,40,
-66,32,40,66,32,40,67,32,40,95,52,50,53,32,40,40,67,32,40,95,
-50,49,49,32,95,50,57,53,41,41,32,35,48,41,41,41,41,41,41,32,
-40,40,40,67,39,32,66,41,32,66,41,32,40,40,40,67,39,32,66,41,
-32,40,40,66,32,40,67,39,32,66,41,41,32,95,51,52,55,41,41,32,
-95,51,53,48,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,40,
-67,39,32,83,41,32,40,40,66,32,40,40,67,39,32,95,51,52,57,41,
-32,40,85,32,65,41,41,41,32,95,52,55,52,41,41,41,41,32,40,40,
-40,67,39,32,40,67,39,32,66,41,41,32,40,40,66,32,66,39,41,32,
-40,40,66,32,66,39,41,32,95,51,52,55,41,41,41,32,40,40,66,32,
-40,40,67,39,32,66,41,32,80,41,41,32,40,40,66,32,95,52,56,50,
-41,32,40,85,32,75,41,41,41,41,41,41,41,32,40,40,67,39,32,95,
-52,52,49,41,32,95,52,50,56,41,41,41,32,95,52,55,53,41,41,41,
-41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,51,52,55,32,40,
-40,66,32,40,66,32,85,41,41,32,40,40,40,83,39,32,40,67,39,32,
-40,67,39,32,66,41,41,41,32,40,40,66,32,40,66,32,40,66,32,80,
-41,41,41,32,40,40,66,32,40,66,32,95,51,50,56,41,41,32,95,51,
-52,51,41,41,41,32,95,51,50,56,41,41,41,32,40,40,65,32,58,51,
-52,56,32,40,40,40,67,39,32,67,41,32,95,51,52,54,41,32,75,41,
-41,32,40,40,65,32,58,51,52,57,32,40,40,40,67,39,32,67,41,32,
-40,40,66,32,40,67,32,40,40,40,67,39,32,89,41,32,40,40,66,32,
-40,66,32,40,40,83,39,32,67,41,32,40,40,66,32,40,67,32,83,39,
-41,41,32,40,40,66,32,40,67,32,80,41,41,32,40,40,67,32,79,41,
-32,75,41,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,66,
-41,41,32,40,40,66,32,40,66,32,40,67,39,32,66,41,41,41,32,40,
-40,66,32,40,66,32,40,66,32,67,41,41,41,32,40,40,40,83,39,32,
-40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,40,67,39,32,83,
-41,41,41,32,40,40,66,32,40,67,32,67,39,41,41,32,40,67,32,40,
-95,51,56,49,32,95,50,57,50,41,41,41,41,41,32,40,40,66,32,40,
-67,39,32,95,52,56,49,41,41,32,40,67,32,40,95,51,56,48,32,95,
-50,57,50,41,41,41,41,41,41,41,32,40,40,66,32,40,95,53,48,57,
-32,95,50,57,49,41,41,32,40,40,67,32,40,95,53,49,49,32,95,50,
-57,49,41,41,32,95,51,55,50,41,41,41,41,41,32,95,51,50,57,41,
-41,41,32,95,52,52,50,41,41,32,95,52,56,48,41,41,32,40,40,65,
-32,58,51,53,48,32,40,40,66,32,40,67,32,40,40,40,83,39,32,67,
-41,32,40,40,66,32,40,40,67,39,32,67,41,32,40,40,40,83,39,32,
-40,83,39,32,66,41,41,32,40,40,66,32,40,40,83,39,32,83,41,32,
-40,40,66,32,40,40,83,39,32,83,41,32,40,40,66,32,40,83,32,40,
-40,67,32,95,51,54,51,41,32,95,51,53,50,41,41,41,32,40,40,40,
-67,39,32,66,41,32,40,40,66,32,80,41,32,95,51,53,49,41,41,32,
-95,51,53,49,41,41,41,41,32,40,40,66,32,40,40,67,39,32,66,41,
-32,40,40,66,32,80,41,32,40,40,66,32,95,51,53,49,41,32,40,40,
-67,32,95,51,51,51,41,32,95,51,53,51,41,41,41,41,41,32,40,40,
-66,32,40,66,32,95,51,53,49,41,41,32,40,67,32,95,51,51,48,41,
-41,41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,66,39,32,95,
-51,51,51,41,41,32,40,67,32,95,51,52,50,41,41,41,41,32,40,40,
-40,67,39,32,40,83,39,32,67,41,41,32,40,40,40,83,39,32,40,67,
-39,32,40,83,39,32,89,41,41,41,32,40,40,66,32,40,40,83,39,32,
-66,41,32,40,66,39,32,40,40,66,32,40,83,39,32,67,41,41,32,40,
-40,66,32,67,41,32,40,40,67,39,32,95,51,54,54,41,32,95,51,51,
-50,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,40,67,39,32,
-40,67,39,32,83,41,41,32,40,40,40,67,39,32,67,41,32,40,40,66,
-32,40,40,67,39,32,67,39,41,32,83,39,41,41,32,40,40,40,67,39,
-32,40,67,39,32,40,67,39,32,95,51,52,56,41,41,41,32,40,40,66,
-32,40,40,83,39,32,66,41,32,95,51,51,48,41,41,32,40,40,66,32,
-40,40,67,39,32,66,41,32,95,51,51,48,41,41,32,40,67,32,95,51,
-52,56,41,41,41,41,32,95,51,53,52,41,41,41,32,73,41,41,41,41,
-32,40,40,40,67,39,32,66,41,32,40,66,39,32,95,51,51,51,41,41,
-32,40,67,32,95,51,52,50,41,41,41,41,41,32,95,51,52,56,41,41,
-32,40,40,67,32,95,51,51,48,41,32,95,51,53,51,41,41,41,41,41,
-32,40,40,66,32,40,95,50,55,48,32,40,95,51,54,57,32,95,51,55,
-48,41,41,41,32,40,40,40,83,39,32,95,52,56,50,41,32,40,40,40,
-67,39,32,95,52,54,53,41,32,40,40,40,67,39,32,40,95,53,49,48,
-32,95,50,57,49,41,41,32,95,52,50,56,41,32,35,49,41,41,32,35,
-48,41,41,32,40,40,40,67,39,32,79,41,32,95,52,55,52,41,32,75,
-41,41,41,41,41,32,40,95,51,54,57,32,95,51,55,48,41,41,41,41,
-32,40,95,51,54,57,32,95,51,55,48,41,41,41,32,40,40,65,32,58,
-51,53,49,32,40,85,32,65,41,41,32,40,40,65,32,58,51,53,50,32,
-40,40,95,51,54,57,32,95,51,55,48,41,32,95,52,56,48,41,41,32,
-40,40,65,32,58,51,53,51,32,40,40,95,51,54,57,32,95,51,55,48,
-41,32,40,40,79,32,35,49,41,32,75,41,41,41,32,40,40,65,32,58,
-51,53,52,32,40,40,95,51,54,57,32,95,51,55,48,41,32,40,40,79,
-32,35,50,41,32,75,41,41,41,32,40,40,65,32,58,51,53,53,32,40,
-40,95,51,54,57,32,95,51,55,48,41,32,40,40,79,32,35,49,48,41,
-32,75,41,41,41,32,40,40,65,32,58,51,53,54,32,40,40,95,51,54,
-57,32,95,51,55,49,41,32,40,40,79,32,35,49,41,32,75,41,41,41,
-32,40,40,65,32,58,51,53,55,32,40,85,32,40,40,66,32,40,83,32,
-40,85,32,40,40,79,32,35,52,56,41,32,75,41,41,41,41,32,40,40,
-66,32,90,41,32,40,40,66,32,90,41,32,40,40,67,32,40,40,67,32,
-83,39,41,32,95,51,53,56,41,41,32,40,40,66,32,40,95,52,56,49,
-32,35,52,53,41,41,32,95,51,53,56,41,41,41,41,41,41,41,32,40,
-40,65,32,58,51,53,56,32,40,40,83,32,40,85,32,75,41,41,32,40,
-90,32,40,90,32,40,40,66,32,40,40,40,83,39,32,95,52,56,50,41,
-32,40,40,66,32,95,51,53,56,41,32,40,40,66,32,95,51,52,48,41,
-32,40,40,67,32,40,40,67,32,66,41,32,40,40,40,83,39,32,66,41,
-32,80,41,32,40,40,66,32,90,41,32,40,40,66,32,40,67,32,80,41,
-41,32,40,90,32,75,41,41,41,41,41,41,32,40,40,40,110,111,77,97,
-116,99,104,32,75,41,32,35,48,41,32,35,48,41,41,41,41,41,32,40,
-40,40,67,39,32,79,41,32,40,40,66,32,95,49,51,55,41,32,40,40,
-66,32,40,40,95,53,48,57,32,95,50,57,49,41,32,40,95,49,51,56,
-32,35,52,56,41,41,41,32,40,40,67,32,40,40,67,32,66,41,32,40,
-90,32,40,40,83,32,80,41,32,40,40,66,32,40,67,32,80,41,41,32,
-40,90,32,75,41,41,41,41,41,41,32,40,40,40,110,111,77,97,116,99,
-104,32,75,41,32,35,48,41,32,35,48,41,41,41,41,41,32,75,41,41,
-41,32,40,40,67,32,95,51,52,57,41,32,35,49,48,41,41,41,41,41,
-41,32,40,40,65,32,58,51,53,57,32,40,40,83,32,40,40,67,32,83,
-41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,40,67,32,40,
-40,67,32,61,61,41,32,35,52,53,41,41,41,32,40,40,66,32,40,95,
-53,49,50,32,95,51,50,50,41,41,32,95,51,54,48,41,41,41,41,32,
-95,51,54,48,41,41,32,40,40,65,32,58,51,54,48,32,40,40,95,52,
-49,54,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,95,53,48,
-57,32,95,51,50,50,41,41,32,40,40,67,32,40,95,53,49,49,32,95,
-51,50,50,41,41,32,95,51,53,53,41,41,41,32,40,40,66,32,95,51,
-55,51,41,32,40,40,40,67,39,32,40,95,53,49,48,32,95,50,57,49,
-41,41,32,95,49,51,56,41,32,40,95,49,51,56,32,35,52,56,41,41,
-41,41,41,32,95,51,53,50,41,41,32,40,40,65,32,58,51,54,49,32,
-40,40,67,32,66,41,32,40,40,40,67,39,32,66,41,32,66,41,32,40,
-40,40,67,39,32,66,41,32,40,40,66,32,40,67,39,32,66,41,41,32,
-40,40,66,32,40,66,32,95,49,50,50,41,41,32,40,95,50,49,49,32,
-95,51,50,55,41,41,41,41,32,40,95,50,49,49,32,40,95,52,48,48,
-32,95,50,57,53,41,41,41,41,41,41,32,40,40,65,32,58,51,54,50,
-32,40,40,66,32,40,66,32,95,49,50,51,41,41,32,95,51,54,49,41,
-41,32,40,40,65,32,58,51,54,51,32,40,40,67,32,66,41,32,40,40,
-40,83,39,32,67,41,32,40,40,66,32,40,67,32,83,39,41,41,32,40,
-40,67,32,66,41,32,40,40,40,67,39,32,67,41,32,40,40,66,32,40,
-67,32,67,39,41,41,32,95,51,52,49,41,41,32,95,49,50,53,41,41,
-41,41,32,40,40,67,32,66,41,32,40,40,66,32,40,40,67,39,32,66,
-41,32,40,85,32,95,49,50,54,41,41,41,32,40,67,32,95,51,52,49,
-41,41,41,41,41,41,32,40,40,65,32,58,51,54,52,32,40,40,66,32,
-40,66,32,95,49,50,51,41,41,32,40,67,32,95,51,54,51,41,41,41,
-32,40,40,65,32,58,51,54,53,32,40,67,32,95,51,54,51,41,41,32,
-40,40,65,32,58,51,54,54,32,40,40,66,32,40,66,32,95,49,50,51,
-41,41,32,95,51,54,51,41,41,32,40,40,65,32,58,51,54,55,32,40,
-85,32,40,40,67,32,83,41,32,40,95,52,56,49,32,35,45,49,41,41,
-41,41,32,40,40,65,32,58,51,54,56,32,40,40,83,32,40,40,67,32,
-83,41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,40,67,32,
-40,40,67,32,61,61,41,32,35,45,49,41,41,41,32,40,95,51,54,57,
-32,95,51,55,49,41,41,41,41,32,40,95,51,54,57,32,95,51,55,48,
-41,41,41,32,40,40,65,32,58,51,54,57,32,80,41,32,40,40,65,32,
-58,51,55,48,32,75,41,32,40,40,65,32,58,51,55,49,32,65,41,32,
-40,40,65,32,58,51,55,50,32,40,40,40,40,95,49,52,56,54,32,95,
-49,53,51,49,41,32,35,54,52,41,32,35,51,50,55,54,56,41,32,35,
-50,49,52,55,52,56,51,54,52,56,41,41,32,40,40,65,32,58,51,55,
-51,32,40,40,83,32,40,40,40,67,39,32,67,41,32,40,40,83,32,40,
-40,40,83,39,32,67,39,41,32,40,40,66,32,83,39,41,32,40,40,67,
-32,95,49,52,57,49,41,32,35,48,41,41,41,32,40,40,40,67,39,32,
-67,41,32,40,40,40,67,39,32,40,83,39,32,67,39,41,41,32,95,49,
-52,56,54,41,32,40,40,66,32,40,66,32,40,95,49,50,54,32,40,40,
-40,110,111,77,97,116,99,104,32,34,46,47,108,105,98,47,68,97,116,97,
-47,73,110,116,101,103,101,114,95,84,121,112,101,46,104,115,34,41,32,35,
-50,52,41,32,35,49,41,41,41,41,32,40,40,66,32,40,66,32,40,95,
-51,54,57,32,95,51,55,49,41,41,41,32,85,41,41,41,41,32,40,40,
-95,51,54,57,32,95,51,55,49,41,32,40,40,79,32,35,48,41,32,40,
-40,79,32,35,48,41,32,40,40,79,32,35,50,41,32,75,41,41,41,41,
-41,41,41,32,40,40,66,32,40,66,32,40,95,51,54,57,32,95,51,55,
-48,41,41,41,32,85,41,41,41,32,40,89,32,40,40,40,67,39,32,67,
-41,32,40,40,66,32,40,83,32,40,40,67,32,61,61,41,32,35,48,41,
-41,41,32,40,40,66,32,40,40,83,39,32,95,52,56,49,41,32,40,40,
-67,32,95,49,52,53,53,41,32,95,51,55,50,41,41,41,32,40,40,67,
-32,66,41,32,40,40,67,32,95,49,52,53,52,41,32,95,51,55,50,41,
-41,41,41,41,32,95,52,56,48,41,41,41,41,32,40,95,49,52,53,50,
-32,35,48,41,41,41,32,40,40,65,32,58,51,55,52,32,40,85,32,40,
-40,40,67,39,32,66,41,32,40,40,66,32,95,49,52,53,51,41,32,40,
-40,80,32,35,49,41,32,40,40,95,49,52,53,50,32,35,48,41,32,35,
-49,41,41,41,41,32,40,40,80,32,35,48,41,32,40,40,83,32,80,41,
-32,40,40,40,83,39,32,40,83,39,32,80,41,41,32,40,40,40,67,39,
-32,66,41,32,95,49,52,53,49,41,32,40,95,49,52,53,51,32,95,51,
-55,50,41,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,40,
-67,39,32,66,41,32,40,66,39,32,95,49,52,53,49,41,41,32,40,40,
-66,32,40,66,32,40,95,49,52,53,51,32,95,51,55,50,41,41,41,32,
-40,40,40,67,39,32,66,41,32,95,49,52,53,49,41,32,40,95,49,52,
-53,51,32,95,51,55,50,41,41,41,41,41,41,41,41,41,41,41,32,40,
-40,65,32,58,51,55,53,32,40,40,66,32,40,95,51,54,57,32,95,51,
-55,48,41,41,32,40,89,32,40,40,40,67,39,32,67,41,32,40,40,66,
-32,40,83,32,40,40,67,32,95,49,52,57,50,41,32,35,48,41,41,41,
-32,40,40,66,32,40,40,83,39,32,95,52,56,49,41,32,40,40,66,32,
-95,49,52,57,56,41,32,40,40,67,32,95,49,52,55,54,41,32,40,95,
-49,52,57,57,32,95,51,55,50,41,41,41,41,41,32,40,40,67,32,66,
-41,32,40,40,67,32,95,49,52,55,53,41,32,40,95,49,52,57,57,32,
-95,51,55,50,41,41,41,41,41,41,32,95,52,56,48,41,41,41,41,32,
-40,40,65,32,58,51,55,54,32,40,40,66,32,95,49,52,57,57,41,32,
-95,51,55,52,41,41,32,40,40,65,32,58,51,55,55,32,40,85,32,40,
-40,40,67,39,32,66,41,32,40,40,66,32,95,49,52,54,48,41,32,40,
-40,80,32,38,49,46,48,41,32,40,40,95,49,52,53,57,32,38,48,46,
-48,41,32,38,49,46,48,41,41,41,41,32,40,89,32,40,40,66,32,40,
-80,32,38,48,46,48,41,41,32,40,40,66,32,40,40,67,39,32,66,41,
-32,40,40,66,32,95,49,52,53,56,41,32,95,49,52,55,49,41,41,41,
-32,40,66,32,40,95,49,52,54,48,32,40,95,49,52,55,49,32,95,51,
-55,50,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,51,55,56,
-32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
-40,66,32,67,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,
-66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,41,41,32,40,
-40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,
-41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,
-32,40,40,66,32,40,66,32,40,66,32,67,41,41,41,32,40,40,66,32,
-40,66,32,67,41,41,32,80,41,41,41,41,41,41,41,32,40,40,65,32,
-58,51,55,57,32,40,85,32,40,90,32,40,90,32,40,90,32,40,90,32,
-40,90,32,40,90,32,75,41,41,41,41,41,41,41,41,32,40,40,65,32,
-58,51,56,48,32,40,85,32,40,75,32,40,90,32,40,90,32,40,90,32,
-40,90,32,40,90,32,75,41,41,41,41,41,41,41,41,32,40,40,65,32,
-58,51,56,49,32,40,85,32,40,75,32,40,75,32,40,90,32,40,90,32,
-40,90,32,40,90,32,75,41,41,41,41,41,41,41,41,32,40,40,65,32,
-58,51,56,50,32,40,85,32,40,75,32,40,75,32,40,75,32,40,90,32,
-40,90,32,40,90,32,75,41,41,41,41,41,41,41,41,32,40,40,65,32,
-58,51,56,51,32,40,85,32,40,75,32,40,75,32,40,75,32,40,75,32,
-40,90,32,40,90,32,75,41,41,41,41,41,41,41,41,32,40,40,65,32,
-58,51,56,52,32,40,85,32,40,75,32,40,75,32,40,75,32,40,75,32,
-40,75,32,40,90,32,75,41,41,41,41,41,41,41,41,32,40,40,65,32,
-58,51,56,53,32,40,85,32,40,75,32,40,75,32,40,75,32,40,75,32,
-40,75,32,40,75,32,75,41,41,41,41,41,41,41,41,32,40,40,65,32,
-58,51,56,54,32,40,85,32,40,75,32,40,75,32,40,75,32,40,75,32,
-40,75,32,40,75,32,65,41,41,41,41,41,41,41,41,32,40,40,65,32,
-58,51,56,55,32,40,40,40,67,39,32,40,67,39,32,67,41,41,32,95,
-51,56,52,41,32,75,41,41,32,40,40,65,32,58,51,56,56,32,40,40,
-40,67,39,32,40,67,39,32,67,41,41,32,95,51,56,52,41,32,65,41,
-41,32,40,40,65,32,58,51,56,57,32,40,40,40,67,39,32,40,67,39,
-32,67,41,41,32,95,51,56,53,41,32,75,41,41,32,40,40,65,32,58,
-51,57,48,32,40,40,40,67,39,32,40,67,39,32,67,41,41,32,95,51,
-56,53,41,32,65,41,41,32,40,40,65,32,58,51,57,49,32,40,40,40,
-83,39,32,40,83,39,32,40,83,39,32,80,41,41,41,32,95,51,56,48,
-41,32,95,51,56,49,41,41,32,40,40,65,32,58,51,57,50,32,40,40,
-40,83,39,32,66,41,32,40,40,66,32,83,41,32,40,40,40,67,39,32,
-40,67,39,32,83,41,41,32,40,40,40,83,39,32,40,83,39,32,40,83,
-39,32,83,41,41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,
-32,40,40,66,32,40,66,32,67,41,41,32,40,40,40,83,39,32,66,41,
-32,40,40,40,83,39,32,67,39,41,32,40,40,66,32,95,50,49,49,41,
-32,40,40,66,32,40,85,32,75,41,41,32,95,51,55,57,41,41,41,32,
-40,40,66,32,95,53,49,52,41,32,40,40,66,32,40,85,32,65,41,41,
-32,95,51,55,57,41,41,41,41,32,40,40,40,83,39,32,66,41,32,40,
-40,66,32,95,53,49,50,41,32,40,40,66,32,40,85,32,65,41,41,32,
-95,51,55,57,41,41,41,32,40,40,66,32,95,53,49,52,41,32,40,40,
-66,32,40,85,32,65,41,41,32,95,51,55,57,41,41,41,41,41,41,32,
-40,40,83,32,73,41,32,40,90,32,75,41,41,41,41,32,40,40,40,83,
-39,32,66,41,32,40,40,66,32,40,67,39,32,66,41,41,32,40,40,66,
-32,40,66,32,80,41,41,32,40,40,83,32,40,40,40,67,39,32,67,39,
-41,32,40,40,66,32,95,53,49,48,41,32,40,40,66,32,40,85,32,65,
-41,41,32,95,51,55,57,41,41,41,32,40,85,32,75,41,41,41,32,40,
-40,40,67,39,32,95,53,49,53,41,32,40,40,66,32,40,85,32,65,41,
-41,32,95,51,55,57,41,41,32,40,95,51,55,51,32,35,49,41,41,41,
-41,41,41,32,40,40,66,32,67,41,32,40,40,66,32,95,53,48,57,41,
-32,40,40,66,32,40,85,32,65,41,41,32,95,51,55,57,41,41,41,41,
-41,41,32,40,85,32,65,41,41,41,41,32,95,51,56,52,41,41,32,40,
-40,65,32,58,51,57,51,32,40,75,32,40,110,111,68,101,102,97,117,108,
-116,32,34,73,110,116,101,103,114,97,108,46,116,111,73,110,116,101,103,101,
-114,34,41,41,41,32,40,40,65,32,58,51,57,52,32,40,40,40,83,39,
-32,40,67,39,32,66,41,41,32,40,40,40,83,39,32,66,41,32,40,40,
-66,32,89,41,32,40,40,40,67,39,32,40,67,39,32,40,83,39,32,67,
-41,41,41,32,40,40,40,83,39,32,66,41,32,40,66,39,32,40,40,66,
-32,83,41,32,40,40,40,83,39,32,67,41,32,40,40,66,32,95,50,49,
-49,41,32,40,40,66,32,40,85,32,75,41,41,32,95,51,55,57,41,41,
-41,32,40,40,40,67,39,32,95,53,49,53,41,32,40,40,66,32,40,85,
-32,65,41,41,32,95,51,55,57,41,41,32,40,95,51,55,51,32,35,48,
-41,41,41,41,41,41,32,40,40,66,32,40,40,67,39,32,66,41,32,83,
-41,41,32,95,51,56,49,41,41,41,32,73,41,41,41,32,40,40,66,32,
-95,53,49,51,41,32,40,40,66,32,40,85,32,65,41,41,32,95,51,55,
-57,41,41,41,41,32,40,40,66,32,95,53,49,51,41,32,40,40,66,32,
-40,85,32,65,41,41,32,95,51,55,57,41,41,41,41,32,40,40,65,32,
-58,51,57,53,32,40,40,40,83,39,32,40,67,39,32,67,41,41,32,40,
-40,40,83,39,32,83,41,32,40,40,40,83,39,32,40,67,39,32,83,39,
-41,41,32,40,40,66,32,40,66,32,95,49,50,49,41,41,32,40,40,40,
-83,39,32,67,41,32,40,40,66,32,95,50,49,49,41,32,40,40,66,32,
-40,85,32,75,41,41,32,95,51,55,57,41,41,41,32,40,40,40,67,39,
-32,95,53,49,53,41,32,40,40,66,32,40,85,32,65,41,41,32,95,51,
-55,57,41,41,32,40,95,51,55,51,32,35,48,41,41,41,41,41,32,40,
-40,40,83,39,32,67,41,32,40,40,66,32,95,50,49,49,41,32,40,40,
-66,32,40,85,32,75,41,41,32,95,51,55,57,41,41,41,32,40,40,40,
-67,39,32,95,53,49,53,41,32,40,40,66,32,40,85,32,65,41,41,32,
-95,51,55,57,41,41,32,40,95,51,55,51,32,35,48,41,41,41,41,41,
-32,40,40,40,83,39,32,66,41,32,40,66,39,32,40,40,66,32,95,53,
-49,51,41,32,40,40,66,32,40,85,32,65,41,41,32,95,51,55,57,41,
-41,41,41,32,40,40,67,32,40,40,40,83,39,32,67,39,41,32,40,40,
-66,32,83,39,41,32,40,40,66,32,95,53,49,49,41,32,40,40,66,32,
-40,85,32,65,41,41,32,95,51,55,57,41,41,41,41,32,40,40,40,83,
-39,32,40,83,39,32,66,41,41,32,95,51,56,48,41,32,95,51,57,52,
-41,41,41,32,73,41,41,41,41,32,40,40,40,67,39,32,95,53,49,53,
-41,32,40,40,66,32,40,85,32,65,41,41,32,95,51,55,57,41,41,32,
-40,95,51,55,51,32,35,48,41,41,41,41,32,40,40,65,32,58,51,57,
-54,32,40,40,83,32,40,40,40,83,39,32,67,39,41,32,40,40,66,32,
-95,50,49,49,41,32,40,40,66,32,40,85,32,75,41,41,32,95,51,55,
-57,41,41,41,32,40,40,40,83,39,32,67,41,32,95,51,56,49,41,32,
-40,40,40,67,39,32,95,53,49,53,41,32,40,40,66,32,40,85,32,65,
-41,41,32,95,51,55,57,41,41,32,40,95,51,55,51,32,35,50,41,41,
-41,41,41,32,40,40,40,67,39,32,95,53,49,53,41,32,40,40,66,32,
-40,85,32,65,41,41,32,95,51,55,57,41,41,32,40,95,51,55,51,32,
-35,48,41,41,41,41,32,40,40,65,32,58,51,57,55,32,40,40,66,32,
-40,66,32,95,49,50,51,41,41,32,95,51,57,54,41,41,32,40,40,65,
-32,58,51,57,56,32,40,40,40,67,39,32,40,67,39,32,67,41,41,32,
-40,40,40,83,39,32,66,41,32,40,40,66,32,83,41,32,40,40,40,83,
-39,32,67,41,32,40,40,66,32,95,53,50,55,41,32,40,85,32,40,75,
-32,65,41,41,41,41,32,40,40,40,67,39,32,95,53,49,53,41,32,40,
-40,66,32,40,85,32,65,41,41,32,40,40,66,32,95,51,55,57,41,32,
-40,85,32,40,75,32,75,41,41,41,41,41,32,40,95,51,55,51,32,35,
-48,41,41,41,41,41,32,40,40,66,32,89,41,32,40,40,40,83,39,32,
-40,67,39,32,40,67,39,32,67,41,41,41,32,40,40,40,83,39,32,66,
-41,32,40,66,39,32,40,40,66,32,83,41,32,40,40,40,83,39,32,67,
-41,32,40,40,66,32,95,50,49,49,41,32,40,40,66,32,40,85,32,75,
-41,41,32,40,40,66,32,95,51,55,57,41,32,40,85,32,40,75,32,75,
-41,41,41,41,41,41,32,40,40,40,67,39,32,95,53,49,53,41,32,40,
-40,66,32,40,85,32,65,41,41,32,40,40,66,32,95,51,55,57,41,32,
-40,85,32,40,75,32,75,41,41,41,41,41,32,40,95,51,55,51,32,35,
-48,41,41,41,41,41,41,32,40,40,40,83,39,32,40,83,39,32,40,83,
-39,32,83,41,41,41,32,40,40,40,83,39,32,66,41,32,40,66,39,32,
-40,40,66,32,83,41,32,40,40,66,32,95,51,57,54,41,32,40,85,32,
-40,75,32,75,41,41,41,41,41,41,32,40,40,40,83,39,32,66,41,32,
-40,40,66,32,40,83,39,32,66,41,41,32,40,40,66,32,95,53,49,49,
-41,32,40,85,32,40,90,32,75,41,41,41,41,41,32,40,40,40,83,39,
-32,40,67,39,32,40,67,39,32,66,41,41,41,32,40,40,66,32,40,67,
-32,66,41,41,32,40,40,40,67,39,32,83,41,32,40,40,66,32,95,53,
-49,49,41,32,40,85,32,40,90,32,75,41,41,41,41,32,73,41,41,41,
-32,40,40,40,83,39,32,67,41,32,40,40,66,32,95,51,56,48,41,32,
-40,85,32,40,75,32,75,41,41,41,41,32,40,40,40,67,39,32,95,53,
-49,53,41,32,40,40,66,32,40,85,32,65,41,41,32,40,40,66,32,95,
-51,55,57,41,32,40,85,32,40,75,32,75,41,41,41,41,41,32,40,95,
-51,55,51,32,35,50,41,41,41,41,41,41,41,32,40,40,40,83,39,32,
-40,67,39,32,40,67,39,32,66,41,41,41,32,40,40,66,32,40,67,32,
-66,41,41,32,40,40,40,67,39,32,83,41,32,40,40,66,32,95,53,49,
-49,41,32,40,85,32,40,90,32,75,41,41,41,41,32,73,41,41,41,32,
-40,40,40,83,39,32,67,41,32,40,40,66,32,95,51,56,48,41,32,40,
-85,32,40,75,32,75,41,41,41,41,32,40,40,40,67,39,32,95,53,49,
-53,41,32,40,40,66,32,40,85,32,65,41,41,32,40,40,66,32,95,51,
-55,57,41,32,40,85,32,40,75,32,75,41,41,41,41,41,32,40,95,51,
-55,51,32,35,50,41,41,41,41,41,41,41,32,40,40,40,67,39,32,95,
-53,49,53,41,32,40,85,32,40,90,32,75,41,41,41,32,40,95,51,55,
-51,32,35,49,41,41,41,41,41,41,32,40,95,50,53,32,34,68,97,116,
-97,46,73,110,116,101,103,114,97,108,46,94,58,32,110,101,103,97,116,105,
-118,101,32,101,120,112,111,110,101,110,116,34,41,41,41,32,40,40,65,32,
-58,51,57,57,32,40,40,40,83,39,32,66,41,32,40,40,66,32,95,53,
-49,53,41,32,40,85,32,65,41,41,41,32,40,40,66,32,95,51,56,54,
-41,32,40,85,32,75,41,41,41,41,32,40,40,65,32,58,52,48,48,32,
-40,40,40,83,39,32,95,50,49,48,41,32,40,40,66,32,40,67,32,40,
-40,67,32,83,39,41,32,40,40,80,32,95,49,50,54,41,32,40,75,32,
-40,75,32,95,49,50,53,41,41,41,41,41,41,32,40,40,66,32,40,40,
-67,39,32,66,41,32,40,66,39,32,40,85,32,95,49,50,53,41,41,41,
-41,32,40,40,40,83,39,32,40,67,39,32,66,41,41,32,40,40,66,32,
-40,66,32,40,67,39,32,66,41,41,41,32,40,40,66,32,40,66,32,40,
-66,32,95,49,50,50,41,41,41,32,95,50,49,49,41,41,41,32,40,40,
-66,32,95,50,49,49,41,32,95,52,48,48,41,41,41,41,41,32,40,40,
-66,32,95,50,49,52,41,32,95,52,48,48,41,41,41,32,40,40,65,32,
-58,52,48,49,32,40,40,95,50,56,48,32,95,52,49,50,41,32,40,95,
-50,56,52,32,95,52,48,49,41,41,41,32,40,40,65,32,58,52,48,50,
-32,40,40,40,40,40,95,49,50,32,95,52,48,49,41,32,40,40,67,32,
-79,41,32,75,41,41,32,40,95,51,57,32,95,52,48,51,41,41,32,40,
-95,50,48,32,95,52,48,50,41,41,32,40,95,50,49,32,95,52,48,50,
-41,41,41,32,40,40,65,32,58,52,48,51,32,40,40,40,40,95,51,49,
-32,95,52,48,50,41,32,40,95,50,55,53,32,95,52,49,49,41,41,32,
-40,95,51,55,32,95,52,48,51,41,41,32,40,95,51,56,32,95,52,48,
-51,41,41,41,32,40,40,65,32,58,52,48,52,32,40,40,95,52,48,32,
-95,52,48,51,41,32,40,75,32,95,52,56,48,41,41,41,32,40,40,65,
-32,58,52,48,53,32,40,40,83,32,40,40,40,83,39,32,95,49,55,49,
-50,41,32,40,90,32,95,49,55,49,53,41,41,32,40,40,66,32,95,49,
-55,49,55,41,32,95,52,48,53,41,41,41,32,40,40,66,32,95,49,55,
-49,56,41,32,95,52,48,53,41,41,41,32,40,40,65,32,58,52,48,54,
-32,40,40,40,40,40,95,48,32,95,52,48,50,41,32,95,52,56,48,41,
-32,95,52,56,50,41,32,40,95,56,32,95,52,48,54,41,41,32,40,95,
-57,32,95,52,48,54,41,41,41,32,40,40,65,32,58,52,48,55,32,40,
-95,53,57,53,32,95,52,56,50,41,41,32,40,40,65,32,58,52,48,56,
-32,40,40,40,40,95,53,48,48,32,95,52,48,55,41,32,95,52,56,48,
-41,32,40,95,53,48,54,32,95,52,48,56,41,41,32,95,52,49,48,41,
-41,32,40,40,65,32,58,52,48,57,32,40,40,80,32,95,49,50,54,41,
-32,40,75,32,40,75,32,95,49,50,53,41,41,41,41,32,40,40,65,32,
-58,52,49,48,32,40,40,95,52,49,52,32,95,52,56,50,41,32,95,52,
-56,48,41,41,32,40,40,65,32,58,52,49,49,32,40,40,66,32,40,95,
-50,55,50,32,95,52,49,48,41,41,32,95,52,49,50,41,41,32,40,40,
-65,32,58,52,49,50,32,40,40,66,32,89,41,32,40,40,66,32,40,66,
-32,40,80,32,95,52,56,48,41,41,41,32,40,40,66,32,40,67,39,32,
-66,41,41,32,40,66,32,95,52,56,49,41,41,41,41,41,32,40,40,65,
-32,58,52,49,51,32,40,40,66,32,89,41,32,40,40,66,32,40,66,32,
-40,80,32,95,52,56,48,41,41,41,32,40,40,40,67,39,32,40,83,39,
-32,83,41,41,32,40,67,39,32,83,39,41,41,32,40,40,67,39,32,66,
-41,32,95,52,56,49,41,41,41,41,41,32,40,40,65,32,58,52,49,52,
-32,40,40,66,32,40,66,32,89,41,41,32,40,40,66,32,40,40,67,39,
-32,66,41,32,80,41,41,32,40,67,39,32,66,41,41,41,41,32,40,40,
-65,32,58,52,49,53,32,40,40,66,32,40,80,32,40,95,50,53,32,34,
-102,111,108,100,114,49,34,41,41,41,32,95,52,49,52,41,41,32,40,40,
-65,32,58,52,49,54,32,40,40,66,32,89,41,32,40,40,66,32,40,66,
-32,40,83,32,80,41,41,41,32,40,40,67,39,32,66,41,32,66,41,41,
-41,41,32,40,40,65,32,58,52,49,55,32,40,40,66,32,40,80,32,40,
-95,50,53,32,34,102,111,108,100,108,49,34,41,41,41,32,95,52,49,54,
-41,41,32,40,40,65,32,58,52,49,56,32,40,40,66,32,40,80,32,40,
-95,50,53,32,34,109,105,110,105,109,117,109,34,41,41,41,32,40,40,66,
-32,95,52,49,52,41,32,40,40,40,67,39,32,40,83,39,32,67,41,41,
-32,40,40,40,67,39,32,40,67,39,32,83,41,41,32,95,53,50,55,41,
-32,73,41,41,32,73,41,41,41,41,32,40,40,65,32,58,52,49,57,32,
-40,40,66,32,40,80,32,40,95,50,53,32,34,109,97,120,105,109,117,109,
-34,41,41,41,32,40,40,66,32,95,52,49,52,41,32,40,40,40,67,39,
-32,40,83,39,32,67,41,41,32,40,40,40,67,39,32,40,67,39,32,83,
-41,41,32,95,53,50,57,41,32,73,41,41,32,73,41,41,41,41,32,40,
-40,65,32,58,52,50,48,32,40,40,40,83,39,32,95,52,49,52,41,32,
-95,53,48,57,41,32,40,40,67,32,95,53,49,53,41,32,40,95,51,55,
-51,32,35,48,41,41,41,41,32,40,40,65,32,58,52,50,49,32,40,40,
-40,83,39,32,95,52,49,52,41,32,95,53,49,49,41,32,40,40,67,32,
-95,53,49,53,41,32,40,95,51,55,51,32,35,49,41,41,41,41,32,40,
-40,65,32,58,52,50,50,32,40,40,95,52,49,52,32,95,49,50,50,41,
-32,95,49,50,54,41,41,32,40,40,65,32,58,52,50,51,32,40,40,95,
-52,49,52,32,95,49,50,49,41,32,95,49,50,53,41,41,32,40,40,65,
-32,58,52,50,52,32,40,40,66,32,40,95,50,55,50,32,95,52,50,51,
-41,41,32,95,52,49,50,41,41,32,40,40,65,32,58,52,50,53,32,40,
-40,66,32,40,95,50,55,50,32,95,52,50,50,41,41,32,95,52,49,50,
-41,41,32,40,40,65,32,58,52,50,54,32,40,40,67,32,40,40,40,83,
-39,32,67,39,41,32,40,40,67,32,40,95,53,50,56,32,95,50,57,54,
-41,41,32,35,48,41,41,32,40,40,66,32,40,80,32,95,52,56,48,41,
-41,32,40,40,66,32,40,40,67,39,32,66,41,32,95,52,56,49,41,41,
-32,40,40,66,32,95,52,50,54,41,32,40,40,67,32,40,95,53,49,48,
-32,95,50,57,49,41,41,32,35,49,41,41,41,41,41,41,32,95,52,56,
-48,41,41,32,40,40,65,32,58,52,50,55,32,40,40,67,32,40,40,40,
-83,39,32,83,39,41,32,40,40,67,32,40,95,53,50,56,32,95,50,57,
-54,41,41,32,35,48,41,41,32,40,40,66,32,40,80,32,95,52,56,48,
-41,41,32,40,90,32,40,40,66,32,95,52,50,55,41,32,40,40,67,32,
-40,95,53,49,48,32,95,50,57,49,41,41,32,35,49,41,41,41,41,41,
-41,32,73,41,41,32,40,40,65,32,58,52,50,56,32,40,40,89,32,40,
-40,66,32,40,83,32,80,41,41,32,40,40,66,32,90,41,32,40,40,40,
-67,39,32,66,41,32,40,40,66,32,40,67,39,32,40,83,32,95,49,53,
-48,56,41,41,41,32,67,41,41,32,40,40,67,32,40,95,53,48,57,32,
-95,50,57,49,41,41,32,35,49,41,41,41,41,41,32,35,48,41,41,32,
-40,40,65,32,58,52,50,57,32,40,95,52,51,49,32,80,41,41,32,40,
-40,65,32,58,52,51,48,32,40,95,52,51,50,32,40,40,66,32,40,66,
-32,67,41,41,32,80,41,41,41,32,40,40,65,32,58,52,51,49,32,40,
-40,66,32,89,41,32,40,40,66,32,40,66,32,40,40,67,39,32,66,41,
-32,40,85,32,95,52,56,48,41,41,41,41,32,40,40,66,32,40,66,32,
-40,40,67,39,32,66,41,32,40,66,39,32,40,85,32,95,52,56,48,41,
-41,41,41,41,32,40,40,66,32,40,67,39,32,66,41,41,32,40,40,66,
-32,40,66,32,40,67,39,32,66,41,41,41,32,40,66,32,40,66,32,95,
-52,56,49,41,41,41,41,41,41,41,41,32,40,40,65,32,58,52,51,50,
-32,40,40,66,32,89,41,32,40,40,66,32,40,66,32,40,40,67,39,32,
-66,41,32,40,66,39,32,40,85,32,95,52,56,48,41,41,41,41,41,32,
-40,40,66,32,40,66,32,40,40,67,39,32,66,41,32,40,66,39,32,40,
-66,39,32,40,85,32,95,52,56,48,41,41,41,41,41,41,32,40,40,66,
-32,40,66,32,40,40,67,39,32,66,41,32,40,66,39,32,40,66,39,32,
-40,66,39,32,40,85,32,95,52,56,48,41,41,41,41,41,41,41,32,40,
-40,66,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,40,67,
-39,32,66,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,67,39,
-32,66,41,41,41,41,32,40,66,32,40,66,32,40,66,32,95,52,56,49,
-41,41,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,52,51,51,
-32,40,40,80,32,40,40,80,32,95,52,56,48,41,32,95,52,56,48,41,
-41,32,40,40,67,32,66,41,32,40,40,40,67,39,32,66,41,32,40,66,
-39,32,95,52,51,51,41,41,32,40,40,40,67,39,32,66,41,32,40,40,
-66,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,80,41,41,
-32,95,52,56,49,41,41,41,32,95,52,56,49,41,41,41,41,41,32,40,
-40,65,32,58,52,51,52,32,40,40,80,32,40,40,67,32,40,40,80,32,
-95,52,56,48,41,32,95,52,56,48,41,41,32,95,52,56,48,41,41,32,
-40,40,67,32,66,41,32,40,40,40,67,39,32,66,41,32,40,66,39,32,
-40,66,39,32,95,52,51,52,41,41,41,32,40,40,40,67,39,32,40,67,
-39,32,66,41,41,32,40,40,66,32,40,66,32,40,67,39,32,40,67,39,
-32,66,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,
-67,41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,
-67,39,32,66,41,41,32,40,40,66,32,40,66,32,80,41,41,32,95,52,
-56,49,41,41,41,32,95,52,56,49,41,41,41,41,32,95,52,56,49,41,
-41,41,41,41,32,40,40,65,32,58,52,51,53,32,40,40,66,32,95,52,
-51,54,41,32,95,50,49,49,41,41,32,40,40,65,32,58,52,51,54,32,
-40,40,66,32,89,41,32,40,40,66,32,40,66,32,40,67,32,40,40,67,
-32,83,39,41,32,95,52,57,57,41,41,41,41,32,40,40,66,32,40,66,
-32,40,40,67,39,32,66,41,32,40,66,39,32,40,85,32,95,52,57,56,
-41,41,41,41,41,32,40,40,66,32,40,67,39,32,66,41,41,32,40,40,
-66,32,40,66,32,40,67,39,32,66,41,41,41,32,40,40,67,32,40,67,
-39,32,67,41,41,32,95,52,57,56,41,41,41,41,41,41,41,32,40,40,
-65,32,58,52,51,55,32,40,40,66,32,95,52,51,56,41,32,95,50,49,
-49,41,41,32,40,40,65,32,58,52,51,56,32,40,40,66,32,89,41,32,
-40,40,66,32,40,66,32,40,40,67,39,32,66,41,32,40,85,32,95,49,
-50,54,41,41,41,41,32,40,40,66,32,40,66,32,40,40,67,39,32,66,
-41,32,40,66,39,32,40,85,32,95,49,50,53,41,41,41,41,41,32,40,
-40,66,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,40,67,
-39,32,66,41,41,41,32,40,66,32,40,66,32,95,49,50,50,41,41,41,
-41,41,41,41,41,32,40,40,65,32,58,52,51,57,32,40,40,66,32,95,
-52,52,48,41,32,95,50,49,49,41,41,32,40,40,65,32,58,52,52,48,
-32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,40,67,39,
-32,66,41,32,95,52,51,56,41,32,95,52,52,50,41,41,32,95,52,52,
-50,41,41,32,40,40,65,32,58,52,52,49,32,40,40,40,83,39,32,40,
-83,39,32,80,41,41,32,95,52,50,54,41,32,95,52,50,55,41,41,32,
-40,40,65,32,58,52,52,50,32,40,40,89,32,40,40,66,32,40,83,32,
-80,41,41,32,40,40,40,67,39,32,66,41,32,66,41,32,40,67,32,95,
-52,56,49,41,41,41,41,32,95,52,56,48,41,41,32,40,40,65,32,58,
-52,52,51,32,40,40,66,32,89,41,32,40,40,66,32,40,66,32,40,80,
-32,95,52,56,48,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,
-66,32,40,83,39,32,66,41,41,32,40,82,32,95,52,56,48,41,41,41,
-32,40,40,67,39,32,66,41,32,95,52,56,49,41,41,41,41,41,32,40,
-40,65,32,58,52,52,52,32,40,40,66,32,89,41,32,40,40,66,32,40,
-66,32,40,80,32,95,52,56,48,41,41,41,32,40,40,66,32,67,41,32,
-40,40,67,32,40,83,39,32,83,39,41,41,32,95,52,56,49,41,41,41,
-41,41,32,40,40,65,32,58,52,52,53,32,40,40,40,67,39,32,89,41,
-32,40,40,66,32,40,66,32,40,40,83,39,32,80,41,32,40,40,40,67,
-39,32,80,41,32,95,52,52,50,41,32,95,52,56,48,41,41,41,41,32,
-40,40,40,67,39,32,66,41,32,40,40,66,32,40,83,39,32,83,41,41,
-32,40,40,40,67,39,32,66,41,32,40,83,39,32,83,39,41,41,32,40,
-40,40,67,39,32,66,41,32,40,66,39,32,40,40,66,32,80,41,32,95,
-52,52,50,41,41,41,32,95,52,56,49,41,41,41,41,32,40,40,40,67,
-39,32,66,41,32,66,41,32,40,67,32,95,52,56,49,41,41,41,41,41,
-32,95,52,56,48,41,41,32,40,40,65,32,58,52,52,54,32,40,40,40,
-67,39,32,89,41,32,40,40,66,32,40,66,32,40,40,83,39,32,80,41,
-32,40,40,40,67,39,32,80,41,32,95,52,52,50,41,32,95,52,56,48,
-41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,83,
-39,32,83,41,41,32,40,40,40,67,39,32,66,41,32,40,83,39,32,83,
-39,41,41,32,40,40,66,32,40,66,32,80,41,41,32,40,40,66,32,40,
-66,32,95,52,52,50,41,41,32,40,67,32,95,52,56,49,41,41,41,41,
-41,41,32,40,40,40,67,39,32,66,41,32,66,41,32,40,67,32,95,52,
-56,49,41,41,41,41,41,32,95,52,56,48,41,41,32,40,40,65,32,58,
-52,52,55,32,40,40,80,32,40,95,50,53,32,34,104,101,97,100,34,41,
-41,32,75,41,41,32,40,40,65,32,58,52,52,56,32,40,40,80,32,40,
-95,50,53,32,34,116,97,105,108,34,41,41,32,65,41,41,32,40,40,65,
-32,58,52,52,57,32,40,40,66,32,40,80,32,95,52,56,48,41,41,32,
-40,40,66,32,40,40,67,39,32,66,41,32,95,52,56,49,41,41,32,40,
-40,66,32,89,41,32,40,40,66,32,40,66,32,40,80,32,95,52,56,48,
-41,41,41,32,40,40,40,67,39,32,66,41,32,40,66,39,32,40,66,39,
-32,95,52,56,49,41,41,41,32,40,40,67,39,32,66,41,32,95,52,56,
-49,41,41,41,41,41,41,41,32,40,40,65,32,58,52,53,48,32,40,40,
-66,32,40,66,32,95,52,49,48,41,41,32,95,52,52,57,41,41,32,40,
-40,65,32,58,52,53,49,32,40,40,66,32,95,52,53,51,41,32,95,50,
-49,49,41,41,32,40,40,65,32,58,52,53,50,32,40,40,66,32,40,66,
-32,40,66,32,95,49,50,51,41,41,41,32,95,52,53,49,41,41,32,40,
-40,65,32,58,52,53,51,32,40,66,32,95,52,50,52,41,41,32,40,40,
-65,32,58,52,53,52,32,40,40,66,32,89,41,32,40,40,66,32,40,66,
-32,40,80,32,95,52,57,56,41,41,41,32,40,40,40,67,39,32,40,67,
-39,32,83,41,41,32,40,67,39,32,67,39,41,41,32,95,52,57,57,41,
-41,41,41,32,40,40,65,32,58,52,53,53,32,40,40,66,32,95,52,53,
-54,41,32,95,50,49,49,41,41,32,40,40,65,32,58,52,53,54,32,40,
-40,40,67,39,32,40,67,39,32,67,41,41,32,40,40,40,67,39,32,40,
-67,39,32,67,41,41,32,40,40,66,32,40,66,32,95,52,53,52,41,41,
-32,40,40,67,32,40,67,39,32,95,50,55,50,41,41,32,95,53,57,56,
-41,41,41,32,95,52,57,56,41,41,32,40,85,32,40,75,32,95,52,57,
-57,41,41,41,41,32,40,40,65,32,58,52,53,55,32,40,40,66,32,95,
-52,53,56,41,32,95,50,49,49,41,41,32,40,40,65,32,58,52,53,56,
-32,40,40,66,32,40,40,83,39,32,66,41,32,95,52,56,50,41,41,32,
-40,40,40,83,39,32,67,39,41,32,40,40,66,32,95,52,49,54,41,32,
-40,40,66,32,95,50,55,53,41,32,95,52,54,49,41,41,41,32,95,52,
-54,52,41,41,41,32,40,40,65,32,58,52,53,57,32,40,40,66,32,95,
-52,54,48,41,32,95,50,49,49,41,41,32,40,40,65,32,58,52,54,48,
-32,40,40,66,32,40,67,39,32,95,52,49,51,41,41,32,40,40,66,32,
-40,66,32,40,66,32,95,49,50,51,41,41,41,32,40,40,66,32,67,41,
-32,95,52,53,51,41,41,41,41,32,40,40,65,32,58,52,54,49,32,40,
-40,66,32,89,41,32,40,40,66,32,40,66,32,40,66,32,40,80,32,95,
-52,56,48,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,
-39,32,67,41,41,41,32,40,40,40,67,39,32,66,41,32,40,83,39,32,
-40,83,39,32,83,39,41,41,41,32,40,66,32,40,40,67,39,32,66,41,
-32,95,52,56,49,41,41,41,41,32,73,41,41,41,41,32,40,40,65,32,
-58,52,54,50,32,40,40,66,32,89,41,32,40,40,66,32,40,66,32,40,
-66,32,40,80,32,95,52,56,48,41,41,41,41,32,40,40,40,67,39,32,
-40,83,39,32,40,83,39,32,67,41,41,41,32,40,40,40,67,39,32,66,
-41,32,40,83,39,32,40,83,39,32,83,39,41,41,41,32,40,66,32,40,
-40,67,39,32,66,41,32,95,52,56,49,41,41,41,41,32,73,41,41,41,
-41,32,40,40,65,32,58,52,54,51,32,40,40,66,32,95,52,54,52,41,
-32,95,50,49,49,41,41,32,40,40,65,32,58,52,54,52,32,40,40,66,
-32,89,41,32,40,40,66,32,40,66,32,40,80,32,95,52,56,48,41,41,
-41,32,40,40,66,32,40,66,32,40,40,83,39,32,66,41,32,95,52,56,
-49,41,41,41,32,40,40,66,32,40,40,67,39,32,66,41,32,66,41,41,
-32,40,40,66,32,40,66,32,95,52,49,51,41,41,32,40,66,32,40,66,
-32,95,49,50,51,41,41,41,41,41,41,41,41,32,40,40,65,32,58,52,
-54,53,32,40,40,40,67,39,32,66,41,32,95,52,50,54,41,32,95,52,
-54,54,41,41,32,40,40,65,32,58,52,54,54,32,40,40,66,32,89,41,
-32,95,52,56,49,41,41,32,40,40,65,32,58,52,54,55,32,40,40,66,
-32,95,52,54,56,41,32,95,50,49,49,41,41,32,40,40,65,32,58,52,
-54,56,32,40,40,66,32,95,52,49,54,41,32,40,40,66,32,95,50,55,
-53,41,32,95,52,54,49,41,41,41,32,40,40,65,32,58,52,54,57,32,
-40,40,66,32,95,52,49,54,41,32,40,40,66,32,95,50,55,53,41,32,
-95,52,54,50,41,41,41,32,40,40,65,32,58,52,55,48,32,40,40,40,
-67,39,32,67,41,32,40,40,66,32,40,83,32,40,40,67,32,40,95,53,
-50,55,32,95,50,57,54,41,41,32,35,48,41,41,41,32,40,67,32,40,
-89,32,40,40,66,32,40,66,32,40,80,32,40,95,50,53,32,34,33,33,
-58,32,101,109,112,116,121,34,41,41,41,41,32,40,40,66,32,40,40,83,
-39,32,67,39,41,32,40,40,67,32,40,95,50,49,49,32,95,50,57,53,
-41,41,32,35,48,41,41,41,32,40,40,67,32,66,41,32,40,40,67,32,
-40,95,53,49,48,32,95,50,57,49,41,41,32,35,49,41,41,41,41,41,
-41,41,41,32,40,95,50,53,32,34,33,33,58,32,60,48,34,41,41,41,
-32,40,40,65,32,58,52,55,49,32,40,40,40,83,39,32,40,83,39,32,
-80,41,41,32,95,52,49,51,41,32,40,40,66,32,95,52,49,51,41,32,
-40,95,50,55,50,32,95,49,50,51,41,41,41,41,32,40,40,65,32,58,
-52,55,50,32,40,40,66,32,95,52,55,51,41,32,95,53,50,56,41,41,
-32,40,40,65,32,58,52,55,51,32,40,40,66,32,89,41,32,40,40,66,
-32,40,66,32,40,80,32,95,52,56,48,41,41,41,32,40,40,40,67,39,
-32,66,41,32,40,40,66,32,40,83,39,32,67,41,41,32,40,66,32,95,
-52,55,49,41,41,41,32,40,40,40,83,39,32,66,41,32,40,66,39,32,
-40,67,39,32,95,52,56,50,41,41,41,32,40,40,67,39,32,66,41,32,
-95,52,56,49,41,41,41,41,41,41,32,40,40,65,32,58,52,55,52,32,
-40,40,80,32,40,95,50,53,32,34,108,97,115,116,58,32,91,93,34,41,
-41,32,40,40,40,67,39,32,83,41,32,85,41,32,40,90,32,40,90,32,
-95,52,55,52,41,41,41,41,41,32,40,40,65,32,58,52,55,53,32,40,
-40,80,32,40,95,50,53,32,34,105,110,105,116,58,32,91,93,34,41,41,
-32,40,40,66,32,40,83,32,40,85,32,95,52,56,48,41,41,41,32,40,
-40,66,32,90,41,32,40,40,66,32,90,41,32,40,40,40,67,39,32,66,
-41,32,95,52,56,49,41,32,95,52,55,53,41,41,41,41,41,41,32,40,
-40,65,32,58,52,55,54,32,40,40,66,32,95,52,55,55,41,32,95,50,
-49,49,41,41,32,40,40,65,32,58,52,55,55,32,40,40,66,32,89,41,
-32,40,40,66,32,40,66,32,40,80,32,95,49,50,53,41,41,41,32,40,
-40,66,32,40,67,39,32,40,83,39,32,95,49,50,49,41,41,41,32,95,
-52,53,51,41,41,41,41,32,40,40,65,32,58,52,55,56,32,40,40,66,
-32,89,41,32,40,40,66,32,40,66,32,40,83,32,95,52,56,49,41,41,
-41,32,40,67,32,66,41,41,41,41,32,40,40,65,32,58,52,55,57,32,
-40,40,66,32,89,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,
-40,83,32,40,85,32,95,52,56,48,41,41,41,41,41,41,32,40,40,40,
-67,39,32,40,83,39,32,40,83,39,32,40,83,39,32,67,41,41,41,41,
-32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,83,39,32,66,41,
-41,32,40,40,66,32,40,66,32,40,67,39,32,67,39,41,41,41,32,40,
-40,66,32,40,66,32,40,66,32,67,39,41,41,41,32,95,52,51,53,41,
-41,41,41,32,40,66,32,40,66,32,40,40,67,39,32,66,41,32,95,52,
-56,49,41,41,41,41,41,32,40,66,32,40,40,83,39,32,66,41,32,95,
-52,56,50,41,41,41,41,41,41,32,40,40,65,32,58,52,56,48,32,75,
-41,32,40,40,65,32,58,52,56,49,32,79,41,32,40,40,65,32,58,52,
-56,50,32,40,40,67,32,83,41,32,40,40,66,32,40,40,67,39,32,66,
-41,32,95,52,56,49,41,41,32,40,67,32,95,52,56,50,41,41,41,41,
-32,40,40,65,32,58,52,56,51,32,40,40,40,83,39,32,95,50,49,48,
-41,32,40,40,66,32,40,67,32,40,40,67,32,83,39,41,32,40,40,80,
-32,95,49,50,54,41,32,40,75,32,95,49,50,53,41,41,41,41,41,32,
-40,40,66,32,40,40,67,39,32,66,41,32,40,85,32,95,49,50,53,41,
-41,41,32,95,50,49,49,41,41,41,32,40,40,66,32,95,50,49,52,41,
-32,95,52,56,51,41,41,41,32,40,40,65,32,58,52,56,52,32,40,40,
-83,32,40,40,40,83,39,32,95,49,55,49,50,41,32,40,40,66,32,40,
-66,32,40,80,32,40,95,49,55,50,49,32,34,78,111,116,104,105,110,103,
-34,41,41,41,41,32,40,40,66,32,40,40,67,39,32,66,41,32,40,40,
-66,32,95,49,55,50,50,41,32,40,40,67,32,40,95,53,51,48,32,95,
-50,57,54,41,41,32,35,49,49,41,41,41,41,32,40,40,66,32,40,66,
-32,40,95,50,55,50,32,40,95,49,55,50,49,32,34,74,117,115,116,32,
-34,41,41,41,41,32,40,40,67,32,95,49,55,49,51,41,32,35,49,49,
-41,41,41,41,41,32,40,40,66,32,95,49,55,49,55,41,32,95,52,56,
-52,41,41,41,32,40,40,66,32,95,49,55,49,56,41,32,95,52,56,52,
-41,41,41,32,40,40,65,32,58,52,56,53,32,40,40,95,50,56,48,32,
-40,40,66,32,40,80,32,95,52,57,56,41,41,32,40,66,32,95,52,57,
-57,41,41,41,32,40,95,50,56,52,32,95,52,56,53,41,41,41,32,40,
-40,65,32,58,52,56,54,32,40,40,40,40,40,95,49,50,32,95,52,56,
-53,41,32,95,52,57,57,41,32,40,40,40,67,39,32,66,41,32,40,85,
-32,95,52,57,56,41,41,32,40,40,40,67,39,32,66,41,32,40,85,32,
-95,52,57,56,41,41,32,40,66,32,95,52,57,57,41,41,41,41,32,40,
-95,50,48,32,95,52,56,54,41,41,32,40,95,50,49,32,95,52,56,54,
-41,41,41,32,40,40,65,32,58,52,56,55,32,40,40,40,40,95,51,49,
-32,95,52,56,54,41,32,40,85,32,95,52,57,56,41,41,32,40,95,51,
-55,32,95,52,56,55,41,41,32,40,95,49,52,32,95,52,56,54,41,41,
-41,32,40,40,65,32,58,52,56,56,32,40,40,95,52,48,32,95,52,56,
-55,41,32,40,75,32,95,52,57,56,41,41,41,32,40,40,65,32,58,52,
-56,57,32,40,40,40,40,40,95,48,32,95,52,56,54,41,32,95,52,57,
-56,41,32,40,40,83,32,67,41,32,75,41,41,32,40,95,56,32,95,52,
-56,57,41,41,32,40,95,57,32,95,52,56,57,41,41,41,32,40,40,65,
-32,58,52,57,48,32,40,40,66,32,95,53,57,53,41,32,40,40,66,32,
-40,83,32,83,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,
-66,32,40,40,83,39,32,83,41,32,85,41,41,32,40,40,66,32,40,66,
-32,90,41,41,32,40,40,40,67,39,32,67,41,32,40,40,66,32,40,40,
-67,39,32,67,39,41,32,83,41,41,32,40,40,66,32,40,67,32,40,67,
-39,32,66,41,41,41,32,40,40,66,32,40,66,32,40,66,32,95,52,57,
-57,41,41,41,32,95,53,57,54,41,41,41,41,32,40,40,40,110,111,77,
-97,116,99,104,32,34,46,47,108,105,98,47,68,97,116,97,47,77,97,121,
-98,101,46,104,115,34,41,32,35,53,51,41,32,35,53,41,41,41,41,41,
-41,41,41,32,40,40,65,32,58,52,57,49,32,40,40,83,32,40,40,83,
-32,40,40,40,67,39,32,95,53,48,48,41,32,95,52,57,48,41,32,95,
-52,57,56,41,41,32,40,40,66,32,95,53,48,54,41,32,95,52,57,49,
-41,41,41,32,40,40,66,32,95,53,48,55,41,32,95,52,57,49,41,41,
-41,32,40,40,65,32,58,52,57,50,32,80,41,32,40,40,65,32,58,52,
-57,51,32,40,40,67,32,80,41,32,73,41,41,32,40,40,65,32,58,52,
-57,52,32,40,95,52,49,49,32,40,40,80,32,75,41,32,40,40,67,32,
-79,41,32,75,41,41,41,41,32,40,40,65,32,58,52,57,53,32,40,40,
-80,32,95,49,50,53,41,32,40,75,32,95,49,50,54,41,41,41,32,40,
-40,65,32,58,52,57,54,32,40,40,66,32,89,41,32,40,40,66,32,40,
-66,32,40,80,32,95,52,56,48,41,41,41,32,40,40,40,67,39,32,40,
-83,39,32,67,41,41,32,40,67,39,32,83,39,41,41,32,40,66,32,40,
-67,32,95,52,56,49,41,41,41,41,41,41,32,40,40,65,32,58,52,57,
-55,32,40,40,80,32,95,52,56,48,41,32,40,40,67,32,79,41,32,75,
-41,41,41,32,40,40,65,32,58,52,57,56,32,75,41,32,40,40,65,32,
-58,52,57,57,32,40,90,32,85,41,41,32,40,40,65,32,58,53,48,48,
-32,40,40,66,32,40,66,32,40,66,32,67,41,41,41,32,40,40,66,32,
-40,66,32,67,41,41,32,80,41,41,41,32,40,40,65,32,58,53,48,49,
-32,40,85,32,40,90,32,40,90,32,75,41,41,41,41,32,40,40,65,32,
-58,53,48,50,32,40,85,32,40,75,32,40,90,32,75,41,41,41,41,32,
-40,40,65,32,58,53,48,51,32,40,85,32,40,75,32,40,75,32,75,41,
-41,41,41,32,40,40,65,32,58,53,48,52,32,40,85,32,40,75,32,40,
-75,32,65,41,41,41,41,32,40,40,65,32,58,53,48,53,32,40,75,32,
-40,110,111,68,101,102,97,117,108,116,32,34,77,111,110,111,105,100,46,109,
-101,109,112,116,121,34,41,41,41,32,40,40,65,32,58,53,48,54,32,40,
-40,66,32,95,53,57,54,41,32,95,53,48,49,41,41,32,40,40,65,32,
-58,53,48,55,32,40,40,40,83,39,32,80,41,32,95,53,48,50,41,32,
-40,40,40,83,39,32,40,67,39,32,66,41,41,32,40,40,66,32,95,53,
-57,54,41,32,95,53,48,49,41,41,32,95,53,48,52,41,41,41,32,40,
-40,65,32,58,53,48,56,32,40,40,66,32,40,66,32,40,66,32,40,66,
-32,40,66,32,40,66,32,67,41,41,41,41,41,41,32,40,40,66,32,40,
-66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,41,32,40,40,
-66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,32,40,40,66,
-32,40,66,32,40,66,32,67,41,41,41,32,40,40,66,32,40,66,32,67,
-41,41,32,80,41,41,41,41,41,41,32,40,40,65,32,58,53,48,57,32,
-40,85,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,75,41,
-41,41,41,41,41,41,32,40,40,65,32,58,53,49,48,32,40,85,32,40,
-75,32,40,90,32,40,90,32,40,90,32,40,90,32,75,41,41,41,41,41,
-41,41,32,40,40,65,32,58,53,49,49,32,40,85,32,40,75,32,40,75,
-32,40,90,32,40,90,32,40,90,32,75,41,41,41,41,41,41,41,32,40,
-40,65,32,58,53,49,50,32,40,85,32,40,75,32,40,75,32,40,75,32,
-40,90,32,40,90,32,75,41,41,41,41,41,41,41,32,40,40,65,32,58,
-53,49,51,32,40,85,32,40,75,32,40,75,32,40,75,32,40,75,32,40,
-90,32,75,41,41,41,41,41,41,41,32,40,40,65,32,58,53,49,52,32,
-40,85,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,75,41,
-41,41,41,41,41,41,32,40,40,65,32,58,53,49,53,32,40,85,32,40,
-75,32,40,75,32,40,75,32,40,75,32,40,75,32,65,41,41,41,41,41,
-41,41,32,40,40,65,32,58,53,49,54,32,40,75,32,40,110,111,68,101,
-102,97,117,108,116,32,34,78,117,109,46,43,34,41,41,41,32,40,40,65,
-32,58,53,49,55,32,40,75,32,40,110,111,68,101,102,97,117,108,116,32,
-34,78,117,109,46,45,34,41,41,41,32,40,40,65,32,58,53,49,56,32,
-40,75,32,40,110,111,68,101,102,97,117,108,116,32,34,78,117,109,46,42,
-34,41,41,41,32,40,40,65,32,58,53,49,57,32,40,40,83,32,95,53,
-49,48,41,32,40,40,67,32,95,53,49,53,41,32,40,95,51,55,51,32,
-35,48,41,41,41,41,32,40,40,65,32,58,53,50,48,32,40,75,32,40,
-110,111,68,101,102,97,117,108,116,32,34,78,117,109,46,97,98,115,34,41,
-41,41,32,40,40,65,32,58,53,50,49,32,40,75,32,40,110,111,68,101,
-102,97,117,108,116,32,34,78,117,109,46,115,105,103,110,117,109,34,41,41,
-41,32,40,40,65,32,58,53,50,50,32,40,75,32,40,110,111,68,101,102,
-97,117,108,116,32,34,78,117,109,46,102,114,111,109,73,110,116,101,103,101,
-114,34,41,41,41,32,40,40,65,32,58,53,50,51,32,40,40,66,32,67,
-41,32,95,53,49,48,41,41,32,40,40,65,32,58,53,50,52,32,40,40,
-66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
-67,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,
-66,32,40,66,32,40,66,32,67,41,41,41,41,41,41,32,40,40,66,32,
-40,66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,41,32,40,
-40,66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,32,40,40,
-66,32,40,66,32,40,66,32,67,41,41,41,32,40,40,66,32,40,66,32,
-67,41,41,32,80,41,41,41,41,41,41,41,32,40,40,65,32,58,53,50,
-53,32,40,85,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,
-40,90,32,75,41,41,41,41,41,41,41,41,32,40,40,65,32,58,53,50,
-54,32,40,85,32,40,75,32,40,90,32,40,90,32,40,90,32,40,90,32,
-40,90,32,75,41,41,41,41,41,41,41,41,32,40,40,65,32,58,53,50,
-55,32,40,85,32,40,75,32,40,75,32,40,90,32,40,90,32,40,90,32,
-40,90,32,75,41,41,41,41,41,41,41,41,32,40,40,65,32,58,53,50,
-56,32,40,85,32,40,75,32,40,75,32,40,75,32,40,90,32,40,90,32,
-40,90,32,75,41,41,41,41,41,41,41,41,32,40,40,65,32,58,53,50,
-57,32,40,85,32,40,75,32,40,75,32,40,75,32,40,75,32,40,90,32,
-40,90,32,75,41,41,41,41,41,41,41,41,32,40,40,65,32,58,53,51,
-48,32,40,85,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,
-40,90,32,75,41,41,41,41,41,41,41,41,32,40,40,65,32,58,53,51,
-49,32,40,85,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,
-40,75,32,75,41,41,41,41,41,41,41,41,32,40,40,65,32,58,53,51,
-50,32,40,85,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,
-40,75,32,65,41,41,41,41,41,41,41,41,32,40,40,65,32,58,53,51,
-51,32,40,40,40,83,39,32,40,83,39,32,83,41,41,32,40,40,40,67,
-39,32,40,67,39,32,67,41,41,32,95,53,50,56,41,32,95,53,52,54,
-41,41,32,40,40,40,67,39,32,40,67,39,32,67,41,41,32,40,40,40,
-67,39,32,40,67,39,32,67,41,41,32,40,40,66,32,67,41,32,95,53,
-50,56,41,41,32,95,53,52,52,41,41,32,95,53,52,53,41,41,41,32,
-40,40,65,32,58,53,51,52,32,40,40,40,67,39,32,40,67,39,32,67,
-41,41,32,40,40,40,67,39,32,40,67,39,32,67,41,41,32,40,40,66,
-32,67,41,32,95,53,50,56,41,41,32,95,49,50,54,41,41,32,95,49,
-50,53,41,41,32,40,40,65,32,58,53,51,53,32,40,75,32,40,110,111,
-68,101,102,97,117,108,116,32,34,79,114,100,46,60,61,34,41,41,41,32,
-40,40,65,32,58,53,51,54,32,40,40,40,67,39,32,40,67,39,32,67,
-41,41,32,40,40,40,67,39,32,40,67,39,32,67,41,41,32,95,53,50,
-56,41,32,95,49,50,54,41,41,32,95,49,50,53,41,41,32,40,40,65,
-32,58,53,51,55,32,95,53,50,56,41,32,40,40,65,32,58,53,51,56,
-32,40,40,40,67,39,32,40,67,39,32,83,41,41,32,40,40,40,67,39,
-32,40,83,39,32,67,41,41,32,95,53,50,56,41,32,73,41,41,32,73,
-41,41,32,40,40,65,32,58,53,51,57,32,40,40,40,67,39,32,40,83,
-39,32,67,41,41,32,40,40,40,67,39,32,40,67,39,32,83,41,41,32,
-95,53,50,56,41,32,73,41,41,32,73,41,41,32,40,40,65,32,58,53,
-52,48,32,40,40,95,50,49,48,32,40,40,40,67,39,32,83,41,32,40,
-40,67,32,40,40,67,32,83,39,41,32,40,40,67,32,40,40,80,32,95,
-49,50,54,41,32,95,49,50,53,41,41,32,95,49,50,53,41,41,41,32,
-40,40,67,32,40,40,80,32,95,49,50,53,41,32,95,49,50,54,41,41,
-32,95,49,50,53,41,41,41,32,40,40,67,32,40,40,80,32,95,49,50,
-53,41,32,95,49,50,53,41,41,32,95,49,50,54,41,41,41,32,40,95,
-50,49,52,32,95,53,52,48,41,41,41,32,40,40,65,32,58,53,52,49,
-32,40,40,67,32,40,40,80,32,95,49,50,53,41,32,95,49,50,54,41,
-41,32,95,49,50,53,41,41,32,40,40,65,32,58,53,52,50,32,40,40,
-40,95,49,55,49,50,32,40,75,32,40,40,67,32,40,40,80,32,40,95,
-49,55,50,49,32,34,76,84,34,41,41,32,40,95,49,55,50,49,32,34,
-69,81,34,41,41,41,32,40,95,49,55,50,49,32,34,71,84,34,41,41,
-41,41,32,40,95,49,55,49,55,32,95,53,52,50,41,41,32,40,95,49,
-55,49,56,32,95,53,52,50,41,41,41,32,40,40,65,32,58,53,52,51,
-32,40,40,95,49,50,55,32,95,53,52,52,41,32,95,53,52,54,41,41,
-32,40,40,65,32,58,53,52,52,32,40,90,32,75,41,41,32,40,40,65,
-32,58,53,52,53,32,40,75,32,75,41,41,32,40,40,65,32,58,53,52,
-54,32,40,75,32,65,41,41,32,40,40,65,32,58,53,52,55,32,40,40,
-40,83,39,32,95,50,49,48,41,32,40,40,66,32,40,67,32,66,41,41,
-32,40,40,66,32,40,40,67,39,32,66,41,32,66,41,41,32,40,40,40,
-83,39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,40,67,
-39,32,66,41,41,41,32,40,40,66,32,40,66,32,40,66,32,95,49,50,
-50,41,41,41,32,95,50,49,49,41,41,41,32,95,50,49,49,41,41,41,
-41,32,40,40,66,32,95,50,49,52,41,32,95,53,52,55,41,41,41,32,
-40,40,65,32,58,53,52,56,32,40,40,83,32,40,40,83,32,40,40,83,
-32,40,40,83,32,40,40,83,32,40,40,83,32,40,40,40,83,39,32,95,
-53,50,52,41,32,40,40,66,32,95,53,52,55,41,32,40,40,66,32,40,
-85,32,75,41,41,32,40,40,66,32,95,51,55,57,41,32,40,85,32,75,
-41,41,41,41,41,32,40,40,66,32,95,53,51,51,41,32,40,40,66,32,
-95,53,52,56,41,32,40,40,40,83,39,32,80,41,32,40,85,32,75,41,
-41,32,40,85,32,65,41,41,41,41,41,41,32,40,40,66,32,40,67,32,
-66,41,41,32,40,40,66,32,40,40,67,39,32,66,41,32,66,41,41,32,
-40,40,40,83,39,32,40,67,39,32,66,41,41,32,40,40,66,32,66,39,
-41,32,40,40,40,83,39,32,66,41,32,40,40,66,32,67,39,41,32,40,
-40,66,32,95,53,50,55,41,32,40,85,32,65,41,41,41,41,32,40,40,
-66,32,95,53,49,49,41,32,40,40,66,32,40,85,32,65,41,41,32,40,
-40,66,32,95,51,55,57,41,32,40,85,32,75,41,41,41,41,41,41,41,
-32,40,40,66,32,67,41,32,40,40,66,32,95,53,49,49,41,32,40,40,
-66,32,40,85,32,65,41,41,32,40,40,66,32,95,51,55,57,41,32,40,
-85,32,75,41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,67,
-32,66,41,41,32,40,40,66,32,40,40,67,39,32,66,41,32,66,41,41,
-32,40,40,40,83,39,32,40,67,39,32,66,41,41,32,40,40,66,32,66,
-39,41,32,40,40,40,83,39,32,66,41,32,40,40,66,32,67,39,41,32,
-40,40,66,32,95,53,50,56,41,32,40,85,32,65,41,41,41,41,32,40,
-40,66,32,95,53,49,49,41,32,40,40,66,32,40,85,32,65,41,41,32,
-40,40,66,32,95,51,55,57,41,32,40,85,32,75,41,41,41,41,41,41,
-41,32,40,40,66,32,67,41,32,40,40,66,32,95,53,49,49,41,32,40,
-40,66,32,40,85,32,65,41,41,32,40,40,66,32,95,51,55,57,41,32,
-40,85,32,75,41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,
-67,32,66,41,41,32,40,40,66,32,40,40,67,39,32,66,41,32,66,41,
-41,32,40,40,40,83,39,32,40,67,39,32,66,41,41,32,40,40,66,32,
-66,39,41,32,40,40,40,83,39,32,66,41,32,40,40,66,32,67,39,41,
-32,40,40,66,32,95,53,50,57,41,32,40,85,32,65,41,41,41,41,32,
-40,40,66,32,95,53,49,49,41,32,40,40,66,32,40,85,32,65,41,41,
-32,40,40,66,32,95,51,55,57,41,32,40,85,32,75,41,41,41,41,41,
-41,41,32,40,40,66,32,67,41,32,40,40,66,32,95,53,49,49,41,32,
-40,40,66,32,40,85,32,65,41,41,32,40,40,66,32,95,51,55,57,41,
-32,40,85,32,75,41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,
-40,67,32,66,41,41,32,40,40,66,32,40,40,67,39,32,66,41,32,66,
-41,41,32,40,40,40,83,39,32,40,67,39,32,66,41,41,32,40,40,66,
-32,66,39,41,32,40,40,40,83,39,32,66,41,32,40,40,66,32,67,39,
-41,32,40,40,66,32,95,53,51,48,41,32,40,85,32,65,41,41,41,41,
-32,40,40,66,32,95,53,49,49,41,32,40,40,66,32,40,85,32,65,41,
-41,32,40,40,66,32,95,51,55,57,41,32,40,85,32,75,41,41,41,41,
-41,41,41,32,40,40,66,32,67,41,32,40,40,66,32,95,53,49,49,41,
-32,40,40,66,32,40,85,32,65,41,41,32,40,40,66,32,95,51,55,57,
-41,32,40,85,32,75,41,41,41,41,41,41,41,41,41,41,32,40,40,66,
-32,95,53,51,56,41,32,40,40,66,32,95,53,52,56,41,32,40,40,40,
-83,39,32,80,41,32,40,85,32,75,41,41,32,40,85,32,65,41,41,41,
-41,41,41,32,40,40,66,32,95,53,51,57,41,32,40,40,66,32,95,53,
-52,56,41,32,40,40,40,83,39,32,80,41,32,40,85,32,75,41,41,32,
-40,85,32,65,41,41,41,41,41,41,32,40,40,65,32,58,53,52,57,32,
-40,40,83,32,40,40,83,32,40,40,83,32,40,40,83,32,40,40,83,32,
-40,40,40,83,39,32,95,53,48,56,41,32,40,40,66,32,40,67,32,66,
-41,41,32,40,40,66,32,40,40,67,39,32,66,41,32,66,41,41,32,40,
-40,83,32,40,40,40,83,39,32,67,39,41,32,40,40,66,32,83,39,41,
-32,40,40,66,32,67,39,41,32,40,40,66,32,83,39,41,32,95,53,53,
-53,41,41,41,41,32,40,40,40,83,39,32,40,67,39,32,66,41,41,32,
-40,40,66,32,66,39,41,32,40,40,40,83,39,32,66,41,32,40,40,66,
-32,67,39,41,32,40,40,66,32,95,53,48,57,41,32,40,40,66,32,40,
-85,32,65,41,41,32,95,51,55,57,41,41,41,41,32,40,40,66,32,95,
-53,49,49,41,32,40,40,66,32,40,85,32,65,41,41,32,95,51,55,57,
-41,41,41,41,41,32,40,40,66,32,67,41,32,40,40,66,32,95,53,49,
-49,41,32,40,40,66,32,40,85,32,65,41,41,32,95,51,55,57,41,41,
-41,41,41,41,32,40,40,66,32,95,53,49,49,41,32,40,40,66,32,40,
-85,32,65,41,41,32,95,51,55,57,41,41,41,41,41,41,32,40,40,66,
-32,40,67,32,66,41,41,32,40,40,66,32,40,40,67,39,32,66,41,32,
-66,41,41,32,40,40,83,32,40,40,40,83,39,32,67,39,41,32,40,40,
-66,32,83,39,41,32,40,40,66,32,67,39,41,32,40,40,66,32,83,39,
-41,32,95,53,53,53,41,41,41,41,32,40,40,40,83,39,32,40,67,39,
-32,66,41,41,32,40,40,66,32,66,39,41,32,40,40,40,83,39,32,66,
-41,32,40,40,66,32,67,39,41,32,40,40,66,32,95,53,49,48,41,32,
-40,40,66,32,40,85,32,65,41,41,32,95,51,55,57,41,41,41,41,32,
-40,40,66,32,95,53,49,49,41,32,40,40,66,32,40,85,32,65,41,41,
-32,95,51,55,57,41,41,41,41,41,32,40,40,66,32,67,41,32,40,40,
-66,32,95,53,49,49,41,32,40,40,66,32,40,85,32,65,41,41,32,95,
-51,55,57,41,41,41,41,41,41,32,40,40,66,32,95,53,49,49,41,32,
-40,40,66,32,40,85,32,65,41,41,32,95,51,55,57,41,41,41,41,41,
-41,41,32,40,40,66,32,40,67,32,66,41,41,32,40,40,66,32,40,40,
-67,39,32,66,41,32,66,41,41,32,40,40,40,83,39,32,40,67,39,32,
-66,41,41,32,40,40,66,32,40,66,32,40,67,39,32,66,41,41,41,32,
-40,40,40,83,39,32,66,41,32,40,66,39,32,95,53,53,53,41,41,32,
-40,40,66,32,95,53,49,49,41,32,40,40,66,32,40,85,32,65,41,41,
-32,95,51,55,57,41,41,41,41,41,32,40,40,66,32,95,53,49,49,41,
-32,40,40,66,32,40,85,32,65,41,41,32,95,51,55,57,41,41,41,41,
-41,41,41,32,40,40,66,32,85,41,32,40,40,66,32,40,66,32,95,53,
-53,56,41,41,32,40,40,66,32,95,53,49,50,41,32,40,40,66,32,40,
-85,32,65,41,41,32,95,51,55,57,41,41,41,41,41,41,32,40,40,66,
-32,85,41,32,40,40,66,32,40,66,32,95,53,53,56,41,41,32,40,40,
-66,32,95,53,49,51,41,32,40,40,66,32,40,85,32,65,41,41,32,95,
-51,55,57,41,41,41,41,41,41,32,40,40,66,32,85,41,32,40,40,66,
-32,90,41,32,40,40,40,83,39,32,40,67,39,32,95,53,53,56,41,41,
-32,40,40,66,32,95,53,49,52,41,32,40,40,66,32,40,85,32,65,41,
-41,32,95,51,55,57,41,41,41,32,40,40,40,67,39,32,95,53,49,53,
-41,32,40,40,66,32,40,85,32,65,41,41,32,95,51,55,57,41,41,32,
-40,95,51,55,51,32,35,49,41,41,41,41,41,41,41,32,40,40,40,83,
-39,32,40,67,39,32,95,53,53,56,41,41,32,40,40,66,32,95,53,49,
-53,41,32,40,40,66,32,40,85,32,65,41,41,32,95,51,55,57,41,41,
-41,32,40,40,40,67,39,32,95,53,49,53,41,32,40,40,66,32,40,85,
-32,65,41,41,32,95,51,55,57,41,41,32,40,95,51,55,51,32,35,49,
-41,41,41,41,41,32,40,40,65,32,58,53,53,48,32,40,40,83,32,40,
-40,83,32,40,40,40,83,39,32,95,50,54,49,41,32,40,40,66,32,95,
-53,52,57,41,32,40,85,32,75,41,41,41,32,40,40,66,32,40,67,32,
-66,41,41,32,40,40,66,32,40,40,67,39,32,66,41,32,66,41,41,32,
-40,40,40,83,39,32,40,67,39,32,66,41,41,32,40,40,66,32,66,39,
-41,32,40,40,40,83,39,32,66,41,32,40,40,66,32,67,39,41,32,40,
-40,66,32,95,53,53,52,41,32,40,85,32,75,41,41,41,41,32,40,40,
-66,32,95,53,49,49,41,32,40,40,66,32,40,85,32,65,41,41,32,40,
-40,66,32,95,51,55,57,41,32,40,85,32,75,41,41,41,41,41,41,41,
-32,40,40,66,32,95,53,49,49,41,32,40,40,66,32,40,85,32,65,41,
-41,32,40,40,66,32,95,51,55,57,41,32,40,85,32,75,41,41,41,41,
-41,41,41,41,41,32,40,40,66,32,85,41,32,40,40,40,67,39,32,40,
-67,39,32,67,41,41,32,40,40,40,83,39,32,66,41,32,40,40,66,32,
-83,41,32,40,40,40,83,39,32,67,41,32,40,40,66,32,95,50,49,49,
-41,32,40,40,66,32,40,85,32,75,41,41,32,40,40,66,32,95,51,55,
-57,41,32,40,85,32,75,41,41,41,41,41,32,40,40,40,67,39,32,95,
-53,49,53,41,32,40,40,66,32,40,85,32,65,41,41,32,40,40,66,32,
-95,51,55,57,41,32,40,85,32,75,41,41,41,41,32,40,95,51,55,51,
-32,35,48,41,41,41,41,41,32,40,40,40,83,39,32,83,41,32,40,40,
-40,67,39,32,40,83,39,32,83,39,41,41,32,40,40,40,83,39,32,67,
-41,32,40,40,66,32,95,53,50,55,41,32,40,85,32,65,41,41,41,32,
-40,40,40,67,39,32,95,53,49,53,41,32,40,40,66,32,40,85,32,65,
-41,41,32,40,40,66,32,95,51,55,57,41,32,40,85,32,75,41,41,41,
-41,32,40,95,51,55,51,32,35,48,41,41,41,41,32,40,67,32,95,53,
-53,56,41,41,41,32,40,40,40,83,39,32,66,41,32,40,40,66,32,40,
-67,39,32,95,53,53,56,41,41,32,40,40,66,32,95,53,49,50,41,32,
-40,40,66,32,40,85,32,65,41,41,32,40,40,66,32,95,51,55,57,41,
-32,40,85,32,75,41,41,41,41,41,41,32,40,40,66,32,95,53,49,50,
-41,32,40,40,66,32,40,85,32,65,41,41,32,40,40,66,32,95,51,55,
-57,41,32,40,85,32,75,41,41,41,41,41,41,41,41,32,40,95,50,53,
-32,34,68,97,116,97,46,82,97,116,105,111,46,114,101,99,105,112,58,32,
-100,105,118,105,115,105,111,110,32,98,121,32,48,34,41,41,41,41,41,32,
-40,40,66,32,85,41,32,40,40,40,83,39,32,40,67,39,32,66,41,41,
-32,40,40,40,83,39,32,66,41,32,40,40,66,32,95,53,53,52,41,32,
-40,85,32,75,41,41,41,32,40,40,66,32,95,53,49,53,41,32,40,40,
-66,32,40,85,32,65,41,41,32,40,40,66,32,95,51,55,57,41,32,40,
-85,32,75,41,41,41,41,41,41,32,40,40,66,32,95,53,49,53,41,32,
-40,40,66,32,40,85,32,65,41,41,32,40,40,66,32,95,51,55,57,41,
-32,40,85,32,75,41,41,41,41,41,41,41,41,32,40,40,65,32,58,53,
-53,49,32,40,40,83,32,40,40,40,83,39,32,95,49,55,49,50,41,32,
-40,40,66,32,40,66,32,85,41,41,32,40,40,66,32,40,40,67,39,32,
-66,41,32,40,66,39,32,40,40,66,32,95,50,55,48,41,32,40,40,66,
-32,95,49,55,50,50,41,32,40,40,67,32,40,95,53,50,57,32,95,50,
-57,54,41,41,32,35,55,41,41,41,41,41,41,32,40,40,40,83,39,32,
-40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,95,50,55,50,41,
-41,32,40,40,67,32,95,49,55,49,51,41,32,35,56,41,41,41,32,40,
-40,66,32,40,66,32,40,95,50,55,50,32,40,95,49,55,50,49,32,34,
-32,37,32,34,41,41,41,41,32,40,40,67,32,95,49,55,49,51,41,32,
-35,56,41,41,41,41,41,41,32,40,40,66,32,95,49,55,49,55,41,32,
-95,53,53,49,41,41,41,32,40,40,66,32,95,49,55,49,56,41,32,95,
-53,53,49,41,41,41,32,40,40,65,32,58,53,53,50,32,40,40,95,53,
-53,56,32,40,40,95,53,49,53,32,95,51,50,50,41,32,40,95,51,55,
-51,32,35,49,41,41,41,32,40,40,95,53,49,53,32,95,51,50,50,41,
-32,40,95,51,55,51,32,35,48,41,41,41,41,32,40,40,65,32,58,53,
-53,51,32,40,40,95,53,53,56,32,40,40,95,53,49,53,32,95,51,50,
-50,41,32,40,95,51,55,51,32,35,48,41,41,41,32,40,40,95,53,49,
-53,32,95,51,50,50,41,32,40,95,51,55,51,32,35,48,41,41,41,41,
-32,40,40,65,32,58,53,53,52,32,40,40,83,32,40,40,40,83,39,32,
-67,39,41,32,40,40,66,32,83,39,41,32,95,53,53,53,41,41,32,40,
-40,40,83,39,32,40,67,39,32,66,41,41,32,40,40,66,32,95,53,49,
-49,41,32,40,40,66,32,40,85,32,65,41,41,32,95,51,55,57,41,41,
-41,32,40,40,66,32,95,53,49,52,41,32,40,40,66,32,40,85,32,65,
-41,41,32,95,51,55,57,41,41,41,41,41,32,40,40,66,32,95,53,49,
-51,41,32,40,40,66,32,40,85,32,65,41,41,32,95,51,55,57,41,41,
-41,41,32,40,40,65,32,58,53,53,53,32,40,40,40,67,39,32,40,67,
-39,32,67,41,41,32,40,40,40,83,39,32,66,41,32,40,40,66,32,83,
-41,32,40,40,40,83,39,32,67,41,32,40,40,66,32,95,50,49,49,41,
-32,40,40,66,32,40,85,32,75,41,41,32,95,51,55,57,41,41,41,32,
-40,40,40,67,39,32,95,53,49,53,41,32,40,40,66,32,40,85,32,65,
-41,41,32,95,51,55,57,41,41,32,40,95,51,55,51,32,35,48,41,41,
-41,41,41,32,40,40,40,83,39,32,83,41,32,40,40,40,83,39,32,40,
-67,39,32,83,39,41,41,32,40,40,66,32,40,66,32,40,83,39,32,95,
-53,53,56,41,41,41,32,95,51,56,48,41,41,32,95,51,56,48,41,41,
-32,95,51,57,52,41,41,41,32,40,95,50,53,32,34,68,97,116,97,46,
-82,97,116,105,111,46,37,58,32,48,32,100,101,110,111,109,105,110,97,116,
-111,114,34,41,41,41,32,40,40,65,32,58,53,53,54,32,40,85,32,75,
-41,41,32,40,40,65,32,58,53,53,55,32,40,85,32,65,41,41,32,40,
-40,65,32,58,53,53,56,32,40,40,40,83,39,32,66,41,32,115,101,113,
-41,32,40,40,66,32,40,83,32,115,101,113,41,41,32,80,41,41,41,32,
-40,40,65,32,58,53,53,57,32,40,40,67,32,95,53,53,56,41,32,40,
-95,51,55,51,32,35,49,41,41,41,32,40,40,65,32,58,53,54,48,32,
-95,53,53,56,41,32,40,40,65,32,58,53,54,49,32,85,41,32,40,40,
-65,32,58,53,54,50,32,40,85,32,73,41,41,32,40,40,65,32,58,53,
-54,51,32,40,75,32,40,110,111,68,101,102,97,117,108,116,32,34,82,101,
-97,108,46,116,111,82,97,116,105,111,110,97,108,34,41,41,41,32,40,40,
-65,32,58,53,54,52,32,40,40,66,32,40,66,32,40,66,32,40,66,32,
-40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
-32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,
-66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
-40,66,32,40,66,32,67,41,41,41,41,41,41,41,41,41,41,41,41,41,
-32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
-40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,67,41,
-41,41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,
-66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
-40,66,32,40,66,32,67,41,41,41,41,41,41,41,41,41,41,41,32,40,
-40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
-32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,41,41,41,41,41,
-41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
-32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,41,41,41,41,41,
-32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
-40,66,32,40,66,32,67,41,41,41,41,41,41,41,41,32,40,40,66,32,
-40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,67,41,
-41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,
-40,66,32,40,66,32,67,41,41,41,41,41,41,32,40,40,66,32,40,66,
-32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,41,32,40,40,66,
-32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,32,40,40,66,32,
-40,66,32,40,66,32,67,41,41,41,32,40,40,66,32,40,66,32,67,41,
-41,32,80,41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,
-65,32,58,53,54,53,32,40,85,32,40,90,32,40,90,32,40,90,32,40,
-90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,
-40,90,32,40,90,32,40,90,32,75,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,32,40,40,65,32,58,53,54,54,32,40,85,32,40,75,
-32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,
-90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,75,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,53,
-54,55,32,40,85,32,40,75,32,40,75,32,40,90,32,40,90,32,40,90,
-32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,
-90,32,40,90,32,75,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,32,40,40,65,32,58,53,54,56,32,40,85,32,40,75,32,40,75,32,
-40,75,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,
-32,40,90,32,40,90,32,40,90,32,40,90,32,75,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,53,54,57,32,40,
-85,32,40,75,32,40,75,32,40,75,32,40,75,32,40,90,32,40,90,32,
-40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,
-32,75,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,
-65,32,58,53,55,48,32,40,85,32,40,75,32,40,75,32,40,75,32,40,
-75,32,40,75,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,
-40,90,32,40,90,32,40,90,32,75,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,32,40,40,65,32,58,53,55,49,32,40,85,32,40,75,
-32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,90,32,40,
-90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,75,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,53,
-55,50,32,40,85,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,
-32,40,75,32,40,75,32,40,90,32,40,90,32,40,90,32,40,90,32,40,
-90,32,40,90,32,75,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,32,40,40,65,32,58,53,55,51,32,40,85,32,40,75,32,40,75,32,
-40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,90,
-32,40,90,32,40,90,32,40,90,32,40,90,32,75,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,53,55,52,32,40,
-85,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,
-40,75,32,40,75,32,40,75,32,40,90,32,40,90,32,40,90,32,40,90,
-32,75,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,
-65,32,58,53,55,53,32,40,85,32,40,75,32,40,75,32,40,75,32,40,
-75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,
-40,90,32,40,90,32,40,90,32,75,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,32,40,40,65,32,58,53,55,54,32,40,85,32,40,75,
-32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,
-75,32,40,75,32,40,75,32,40,75,32,40,90,32,40,90,32,75,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,53,
-55,55,32,40,85,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,
-32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,
-75,32,40,90,32,75,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,32,40,40,65,32,58,53,55,56,32,40,85,32,40,75,32,40,75,32,
-40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,
-32,40,75,32,40,75,32,40,75,32,40,75,32,75,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,53,55,57,32,40,
-85,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,
-40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,
-32,65,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,
-65,32,58,53,56,48,32,40,75,32,40,110,111,68,101,102,97,117,108,116,
-32,34,82,101,97,108,70,108,111,97,116,46,102,108,111,97,116,82,97,100,
-105,120,34,41,41,41,32,40,40,65,32,58,53,56,49,32,40,75,32,40,
-110,111,68,101,102,97,117,108,116,32,34,82,101,97,108,70,108,111,97,116,
-46,102,108,111,97,116,68,105,103,105,116,115,34,41,41,41,32,40,40,65,
-32,58,53,56,50,32,40,75,32,40,110,111,68,101,102,97,117,108,116,32,
-34,82,101,97,108,70,108,111,97,116,46,102,108,111,97,116,82,97,110,103,
-101,34,41,41,41,32,40,40,65,32,58,53,56,51,32,40,75,32,40,110,
-111,68,101,102,97,117,108,116,32,34,82,101,97,108,70,108,111,97,116,46,
-100,101,99,111,100,101,70,108,111,97,116,34,41,41,41,32,40,40,65,32,
-58,53,56,52,32,40,75,32,40,110,111,68,101,102,97,117,108,116,32,34,
-82,101,97,108,70,108,111,97,116,46,101,110,99,111,100,101,70,108,111,97,
-116,34,41,41,41,32,40,40,65,32,58,53,56,53,32,40,40,40,83,39,
-32,83,41,32,40,40,40,67,39,32,40,67,39,32,67,41,41,32,40,40,
-66,32,40,66,32,40,83,32,40,40,40,67,39,32,40,95,50,49,49,32,
-95,51,49,57,41,41,32,40,85,32,75,41,41,32,40,95,51,55,51,32,
-35,48,41,41,41,41,41,32,40,40,66,32,40,66,32,40,40,67,39,32,
-40,95,53,48,57,32,95,50,57,49,41,41,32,40,85,32,65,41,41,41,
-41,32,95,53,54,55,41,41,41,32,35,48,41,41,32,95,53,54,57,41,
-41,32,40,40,65,32,58,53,56,54,32,40,40,83,32,40,40,40,83,39,
-32,83,39,41,32,95,53,55,48,41,32,40,40,40,67,39,32,67,41,32,
-95,53,54,57,41,32,75,41,41,41,32,40,40,66,32,40,66,32,40,95,
-53,49,50,32,95,50,57,49,41,41,41,32,95,53,54,55,41,41,41,32,
-40,40,65,32,58,53,56,55,32,40,40,40,67,39,32,67,41,32,40,40,
-66,32,40,40,83,39,32,83,39,41,32,40,40,67,32,61,61,41,32,35,
-48,41,41,41,32,40,40,40,83,39,32,40,67,39,32,83,41,41,32,40,
-40,40,83,39,32,40,67,39,32,40,83,39,32,67,41,41,41,32,40,40,
-40,67,39,32,40,67,39,32,83,41,41,32,40,40,40,83,39,32,66,41,
-32,40,40,66,32,40,83,39,32,67,39,41,41,32,40,40,66,32,40,66,
-32,67,39,41,41,32,40,40,40,83,39,32,40,83,39,32,95,49,50,49,
-41,41,32,40,40,40,83,39,32,67,41,32,40,40,66,32,95,50,49,49,
-41,32,40,40,66,32,95,53,50,53,41,32,40,40,66,32,40,85,32,40,
-75,32,75,41,41,41,32,95,53,54,53,41,41,41,41,32,40,40,40,67,
-39,32,95,53,49,53,41,32,40,40,66,32,95,50,54,50,41,32,40,40,
-66,32,40,85,32,40,90,32,75,41,41,41,32,95,53,54,53,41,41,41,
-32,40,95,51,55,51,32,35,48,41,41,41,41,32,40,40,40,83,39,32,
-40,83,39,32,95,49,50,49,41,41,32,95,53,55,52,41,32,95,53,55,
-53,41,41,41,41,41,32,40,40,40,83,39,32,66,41,32,40,66,39,32,
-40,66,39,32,40,40,40,67,39,32,83,39,41,32,95,53,55,48,41,32,
-40,85,32,75,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
-40,66,32,40,40,67,39,32,40,95,53,48,57,32,95,50,57,49,41,41,
-32,40,85,32,65,41,41,41,41,41,41,32,40,40,66,32,40,67,39,32,
-40,67,39,32,95,53,57,52,41,41,41,32,40,40,66,32,40,66,32,40,
-40,67,39,32,40,95,53,48,57,32,95,50,57,49,41,41,32,40,40,40,
-83,39,32,40,95,53,49,48,32,95,50,57,49,41,41,32,40,85,32,65,
-41,41,32,40,85,32,75,41,41,41,41,41,32,40,40,66,32,40,66,32,
-40,40,95,53,49,49,32,95,50,57,49,41,32,40,40,95,53,49,53,32,
-95,50,57,49,41,32,40,95,51,55,51,32,35,52,41,41,41,41,41,32,
-95,53,54,55,41,41,41,41,41,41,41,32,73,41,41,32,95,53,54,57,
-41,41,32,95,53,54,56,41,41,41,32,73,41,41,32,40,40,65,32,58,
-53,56,56,32,40,75,32,40,110,111,68,101,102,97,117,108,116,32,34,82,
-101,97,108,70,108,111,97,116,46,105,115,78,97,78,34,41,41,41,32,40,
-40,65,32,58,53,56,57,32,40,75,32,40,110,111,68,101,102,97,117,108,
-116,32,34,82,101,97,108,70,108,111,97,116,46,105,115,73,110,102,105,110,
-105,116,101,34,41,41,41,32,40,40,65,32,58,53,57,48,32,40,75,32,
-40,110,111,68,101,102,97,117,108,116,32,34,82,101,97,108,70,108,111,97,
-116,46,105,115,68,101,110,111,114,109,97,108,105,122,101,100,34,41,41,41,
-32,40,40,65,32,58,53,57,49,32,40,75,32,40,110,111,68,101,102,97,
-117,108,116,32,34,82,101,97,108,70,108,111,97,116,46,105,115,78,101,103,
-97,116,105,118,101,90,101,114,111,34,41,41,41,32,40,40,65,32,58,53,
-57,50,32,40,75,32,40,110,111,68,101,102,97,117,108,116,32,34,82,101,
-97,108,70,108,111,97,116,46,105,115,73,69,69,69,34,41,41,41,32,40,
-40,65,32,58,53,57,51,32,40,40,40,83,39,32,40,83,39,32,83,41,
-41,32,40,40,40,83,39,32,66,41,32,40,40,66,32,83,41,32,40,40,
-40,83,39,32,67,41,32,40,40,66,32,95,53,50,57,41,32,40,40,66,
-32,40,85,32,40,75,32,75,41,41,41,32,95,53,54,53,41,41,41,32,
-40,40,40,67,39,32,95,53,49,53,41,32,40,40,66,32,95,50,54,50,
-41,32,40,40,66,32,40,85,32,40,90,32,75,41,41,41,32,95,53,54,
-53,41,41,41,32,40,95,51,55,51,32,35,48,41,41,41,41,41,32,40,
-40,40,83,39,32,40,67,39,32,67,41,41,32,40,40,40,83,39,32,40,
-83,39,32,83,41,41,32,40,40,40,83,39,32,66,41,32,40,40,66,32,
-40,67,39,32,95,49,50,50,41,41,32,40,40,40,83,39,32,67,41,32,
-40,40,66,32,95,50,49,49,41,32,40,40,66,32,95,53,50,53,41,32,
-40,40,66,32,40,85,32,40,75,32,75,41,41,41,32,95,53,54,53,41,
-41,41,41,32,40,40,40,67,39,32,95,53,49,53,41,32,40,40,66,32,
-95,50,54,50,41,32,40,40,66,32,40,85,32,40,90,32,75,41,41,41,
-32,95,53,54,53,41,41,41,32,40,95,51,55,51,32,35,48,41,41,41,
-41,41,32,40,40,40,83,39,32,67,41,32,40,40,66,32,95,53,50,57,
-41,32,40,40,66,32,40,85,32,40,75,32,75,41,41,41,32,95,53,54,
-53,41,41,41,32,40,40,40,67,39,32,95,53,49,53,41,32,40,40,66,
-32,95,50,54,50,41,32,40,40,66,32,40,85,32,40,90,32,75,41,41,
-41,32,95,53,54,53,41,41,41,32,40,95,51,55,51,32,35,48,41,41,
-41,41,41,32,40,40,40,83,39,32,40,83,39,32,83,41,41,32,40,40,
-40,83,39,32,40,83,39,32,83,41,41,32,40,40,40,83,39,32,66,41,
-32,40,40,66,32,40,67,39,32,95,49,50,50,41,41,32,40,40,40,83,
-39,32,67,41,32,40,40,66,32,95,53,50,55,41,32,40,40,66,32,40,
-85,32,40,75,32,75,41,41,41,32,95,53,54,53,41,41,41,32,40,40,
-40,67,39,32,95,53,49,53,41,32,40,40,66,32,95,50,54,50,41,32,
-40,40,66,32,40,85,32,40,90,32,75,41,41,41,32,95,53,54,53,41,
-41,41,32,40,95,51,55,51,32,35,48,41,41,41,41,41,32,40,40,40,
-83,39,32,67,41,32,40,40,66,32,95,53,50,57,41,32,40,40,66,32,
-40,85,32,40,75,32,75,41,41,41,32,95,53,54,53,41,41,41,32,40,
-40,40,67,39,32,95,53,49,53,41,32,40,40,66,32,95,50,54,50,41,
-32,40,40,66,32,40,85,32,40,90,32,75,41,41,41,32,95,53,54,53,
-41,41,41,32,40,95,51,55,51,32,35,48,41,41,41,41,41,32,40,40,
-40,83,39,32,40,83,39,32,83,41,41,32,40,40,40,83,39,32,40,83,
-39,32,83,41,41,32,40,40,40,83,39,32,40,83,39,32,40,83,39,32,
-95,49,50,49,41,41,41,32,40,40,40,83,39,32,66,41,32,40,40,66,
-32,40,67,39,32,95,49,50,50,41,41,32,40,40,40,83,39,32,67,41,
-32,40,40,66,32,95,53,50,56,41,32,40,40,66,32,40,85,32,40,75,
-32,75,41,41,41,32,95,53,54,53,41,41,41,32,40,40,40,67,39,32,
-95,53,49,53,41,32,40,40,66,32,95,50,54,50,41,32,40,40,66,32,
-40,85,32,40,90,32,75,41,41,41,32,95,53,54,53,41,41,41,32,40,
-95,51,55,51,32,35,48,41,41,41,41,41,32,40,40,40,83,39,32,67,
-41,32,40,40,66,32,95,53,50,55,41,32,40,40,66,32,40,85,32,40,
-75,32,75,41,41,41,32,95,53,54,53,41,41,41,32,40,40,40,67,39,
-32,95,53,49,53,41,32,40,40,66,32,95,50,54,50,41,32,40,40,66,
-32,40,85,32,40,90,32,75,41,41,41,32,95,53,54,53,41,41,41,32,
-40,95,51,55,51,32,35,48,41,41,41,41,41,32,40,40,40,83,39,32,
-40,83,39,32,40,83,39,32,95,49,50,49,41,41,41,32,40,40,40,83,
-39,32,66,41,32,40,40,66,32,40,67,39,32,95,49,50,50,41,41,32,
-40,40,40,83,39,32,67,41,32,40,40,66,32,95,53,50,55,41,32,40,
-40,66,32,40,85,32,40,75,32,75,41,41,41,32,95,53,54,53,41,41,
-41,32,40,40,40,67,39,32,95,53,49,53,41,32,40,40,66,32,95,50,
-54,50,41,32,40,40,66,32,40,85,32,40,90,32,75,41,41,41,32,95,
-53,54,53,41,41,41,32,40,95,51,55,51,32,35,48,41,41,41,41,41,
-32,95,53,55,55,41,41,32,40,40,40,83,39,32,66,41,32,40,40,66,
-32,40,67,39,32,95,49,50,50,41,41,32,95,53,55,55,41,41,32,95,
-53,55,55,41,41,41,41,32,40,40,40,83,39,32,40,67,39,32,67,41,
-41,32,40,40,40,83,39,32,83,41,32,40,40,40,83,39,32,40,67,39,
-32,83,39,41,41,32,40,40,66,32,40,66,32,95,49,50,50,41,41,32,
-40,40,40,83,39,32,67,41,32,40,40,66,32,95,50,49,49,41,32,40,
-40,66,32,95,53,50,53,41,32,40,40,66,32,40,85,32,40,75,32,75,
-41,41,41,32,95,53,54,53,41,41,41,41,32,40,40,40,67,39,32,95,
-53,49,53,41,32,40,40,66,32,95,50,54,50,41,32,40,40,66,32,40,
-85,32,40,90,32,75,41,41,41,32,95,53,54,53,41,41,41,32,40,95,
-51,55,51,32,35,48,41,41,41,41,41,32,40,40,40,83,39,32,40,83,
-39,32,95,49,50,49,41,41,32,40,40,40,83,39,32,67,41,32,40,40,
-66,32,95,53,50,55,41,32,40,40,66,32,40,85,32,40,75,32,75,41,
-41,41,32,95,53,54,53,41,41,41,32,40,40,40,67,39,32,95,53,49,
-53,41,32,40,40,66,32,95,50,54,50,41,32,40,40,66,32,40,85,32,
-40,90,32,75,41,41,41,32,95,53,54,53,41,41,41,32,40,95,51,55,
-51,32,35,48,41,41,41,41,32,95,53,55,55,41,41,41,32,40,40,40,
-67,39,32,40,83,39,32,67,41,41,32,40,40,40,83,39,32,40,83,39,
-32,83,41,41,32,40,40,40,83,39,32,66,41,32,40,40,66,32,40,67,
-39,32,95,49,50,50,41,41,32,40,40,40,83,39,32,67,41,32,40,40,
-66,32,95,50,49,49,41,32,40,40,66,32,95,53,50,53,41,32,40,40,
-66,32,40,85,32,40,75,32,75,41,41,41,32,95,53,54,53,41,41,41,
-41,32,40,40,40,67,39,32,95,53,49,53,41,32,40,40,66,32,95,50,
-54,50,41,32,40,40,66,32,40,85,32,40,90,32,75,41,41,41,32,95,
-53,54,53,41,41,41,32,40,95,51,55,51,32,35,48,41,41,41,41,41,
-32,40,40,40,83,39,32,67,41,32,40,40,66,32,95,50,49,49,41,32,
-40,40,66,32,95,53,50,53,41,32,40,40,66,32,40,85,32,40,75,32,
-75,41,41,41,32,95,53,54,53,41,41,41,41,32,40,40,40,67,39,32,
-95,53,49,53,41,32,40,40,66,32,95,50,54,50,41,32,40,40,66,32,
-40,85,32,40,90,32,75,41,41,41,32,95,53,54,53,41,41,41,32,40,
-95,51,55,51,32,35,48,41,41,41,41,41,32,40,40,66,32,67,41,32,
-40,40,66,32,95,53,48,57,41,32,40,40,66,32,95,50,54,50,41,32,
-40,40,66,32,40,85,32,40,90,32,75,41,41,41,32,95,53,54,53,41,
-41,41,41,41,41,32,73,41,41,41,32,40,40,66,32,95,50,49,55,41,
-32,40,40,66,32,40,85,32,40,75,32,65,41,41,41,32,95,53,54,53,
-41,41,41,41,41,32,40,40,40,83,39,32,66,41,32,40,66,39,32,40,
-40,66,32,95,53,49,50,41,32,40,40,66,32,95,50,54,50,41,32,40,
-40,66,32,40,85,32,40,90,32,75,41,41,41,32,95,53,54,53,41,41,
-41,41,41,32,40,40,40,83,39,32,66,41,32,95,53,55,57,41,32,40,
-40,66,32,95,53,49,50,41,32,40,40,66,32,95,50,54,50,41,32,40,
-40,66,32,40,85,32,40,90,32,75,41,41,41,32,95,53,54,53,41,41,
-41,41,41,41,41,41,32,40,40,40,83,39,32,66,41,32,40,66,39,32,
-40,40,40,83,39,32,95,53,48,57,41,32,40,40,66,32,95,50,54,50,
-41,32,40,40,66,32,40,85,32,40,90,32,75,41,41,41,32,95,53,54,
-53,41,41,41,32,40,40,66,32,95,50,49,55,41,32,40,40,66,32,40,
-85,32,40,75,32,65,41,41,41,32,95,53,54,53,41,41,41,41,41,32,
-40,40,40,83,39,32,66,41,32,40,66,39,32,40,40,66,32,95,50,50,
-56,41,32,40,40,66,32,40,85,32,40,75,32,65,41,41,41,32,95,53,
-54,53,41,41,41,41,32,40,40,66,32,95,50,54,51,41,32,40,40,66,
-32,40,85,32,40,90,32,75,41,41,41,32,95,53,54,53,41,41,41,41,
-41,41,41,32,40,40,83,32,40,40,40,83,39,32,95,50,54,51,41,32,
-40,40,66,32,40,85,32,40,90,32,75,41,41,41,32,95,53,54,53,41,
-41,32,40,40,66,32,95,50,49,55,41,32,40,40,66,32,40,85,32,40,
-75,32,65,41,41,41,32,95,53,54,53,41,41,41,41,32,40,40,40,67,
-39,32,95,53,49,53,41,32,40,40,66,32,95,50,54,50,41,32,40,40,
-66,32,40,85,32,40,90,32,75,41,41,41,32,95,53,54,53,41,41,41,
-32,40,95,51,55,51,32,35,50,41,41,41,41,41,41,32,40,40,40,83,
-39,32,66,41,32,40,66,39,32,40,40,66,32,95,50,50,56,41,32,40,
-40,66,32,40,85,32,40,75,32,65,41,41,41,32,95,53,54,53,41,41,
-41,41,32,40,40,66,32,95,50,54,51,41,32,40,40,66,32,40,85,32,
-40,90,32,75,41,41,41,32,95,53,54,53,41,41,41,41,41,32,40,40,
-65,32,58,53,57,52,32,40,40,40,83,39,32,66,41,32,40,40,66,32,
-40,95,53,51,49,32,95,50,57,54,41,41,32,40,95,53,49,50,32,95,
-50,57,49,41,41,41,32,40,95,53,51,50,32,95,50,57,54,41,41,41,
-32,40,40,65,32,58,53,57,53,32,85,41,32,40,40,65,32,58,53,57,
-54,32,40,85,32,73,41,41,32,40,40,65,32,58,53,57,55,32,40,75,
-32,40,110,111,68,101,102,97,117,108,116,32,34,83,101,109,105,103,114,111,
-117,112,46,60,62,34,41,41,41,32,40,40,65,32,58,53,57,56,32,40,
-85,32,75,41,41,32,40,40,65,32,58,53,57,57,32,40,85,32,65,41,
-41,32,40,40,65,32,58,54,48,48,32,40,40,95,50,49,48,32,40,40,
-67,32,66,41,32,40,85,32,95,49,50,54,41,41,41,32,40,95,50,49,
-52,32,95,54,48,48,41,41,41,32,40,40,65,32,58,54,48,49,32,40,
-40,40,83,39,32,95,50,49,48,41,32,40,40,66,32,40,67,32,66,41,
-41,32,40,40,66,32,40,40,67,39,32,66,41,32,66,41,41,32,40,40,
-40,83,39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,40,
-67,39,32,66,41,41,41,32,40,40,66,32,40,66,32,40,66,32,95,49,
-50,50,41,41,41,32,40,40,66,32,95,50,49,49,41,32,40,85,32,75,
-41,41,41,41,41,32,40,40,66,32,95,50,49,49,41,32,40,85,32,65,
-41,41,41,41,41,41,32,40,40,66,32,95,50,49,52,41,32,40,40,66,
-32,95,54,48,49,41,32,40,40,40,83,39,32,80,41,32,40,85,32,75,
-41,41,32,40,85,32,65,41,41,41,41,41,41,32,40,40,65,32,58,54,
-48,50,32,40,40,40,83,39,32,95,50,49,48,41,32,40,40,66,32,40,
-67,32,66,41,41,32,40,40,66,32,40,40,67,39,32,66,41,32,40,66,
-39,32,66,41,41,41,32,40,40,40,83,39,32,40,67,39,32,66,41,41,
-32,40,40,66,32,66,39,41,32,40,40,66,32,40,66,32,40,67,39,32,
-66,41,41,41,32,40,40,66,32,40,66,32,66,39,41,41,32,40,40,66,
-32,40,66,32,40,66,32,95,49,50,50,41,41,41,32,40,40,66,32,95,
-50,49,49,41,32,40,85,32,40,90,32,75,41,41,41,41,41,41,41,41,
-32,40,40,40,83,39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,
-66,32,40,67,39,32,66,41,41,41,32,40,40,66,32,40,66,32,40,66,
-32,95,49,50,50,41,41,41,32,40,40,66,32,95,50,49,49,41,32,40,
-85,32,40,75,32,75,41,41,41,41,41,41,32,40,40,66,32,95,50,49,
-49,41,32,40,85,32,40,75,32,65,41,41,41,41,41,41,41,41,32,40,
-40,66,32,95,50,49,52,41,32,40,40,66,32,95,54,48,50,41,32,40,
-40,40,83,39,32,67,41,32,40,40,40,83,39,32,80,41,32,40,85,32,
-40,90,32,75,41,41,41,32,40,85,32,40,75,32,75,41,41,41,41,32,
-40,85,32,40,75,32,65,41,41,41,41,41,41,41,32,40,40,65,32,58,
-54,48,51,32,40,40,40,83,39,32,95,50,49,48,41,32,40,40,66,32,
-40,67,32,66,41,41,32,40,40,66,32,40,40,67,39,32,66,41,32,40,
-66,39,32,40,66,39,32,66,41,41,41,41,32,40,40,40,83,39,32,40,
-67,39,32,66,41,41,32,40,40,66,32,66,39,41,32,40,40,66,32,66,
-39,41,32,40,40,66,32,40,66,32,40,67,39,32,66,41,41,41,32,40,
-40,66,32,40,66,32,66,39,41,41,32,40,40,66,32,40,66,32,66,39,
-41,41,32,40,40,66,32,40,66,32,40,66,32,95,49,50,50,41,41,41,
-32,40,40,66,32,95,50,49,49,41,32,40,85,32,40,90,32,40,90,32,
-75,41,41,41,41,41,41,41,41,41,41,41,32,40,40,40,83,39,32,40,
-67,39,32,66,41,41,32,40,40,66,32,66,39,41,32,40,40,66,32,40,
-66,32,40,67,39,32,66,41,41,41,32,40,40,66,32,40,66,32,66,39,
-41,41,32,40,40,66,32,40,66,32,40,66,32,95,49,50,50,41,41,41,
-32,40,40,66,32,95,50,49,49,41,32,40,85,32,40,75,32,40,90,32,
-75,41,41,41,41,41,41,41,41,41,32,40,40,40,83,39,32,40,67,39,
-32,66,41,41,32,40,40,66,32,40,66,32,40,67,39,32,66,41,41,41,
-32,40,40,66,32,40,66,32,40,66,32,95,49,50,50,41,41,41,32,40,
-40,66,32,95,50,49,49,41,32,40,85,32,40,75,32,40,75,32,75,41,
-41,41,41,41,41,41,32,40,40,66,32,95,50,49,49,41,32,40,85,32,
-40,75,32,40,75,32,65,41,41,41,41,41,41,41,41,41,41,32,40,40,
-66,32,95,50,49,52,41,32,40,40,66,32,95,54,48,51,41,32,40,40,
-40,83,39,32,67,41,32,40,40,40,83,39,32,67,41,32,40,40,40,83,
-39,32,80,41,32,40,85,32,40,90,32,40,90,32,75,41,41,41,41,32,
-40,85,32,40,75,32,40,90,32,75,41,41,41,41,41,32,40,85,32,40,
-75,32,40,75,32,75,41,41,41,41,41,32,40,85,32,40,75,32,40,75,
-32,65,41,41,41,41,41,41,41,41,32,40,40,65,32,58,54,48,52,32,
-40,40,40,95,49,55,49,50,32,40,75,32,40,85,32,40,95,49,55,50,
-49,32,34,40,41,34,41,41,41,41,32,40,95,49,55,49,55,32,95,54,
-48,52,41,41,32,40,95,49,55,49,56,32,95,54,48,52,41,41,41,32,
-40,40,65,32,58,54,48,53,32,40,40,83,32,40,40,40,83,39,32,95,
-49,55,49,50,41,32,40,90,32,40,40,66,32,85,41,32,40,40,66,32,
-40,66,32,40,66,32,40,95,49,55,50,50,32,95,49,50,54,41,41,41,
-41,32,40,40,40,83,39,32,40,67,39,32,66,41,41,32,40,40,66,32,
-40,66,32,95,50,55,50,41,41,32,40,40,40,67,39,32,95,49,55,49,
-51,41,32,40,85,32,75,41,41,32,35,48,41,41,41,32,40,40,66,32,
-40,66,32,40,95,50,55,50,32,40,95,49,55,50,49,32,40,40,79,32,
-35,52,52,41,32,75,41,41,41,41,41,32,40,40,40,67,39,32,95,49,
-55,49,51,41,32,40,85,32,65,41,41,32,35,48,41,41,41,41,41,41,
-41,32,40,40,66,32,95,49,55,49,55,41,32,40,40,66,32,95,54,48,
-53,41,32,40,40,40,83,39,32,80,41,32,40,85,32,75,41,41,32,40,
-85,32,65,41,41,41,41,41,41,32,40,40,66,32,95,49,55,49,56,41,
-32,40,40,66,32,95,54,48,53,41,32,40,40,40,83,39,32,80,41,32,
-40,85,32,75,41,41,32,40,85,32,65,41,41,41,41,41,41,32,40,40,
-65,32,58,54,48,54,32,40,40,83,32,40,40,40,83,39,32,95,49,55,
-49,50,41,32,40,90,32,40,40,66,32,85,41,32,40,40,66,32,40,66,
-32,40,66,32,40,66,32,40,95,49,55,50,50,32,95,49,50,54,41,41,
-41,41,41,32,40,40,40,83,39,32,40,67,39,32,66,41,41,32,40,40,
-66,32,66,39,41,32,40,40,66,32,40,66,32,95,50,55,50,41,41,32,
-40,40,40,67,39,32,95,49,55,49,51,41,32,40,85,32,40,90,32,75,
-41,41,41,32,35,48,41,41,41,41,32,40,40,66,32,40,66,32,40,66,
-32,40,95,50,55,50,32,40,95,49,55,50,49,32,40,40,79,32,35,52,
-52,41,32,75,41,41,41,41,41,41,32,40,40,40,83,39,32,40,67,39,
-32,66,41,41,32,40,40,66,32,40,66,32,95,50,55,50,41,41,32,40,
-40,40,67,39,32,95,49,55,49,51,41,32,40,85,32,40,75,32,75,41,
-41,41,32,35,48,41,41,41,32,40,40,66,32,40,66,32,40,95,50,55,
-50,32,40,95,49,55,50,49,32,40,40,79,32,35,52,52,41,32,75,41,
-41,41,41,41,32,40,40,40,67,39,32,95,49,55,49,51,41,32,40,85,
-32,40,75,32,65,41,41,41,32,35,48,41,41,41,41,41,41,41,41,41,
-32,40,40,66,32,95,49,55,49,55,41,32,40,40,66,32,95,54,48,54,
-41,32,40,40,40,83,39,32,67,41,32,40,40,40,83,39,32,80,41,32,
-40,85,32,40,90,32,75,41,41,41,32,40,85,32,40,75,32,75,41,41,
-41,41,32,40,85,32,40,75,32,65,41,41,41,41,41,41,41,32,40,40,
-66,32,95,49,55,49,56,41,32,40,40,66,32,95,54,48,54,41,32,40,
-40,40,83,39,32,67,41,32,40,40,40,83,39,32,80,41,32,40,85,32,
-40,90,32,75,41,41,41,32,40,85,32,40,75,32,75,41,41,41,41,32,
-40,85,32,40,75,32,65,41,41,41,41,41,41,41,32,40,40,65,32,58,
-54,48,55,32,40,40,83,32,40,40,40,83,39,32,95,49,55,49,50,41,
-32,40,90,32,40,40,66,32,85,41,32,40,40,66,32,40,66,32,40,66,
-32,40,66,32,40,66,32,40,95,49,55,50,50,32,95,49,50,54,41,41,
-41,41,41,41,32,40,40,40,83,39,32,40,67,39,32,66,41,41,32,40,
-40,66,32,66,39,41,32,40,40,66,32,66,39,41,32,40,40,66,32,40,
-66,32,95,50,55,50,41,41,32,40,40,40,67,39,32,95,49,55,49,51,
-41,32,40,85,32,40,90,32,40,90,32,75,41,41,41,41,32,35,48,41,
-41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,95,
-50,55,50,32,40,95,49,55,50,49,32,40,40,79,32,35,52,52,41,32,
-75,41,41,41,41,41,41,41,32,40,40,40,83,39,32,40,67,39,32,66,
-41,41,32,40,40,66,32,66,39,41,32,40,40,66,32,40,66,32,95,50,
-55,50,41,41,32,40,40,40,67,39,32,95,49,55,49,51,41,32,40,85,
-32,40,75,32,40,90,32,75,41,41,41,41,32,35,48,41,41,41,41,32,
-40,40,66,32,40,66,32,40,66,32,40,95,50,55,50,32,40,95,49,55,
-50,49,32,40,40,79,32,35,52,52,41,32,75,41,41,41,41,41,41,32,
-40,40,40,83,39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,
-32,95,50,55,50,41,41,32,40,40,40,67,39,32,95,49,55,49,51,41,
-32,40,85,32,40,75,32,40,75,32,75,41,41,41,41,32,35,48,41,41,
-41,32,40,40,66,32,40,66,32,40,95,50,55,50,32,40,95,49,55,50,
-49,32,40,40,79,32,35,52,52,41,32,75,41,41,41,41,41,32,40,40,
-40,67,39,32,95,49,55,49,51,41,32,40,85,32,40,75,32,40,75,32,
-65,41,41,41,41,32,35,48,41,41,41,41,41,41,41,41,41,41,41,32,
-40,40,66,32,95,49,55,49,55,41,32,40,40,66,32,95,54,48,55,41,
-32,40,40,40,83,39,32,67,41,32,40,40,40,83,39,32,67,41,32,40,
-40,40,83,39,32,80,41,32,40,85,32,40,90,32,40,90,32,75,41,41,
-41,41,32,40,85,32,40,75,32,40,90,32,75,41,41,41,41,41,32,40,
-85,32,40,75,32,40,75,32,75,41,41,41,41,41,32,40,85,32,40,75,
-32,40,75,32,65,41,41,41,41,41,41,41,41,32,40,40,66,32,95,49,
-55,49,56,41,32,40,40,66,32,95,54,48,55,41,32,40,40,40,83,39,
-32,67,41,32,40,40,40,83,39,32,67,41,32,40,40,40,83,39,32,80,
-41,32,40,85,32,40,90,32,40,90,32,75,41,41,41,41,32,40,85,32,
-40,75,32,40,90,32,75,41,41,41,41,41,32,40,85,32,40,75,32,40,
-75,32,75,41,41,41,41,41,32,40,85,32,40,75,32,40,75,32,65,41,
-41,41,41,41,41,41,41,32,40,40,65,32,58,54,48,56,32,40,40,95,
-49,50,55,32,95,49,52,53,48,41,32,95,49,52,53,48,41,41,32,40,
-40,65,32,58,54,48,57,32,40,40,40,83,39,32,95,49,50,55,41,32,
-40,40,40,83,39,32,80,41,32,40,40,66,32,95,49,50,56,41,32,40,
-85,32,75,41,41,41,32,40,40,66,32,95,49,50,56,41,32,40,85,32,
-65,41,41,41,41,32,40,40,40,83,39,32,80,41,32,40,40,66,32,95,
-49,50,57,41,32,40,85,32,75,41,41,41,32,40,40,66,32,95,49,50,
-57,41,32,40,85,32,65,41,41,41,41,41,32,40,40,65,32,58,54,49,
-48,32,40,40,40,83,39,32,95,49,50,55,41,32,40,40,40,83,39,32,
-67,41,32,40,40,40,83,39,32,80,41,32,40,40,66,32,95,49,50,56,
-41,32,40,85,32,40,90,32,75,41,41,41,41,32,40,40,66,32,95,49,
-50,56,41,32,40,85,32,40,75,32,75,41,41,41,41,41,32,40,40,66,
-32,95,49,50,56,41,32,40,85,32,40,75,32,65,41,41,41,41,41,32,
-40,40,40,83,39,32,67,41,32,40,40,40,83,39,32,80,41,32,40,40,
-66,32,95,49,50,57,41,32,40,85,32,40,90,32,75,41,41,41,41,32,
-40,40,66,32,95,49,50,57,41,32,40,85,32,40,75,32,75,41,41,41,
-41,41,32,40,40,66,32,95,49,50,57,41,32,40,85,32,40,75,32,65,
-41,41,41,41,41,41,32,40,40,65,32,58,54,49,49,32,40,40,40,83,
-39,32,95,49,50,55,41,32,40,40,40,83,39,32,67,41,32,40,40,40,
-83,39,32,67,41,32,40,40,40,83,39,32,80,41,32,40,40,66,32,95,
-49,50,56,41,32,40,85,32,40,90,32,40,90,32,75,41,41,41,41,41,
-32,40,40,66,32,95,49,50,56,41,32,40,85,32,40,75,32,40,90,32,
-75,41,41,41,41,41,41,32,40,40,66,32,95,49,50,56,41,32,40,85,
-32,40,75,32,40,75,32,75,41,41,41,41,41,41,32,40,40,66,32,95,
-49,50,56,41,32,40,85,32,40,75,32,40,75,32,65,41,41,41,41,41,
-41,32,40,40,40,83,39,32,67,41,32,40,40,40,83,39,32,67,41,32,
-40,40,40,83,39,32,80,41,32,40,40,66,32,95,49,50,57,41,32,40,
-85,32,40,90,32,40,90,32,75,41,41,41,41,41,32,40,40,66,32,95,
-49,50,57,41,32,40,85,32,40,75,32,40,90,32,75,41,41,41,41,41,
-41,32,40,40,66,32,95,49,50,57,41,32,40,85,32,40,75,32,40,75,
-32,75,41,41,41,41,41,41,32,40,40,66,32,95,49,50,57,41,32,40,
-85,32,40,75,32,40,75,32,65,41,41,41,41,41,41,41,32,40,40,65,
-32,58,54,49,50,32,40,95,53,57,53,32,40,75,32,40,75,32,95,49,
-52,53,48,41,41,41,41,32,40,40,65,32,58,54,49,51,32,40,40,66,
-32,95,53,57,53,41,32,40,40,66,32,40,67,32,66,41,41,32,40,40,
-66,32,40,40,67,39,32,66,41,32,66,41,41,32,40,40,40,83,39,32,
-40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,40,67,39,32,66,
-41,41,41,32,40,40,66,32,40,66,32,40,66,32,80,41,41,41,32,40,
-40,66,32,95,53,57,54,41,32,40,85,32,75,41,41,41,41,41,32,40,
-40,66,32,95,53,57,54,41,32,40,85,32,65,41,41,41,41,41,41,41,
-32,40,40,65,32,58,54,49,52,32,40,40,66,32,95,53,57,53,41,32,
-40,40,66,32,40,67,32,66,41,41,32,40,40,66,32,40,40,67,39,32,
-66,41,32,40,66,39,32,66,41,41,41,32,40,40,40,83,39,32,40,67,
-39,32,40,67,39,32,66,41,41,41,32,40,40,66,32,40,66,32,40,66,
-32,40,67,39,32,40,67,39,32,66,41,41,41,41,41,32,40,40,66,32,
-40,66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,41,32,40,
-40,40,83,39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,
-40,67,39,32,66,41,41,41,32,40,40,66,32,40,66,32,40,66,32,80,
-41,41,41,32,40,40,66,32,95,53,57,54,41,32,40,85,32,40,90,32,
-75,41,41,41,41,41,41,32,40,40,66,32,95,53,57,54,41,32,40,85,
-32,40,75,32,75,41,41,41,41,41,41,41,32,40,40,66,32,95,53,57,
-54,41,32,40,85,32,40,75,32,65,41,41,41,41,41,41,41,41,32,40,
-40,65,32,58,54,49,53,32,40,40,66,32,95,53,57,53,41,32,40,40,
-66,32,40,67,32,66,41,41,32,40,40,66,32,40,40,67,39,32,66,41,
-32,40,66,39,32,40,66,39,32,66,41,41,41,41,32,40,40,40,83,39,
-32,40,67,39,32,40,67,39,32,40,67,39,32,66,41,41,41,41,32,40,
-40,66,32,40,66,32,40,66,32,40,66,32,40,67,39,32,40,67,39,32,
-40,67,39,32,66,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,
-40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,
-41,41,41,32,40,40,40,83,39,32,40,67,39,32,40,67,39,32,66,41,
-41,41,32,40,40,66,32,40,66,32,40,66,32,40,67,39,32,40,67,39,
-32,66,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,
-32,40,66,32,67,41,41,41,41,41,32,40,40,40,83,39,32,40,67,39,
-32,66,41,41,32,40,40,66,32,40,66,32,40,67,39,32,66,41,41,41,
-32,40,40,66,32,40,66,32,40,66,32,80,41,41,41,32,40,40,66,32,
-95,53,57,54,41,32,40,85,32,40,90,32,40,90,32,75,41,41,41,41,
-41,41,41,32,40,40,66,32,95,53,57,54,41,32,40,85,32,40,75,32,
-40,90,32,75,41,41,41,41,41,41,41,41,32,40,40,66,32,95,53,57,
-54,41,32,40,85,32,40,75,32,40,75,32,75,41,41,41,41,41,41,41,
-41,32,40,40,66,32,95,53,57,54,41,32,40,85,32,40,75,32,40,75,
-32,65,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,54,49,54,
-32,40,40,40,40,95,53,48,48,32,95,54,49,50,41,32,95,49,52,53,
-48,41,32,40,95,53,48,54,32,95,54,49,54,41,41,32,40,95,53,48,
-55,32,95,54,49,54,41,41,41,32,40,40,65,32,58,54,49,55,32,40,
-40,83,32,40,40,83,32,40,40,40,83,39,32,95,53,48,48,41,32,40,
-40,66,32,95,54,49,51,41,32,40,40,40,83,39,32,80,41,32,40,40,
-66,32,95,53,48,49,41,32,40,85,32,75,41,41,41,32,40,40,66,32,
-95,53,48,49,41,32,40,85,32,65,41,41,41,41,41,32,40,40,40,83,
-39,32,80,41,32,40,40,66,32,95,53,48,50,41,32,40,85,32,75,41,
-41,41,32,40,40,66,32,95,53,48,50,41,32,40,85,32,65,41,41,41,
-41,41,32,40,40,66,32,95,53,48,54,41,32,40,40,66,32,95,54,49,
-55,41,32,40,40,40,83,39,32,80,41,32,40,85,32,75,41,41,32,40,
-85,32,65,41,41,41,41,41,41,32,40,40,66,32,95,53,48,55,41,32,
-40,40,66,32,95,54,49,55,41,32,40,40,40,83,39,32,80,41,32,40,
-85,32,75,41,41,32,40,85,32,65,41,41,41,41,41,41,32,40,40,65,
-32,58,54,49,56,32,40,40,83,32,40,40,83,32,40,40,40,83,39,32,
-95,53,48,48,41,32,40,40,66,32,95,54,49,52,41,32,40,40,40,83,
-39,32,67,41,32,40,40,40,83,39,32,80,41,32,40,40,66,32,95,53,
-48,49,41,32,40,85,32,40,90,32,75,41,41,41,41,32,40,40,66,32,
-95,53,48,49,41,32,40,85,32,40,75,32,75,41,41,41,41,41,32,40,
-40,66,32,95,53,48,49,41,32,40,85,32,40,75,32,65,41,41,41,41,
-41,41,32,40,40,40,83,39,32,67,41,32,40,40,40,83,39,32,80,41,
-32,40,40,66,32,95,53,48,50,41,32,40,85,32,40,90,32,75,41,41,
-41,41,32,40,40,66,32,95,53,48,50,41,32,40,85,32,40,75,32,75,
-41,41,41,41,41,32,40,40,66,32,95,53,48,50,41,32,40,85,32,40,
-75,32,65,41,41,41,41,41,41,32,40,40,66,32,95,53,48,54,41,32,
-40,40,66,32,95,54,49,56,41,32,40,40,40,83,39,32,67,41,32,40,
-40,40,83,39,32,80,41,32,40,85,32,40,90,32,75,41,41,41,32,40,
-85,32,40,75,32,75,41,41,41,41,32,40,85,32,40,75,32,65,41,41,
-41,41,41,41,41,32,40,40,66,32,95,53,48,55,41,32,40,40,66,32,
-95,54,49,56,41,32,40,40,40,83,39,32,67,41,32,40,40,40,83,39,
-32,80,41,32,40,85,32,40,90,32,75,41,41,41,32,40,85,32,40,75,
-32,75,41,41,41,41,32,40,85,32,40,75,32,65,41,41,41,41,41,41,
-41,32,40,40,65,32,58,54,49,57,32,40,40,83,32,40,40,83,32,40,
-40,40,83,39,32,95,53,48,48,41,32,40,40,66,32,95,54,49,53,41,
-32,40,40,40,83,39,32,67,41,32,40,40,40,83,39,32,67,41,32,40,
-40,40,83,39,32,80,41,32,40,40,66,32,95,53,48,49,41,32,40,85,
-32,40,90,32,40,90,32,75,41,41,41,41,41,32,40,40,66,32,95,53,
-48,49,41,32,40,85,32,40,75,32,40,90,32,75,41,41,41,41,41,41,
-32,40,40,66,32,95,53,48,49,41,32,40,85,32,40,75,32,40,75,32,
-75,41,41,41,41,41,41,32,40,40,66,32,95,53,48,49,41,32,40,85,
-32,40,75,32,40,75,32,65,41,41,41,41,41,41,41,32,40,40,40,83,
-39,32,67,41,32,40,40,40,83,39,32,67,41,32,40,40,40,83,39,32,
-80,41,32,40,40,66,32,95,53,48,50,41,32,40,85,32,40,90,32,40,
-90,32,75,41,41,41,41,41,32,40,40,66,32,95,53,48,50,41,32,40,
-85,32,40,75,32,40,90,32,75,41,41,41,41,41,41,32,40,40,66,32,
-95,53,48,50,41,32,40,85,32,40,75,32,40,75,32,75,41,41,41,41,
-41,41,32,40,40,66,32,95,53,48,50,41,32,40,85,32,40,75,32,40,
-75,32,65,41,41,41,41,41,41,41,32,40,40,66,32,95,53,48,54,41,
-32,40,40,66,32,95,54,49,57,41,32,40,40,40,83,39,32,67,41,32,
-40,40,40,83,39,32,67,41,32,40,40,40,83,39,32,80,41,32,40,85,
-32,40,90,32,40,90,32,75,41,41,41,41,32,40,85,32,40,75,32,40,
-90,32,75,41,41,41,41,41,32,40,85,32,40,75,32,40,75,32,75,41,
-41,41,41,41,32,40,85,32,40,75,32,40,75,32,65,41,41,41,41,41,
-41,41,41,32,40,40,66,32,95,53,48,55,41,32,40,40,66,32,95,54,
-49,57,41,32,40,40,40,83,39,32,67,41,32,40,40,40,83,39,32,67,
-41,32,40,40,40,83,39,32,80,41,32,40,85,32,40,90,32,40,90,32,
-75,41,41,41,41,32,40,85,32,40,75,32,40,90,32,75,41,41,41,41,
-41,32,40,85,32,40,75,32,40,75,32,75,41,41,41,41,41,32,40,85,
-32,40,75,32,40,75,32,65,41,41,41,41,41,41,41,41,32,40,40,65,
-32,58,54,50,48,32,40,40,40,40,40,40,40,95,53,48,56,32,95,49,
-52,55,50,41,32,95,49,52,55,51,41,32,95,49,52,55,52,41,32,40,
-95,53,49,57,32,95,54,50,48,41,41,32,73,41,32,40,40,67,32,40,
-40,67,32,40,40,67,32,40,95,50,49,49,32,95,54,50,53,41,41,32,
-35,48,41,41,32,35,49,41,41,32,35,48,41,41,32,40,40,66,32,95,
-49,52,57,57,41,32,95,51,55,52,41,41,41,32,40,40,65,32,58,54,
-50,49,32,40,40,40,40,40,40,40,40,95,51,55,56,32,40,40,80,32,
-95,54,50,53,41,32,95,54,50,48,41,41,32,95,49,52,55,53,41,32,
-95,49,52,55,54,41,32,40,95,51,56,57,32,95,54,50,49,41,41,32,
-40,95,51,57,48,32,95,54,50,49,41,41,32,40,95,51,57,49,32,95,
-54,50,49,41,41,32,40,95,51,57,50,32,95,54,50,49,41,41,32,95,
-51,55,53,41,41,32,40,40,65,32,58,54,50,50,32,40,40,95,49,50,
-55,32,35,48,41,32,35,45,49,41,41,32,40,40,65,32,58,54,50,51,
-32,40,95,53,54,49,32,40,40,66,32,95,53,53,57,41,32,95,51,55,
-53,41,41,41,32,40,40,65,32,58,54,50,52,32,40,40,40,40,40,40,
-40,40,95,49,56,56,32,40,40,67,32,40,95,53,48,57,32,95,54,50,
-48,41,41,32,40,40,95,53,49,53,32,95,54,50,48,41,32,40,95,51,
-55,51,32,35,49,41,41,41,41,32,40,40,67,32,40,95,53,49,48,32,
-95,54,50,48,41,41,32,40,40,95,53,49,53,32,95,54,50,48,41,32,
-40,95,51,55,51,32,35,49,41,41,41,41,32,95,49,52,57,57,41,32,
-95,49,52,57,56,41,32,40,40,83,32,95,52,56,49,41,32,40,40,66,
-32,40,95,49,57,51,32,95,54,50,55,41,41,32,40,40,67,32,40,95,
-53,48,57,32,95,54,50,48,41,41,32,35,49,41,41,41,41,32,40,40,
-40,83,39,32,40,67,39,32,89,41,41,32,40,40,66,32,40,66,32,40,
-66,32,40,83,32,95,52,56,49,41,41,41,41,32,40,40,66,32,40,66,
-32,40,67,32,66,41,41,41,32,40,40,66,32,40,66,32,40,67,32,40,
-95,53,48,57,32,95,54,50,48,41,41,41,41,32,40,67,32,40,95,53,
-49,48,32,95,54,50,48,41,41,41,41,41,41,32,73,41,41,32,40,40,
-66,32,40,40,67,39,32,95,52,52,51,41,32,40,67,32,40,95,53,50,
-56,32,95,54,50,54,41,41,41,41,32,40,95,49,57,51,32,95,54,50,
-55,41,41,41,32,40,40,40,83,39,32,83,41,32,40,40,40,83,39,32,
-40,83,39,32,83,39,41,41,32,40,67,32,40,95,53,50,57,32,95,54,
-50,54,41,41,41,32,40,40,66,32,40,66,32,40,40,67,39,32,95,52,
-52,51,41,32,40,67,32,40,95,53,51,48,32,95,54,50,54,41,41,41,
-41,41,32,40,95,49,57,52,32,95,54,50,55,41,41,41,41,32,40,40,
-66,32,40,66,32,40,40,67,39,32,95,52,52,51,41,32,40,67,32,40,
-95,53,50,56,32,95,54,50,54,41,41,41,41,41,32,40,95,49,57,52,
-32,95,54,50,55,41,41,41,41,41,32,40,40,65,32,58,54,50,53,32,
-40,40,95,50,49,48,32,95,49,52,57,50,41,32,95,49,52,57,51,41,
-41,32,40,40,65,32,58,54,50,54,32,40,40,40,40,40,40,40,40,95,
-53,50,52,32,95,54,50,53,41,32,40,95,53,51,51,32,95,54,50,54,
-41,41,32,95,49,52,57,52,41,32,95,49,52,57,53,41,32,95,49,52,
-57,54,41,32,95,49,52,57,55,41,32,40,95,53,51,56,32,95,54,50,
-54,41,41,32,40,95,53,51,57,32,95,54,50,54,41,41,41,32,40,40,
-65,32,58,54,50,55,32,40,40,40,40,40,40,40,40,95,49,56,56,32,
-40,95,49,57,55,32,95,54,50,55,41,41,32,40,95,49,57,56,32,95,
-54,50,55,41,41,32,95,49,52,57,57,41,32,95,49,52,57,56,41,32,
-40,95,50,48,49,32,95,54,50,55,41,41,32,40,95,50,48,50,32,95,
-54,50,55,41,41,32,40,95,50,48,51,32,95,54,50,55,41,41,32,40,
-95,50,48,52,32,95,54,50,55,41,41,41,32,40,40,65,32,58,54,50,
-56,32,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,
-40,40,40,40,95,54,54,32,95,54,50,53,41,32,95,49,52,55,55,41,
-32,95,49,52,55,56,41,32,95,49,52,55,57,41,32,95,49,52,56,51,
-41,32,40,95,57,51,32,95,54,50,56,41,41,32,40,95,57,52,32,95,
-54,50,56,41,41,32,35,48,41,32,40,95,49,52,56,48,32,35,49,41,
-41,32,40,95,57,55,32,95,54,50,56,41,41,32,40,95,57,56,32,95,
-54,50,56,41,41,32,40,95,57,57,32,95,54,50,56,41,41,32,40,95,
-49,48,48,32,95,54,50,56,41,41,32,95,49,52,56,48,41,32,40,95,
-49,48,50,32,95,54,50,56,41,41,32,95,49,52,56,49,41,32,40,95,
-49,48,52,32,95,54,50,56,41,41,32,40,95,49,48,53,32,95,54,50,
-56,41,41,32,40,95,49,48,54,32,95,54,50,56,41,41,32,40,95,49,
-48,55,32,95,54,50,56,41,41,32,40,75,32,40,95,52,57,57,32,95,
-49,53,51,49,41,41,41,32,40,75,32,95,49,53,51,49,41,41,41,32,
-40,40,65,32,58,54,50,57,32,40,40,40,95,49,55,49,50,32,40,95,
-49,55,49,54,32,95,54,50,57,41,41,32,40,89,32,40,40,40,67,39,
-32,83,41,32,40,40,40,67,39,32,67,41,32,40,40,66,32,40,40,83,
-39,32,83,39,41,32,40,40,67,32,40,95,53,50,55,32,95,54,50,54,
-41,41,32,35,49,48,41,41,41,32,40,40,40,67,39,32,40,67,39,32,
-66,41,41,32,40,40,66,32,40,66,32,95,52,56,50,41,41,32,40,40,
-67,32,66,41,32,40,40,67,32,40,95,51,56,48,32,95,54,50,49,41,
-41,32,35,49,48,41,41,41,41,32,40,40,67,32,79,41,32,75,41,41,
-41,41,32,40,40,67,32,79,41,32,75,41,41,41,32,40,40,66,32,95,
-49,51,55,41,32,40,40,66,32,40,40,95,53,48,57,32,95,50,57,49,
-41,32,40,95,49,51,56,32,35,52,56,41,41,41,32,40,40,66,32,95,
-49,52,57,56,41,32,40,40,67,32,40,95,51,56,49,32,95,54,50,49,
-41,41,32,35,49,48,41,41,41,41,41,41,41,32,40,95,49,55,49,56,
-32,95,54,50,57,41,41,41,32,40,40,65,32,58,54,51,48,32,40,40,
-66,32,40,66,32,73,79,46,112,101,114,102,111,114,109,73,79,41,41,32,
-40,40,40,67,39,32,66,41,32,40,40,66,32,40,95,51,52,32,95,49,
-53,54,56,41,41,32,95,49,53,56,56,41,41,32,40,95,51,53,32,95,
-49,53,54,56,41,41,41,41,32,40,40,65,32,58,54,51,49,32,40,40,
-66,32,40,67,32,95,54,51,48,41,41,32,40,40,67,32,95,51,53,41,
-32,95,49,52,53,48,41,41,41,32,40,40,65,32,58,54,51,50,32,40,
-40,40,67,39,32,95,49,53,49,52,41,32,95,49,53,50,52,41,32,40,
-85,32,40,90,32,95,49,53,49,54,41,41,41,41,32,40,40,65,32,58,
-54,51,51,32,95,49,53,50,52,41,32,40,40,65,32,58,54,51,52,32,
-40,40,40,67,39,32,66,41,32,40,40,66,32,95,49,53,49,52,41,32,
-95,54,51,50,41,41,32,40,40,67,32,40,83,39,32,95,49,53,49,52,
-41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,95,49,53,49,
-53,41,32,95,54,51,56,41,41,32,95,49,53,49,54,41,41,41,41,32,
-40,40,65,32,58,54,51,53,32,95,49,53,50,53,41,32,40,40,65,32,
-58,54,51,54,32,40,85,32,95,49,53,50,54,41,41,32,40,40,65,32,
-58,54,51,55,32,94,102,114,101,101,41,32,40,40,65,32,58,54,51,56,
-32,95,54,51,55,41,32,40,40,65,32,58,54,51,57,32,94,109,97,108,
-108,111,99,41,32,40,40,65,32,58,54,52,48,32,95,54,51,57,41,32,
-40,40,65,32,58,54,52,49,32,94,99,97,108,108,111,99,41,32,40,40,
-65,32,58,54,52,50,32,40,95,54,52,49,32,35,49,41,41,32,40,40,
-65,32,58,54,52,51,32,40,40,66,32,95,54,52,48,41,32,40,40,67,
-32,95,54,53,51,41,32,95,50,54,41,41,41,32,40,40,65,32,58,54,
-52,52,32,40,40,66,32,95,54,52,50,41,32,40,40,67,32,95,54,53,
-51,41,32,95,50,54,41,41,41,32,40,40,65,32,58,54,52,53,32,40,
-40,40,67,39,32,66,41,32,40,40,66,32,95,49,53,49,52,41,32,40,
-40,66,32,95,54,52,48,41,32,40,40,67,32,95,54,53,51,41,32,95,
-50,54,41,41,41,41,32,40,40,67,32,40,83,39,32,95,49,53,49,52,
-41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,95,49,53,49,
-53,41,32,95,54,51,56,41,41,32,95,49,53,49,54,41,41,41,41,32,
-40,40,65,32,58,54,52,54,32,40,40,95,50,49,48,32,40,40,40,67,
-39,32,66,41,32,40,40,66,32,40,95,50,49,49,32,95,54,50,53,41,
-41,32,95,49,53,50,56,41,41,32,95,49,53,50,56,41,41,32,40,95,
-50,49,52,32,95,54,52,54,41,41,41,32,40,40,65,32,58,54,52,55,
-32,40,40,40,95,49,55,49,50,32,40,75,32,40,40,66,32,40,95,50,
-55,50,32,40,95,49,55,50,49,32,34,80,84,82,35,34,41,41,41,32,
-40,40,66,32,40,40,95,49,55,49,51,32,95,54,50,57,41,32,35,48,
-41,41,32,95,49,53,50,56,41,41,41,41,32,40,95,49,55,49,55,32,
-95,54,52,55,41,41,32,40,95,49,55,49,56,32,95,54,52,55,41,41,
-41,32,40,40,65,32,58,54,52,56,32,40,95,49,53,50,55,32,35,48,
-41,41,32,40,40,65,32,58,54,52,57,32,95,49,53,49,51,41,32,40,
-40,65,32,58,54,53,48,32,40,40,66,32,40,66,32,95,49,53,50,57,
-41,41,32,40,40,66,32,95,49,52,53,49,41,32,95,49,53,51,48,41,
-41,41,32,40,40,65,32,58,54,53,49,32,40,40,40,67,39,32,66,41,
-32,40,40,66,32,95,49,52,53,50,41,32,95,49,53,51,48,41,41,32,
-95,49,53,51,48,41,41,32,40,40,65,32,58,54,53,50,32,40,40,66,
-32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,67,
-41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,
-32,40,66,32,40,66,32,67,41,41,41,41,41,41,32,40,40,66,32,40,
-66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,41,32,40,40,
-66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,32,40,40,66,
-32,40,66,32,40,66,32,67,41,41,41,32,40,40,66,32,40,66,32,67,
-41,41,32,80,41,41,41,41,41,41,41,32,40,40,65,32,58,54,53,51,
-32,40,85,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,
-90,32,75,41,41,41,41,41,41,41,41,32,40,40,65,32,58,54,53,52,
-32,40,85,32,40,75,32,40,90,32,40,90,32,40,90,32,40,90,32,40,
-90,32,75,41,41,41,41,41,41,41,41,32,40,40,65,32,58,54,53,53,
-32,40,85,32,40,75,32,40,75,32,40,90,32,40,90,32,40,90,32,40,
-90,32,75,41,41,41,41,41,41,41,41,32,40,40,65,32,58,54,53,54,
-32,40,85,32,40,75,32,40,75,32,40,75,32,40,90,32,40,90,32,40,
-90,32,75,41,41,41,41,41,41,41,41,32,40,40,65,32,58,54,53,55,
-32,40,85,32,40,75,32,40,75,32,40,75,32,40,75,32,40,90,32,40,
-90,32,75,41,41,41,41,41,41,41,41,32,40,40,65,32,58,54,53,56,
-32,40,85,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,
-90,32,75,41,41,41,41,41,41,41,41,32,40,40,65,32,58,54,53,57,
-32,40,85,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,
-75,32,75,41,41,41,41,41,41,41,41,32,40,40,65,32,58,54,54,48,
-32,40,85,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,
-75,32,65,41,41,41,41,41,41,41,41,32,40,40,65,32,58,54,54,49,
-32,40,75,32,40,110,111,68,101,102,97,117,108,116,32,34,83,116,111,114,
-97,98,108,101,46,115,105,122,101,79,102,34,41,41,41,32,40,40,65,32,
-58,54,54,50,32,40,75,32,40,110,111,68,101,102,97,117,108,116,32,34,
-83,116,111,114,97,98,108,101,46,97,108,105,103,110,109,101,110,116,34,41,
-41,41,32,40,40,65,32,58,54,54,51,32,40,40,40,83,39,32,40,67,
-39,32,66,41,41,32,95,54,53,55,41,32,40,40,66,32,40,67,32,95,
-49,52,53,51,41,41,32,40,40,67,32,95,54,53,51,41,32,95,50,54,
-41,41,41,41,32,40,40,65,32,58,54,54,52,32,40,40,40,67,39,32,
-67,41,32,40,40,40,83,39,32,40,67,39,32,67,39,41,41,32,40,40,
-66,32,40,66,32,83,39,41,41,32,95,54,53,56,41,41,32,40,40,66,
-32,40,40,67,39,32,66,41,32,95,49,52,53,51,41,41,32,95,54,53,
-51,41,41,41,32,73,41,41,32,40,40,65,32,58,54,54,53,32,40,40,
-40,67,39,32,66,41,32,40,66,39,32,95,54,53,57,41,41,32,95,54,
-53,48,41,41,32,40,40,65,32,58,54,54,54,32,40,40,40,67,39,32,
-66,41,32,40,66,39,32,95,54,54,48,41,41,32,95,54,53,48,41,41,
-32,40,40,65,32,58,54,54,55,32,40,40,40,67,39,32,67,41,32,95,
-54,53,53,41,32,35,48,41,41,32,40,40,65,32,58,54,54,56,32,40,
-40,40,67,39,32,67,41,32,95,54,53,54,41,32,35,48,41,41,32,40,
-40,65,32,58,54,54,57,32,94,119,111,114,100,80,101,101,107,41,32,40,
-40,65,32,58,54,55,48,32,94,119,111,114,100,80,111,107,101,41,32,40,
-40,65,32,58,54,55,49,32,40,40,40,40,40,40,40,40,95,54,53,50,
-32,40,75,32,95,49,53,51,49,41,41,32,40,75,32,95,49,53,51,49,
-41,41,32,40,95,54,54,51,32,95,54,55,49,41,41,32,40,95,54,54,
-52,32,95,54,55,49,41,41,32,40,95,54,54,53,32,95,54,55,49,41,
-41,32,40,95,54,54,54,32,95,54,55,49,41,41,32,95,54,54,57,41,
-32,95,54,55,48,41,41,32,40,40,65,32,58,54,55,50,32,73,41,32,
-40,40,65,32,58,54,55,51,32,95,54,55,50,41,32,40,40,65,32,58,
-54,55,52,32,75,41,32,40,40,65,32,58,54,55,53,32,79,41,32,40,
-40,65,32,58,54,55,54,32,40,40,67,32,40,40,67,32,40,40,80,32,
-40,75,32,95,54,55,52,41,41,32,95,54,55,53,41,41,32,40,75,32,
-40,75,32,95,54,55,52,41,41,41,41,32,40,75,32,95,54,55,52,41,
-41,41,32,40,40,65,32,58,54,55,55,32,40,40,66,32,40,67,32,40,
-40,67,32,40,40,80,32,40,75,32,95,49,50,53,41,41,32,40,75,32,
-40,75,32,95,49,50,53,41,41,41,41,32,40,75,32,40,75,32,95,49,
-50,53,41,41,41,41,41,32,40,40,40,67,39,32,67,41,32,40,40,66,
-32,40,67,32,40,40,67,32,40,40,67,32,40,40,67,32,40,40,67,32,
-40,40,80,32,40,75,32,95,49,50,53,41,41,32,40,75,32,95,49,50,
-53,41,41,41,32,40,75,32,95,49,50,53,41,41,41,32,40,75,32,95,
-49,50,53,41,41,41,32,40,75,32,95,49,50,53,41,41,41,32,40,75,
-32,95,49,50,53,41,41,41,41,32,40,95,50,49,49,32,95,49,51,52,
-41,41,41,32,40,75,32,95,49,50,53,41,41,41,41,32,40,40,65,32,
-58,54,55,56,32,40,95,54,55,55,32,40,40,79,32,35,55,53,41,32,
-75,41,41,41,32,40,40,65,32,58,54,55,57,32,40,95,54,55,55,32,
-40,40,79,32,35,55,51,41,32,75,41,41,41,32,40,40,65,32,58,54,
-56,48,32,40,95,54,55,55,32,40,40,79,32,35,54,54,41,32,75,41,
-41,41,32,40,40,65,32,58,54,56,49,32,40,95,54,55,55,32,40,40,
-79,32,35,54,55,41,32,75,41,41,41,32,40,40,65,32,58,54,56,50,
-32,40,95,54,55,55,32,40,40,79,32,35,56,57,41,32,75,41,41,41,
-32,40,40,65,32,58,54,56,51,32,40,95,54,55,55,32,40,40,79,32,
-35,56,48,41,32,75,41,41,41,32,40,40,65,32,58,54,56,52,32,40,
-95,55,56,55,32,40,95,56,54,49,32,40,40,79,32,35,55,51,41,32,
-75,41,41,41,41,32,40,40,65,32,58,54,56,53,32,40,95,55,56,55,
-32,40,95,56,54,49,32,40,40,79,32,35,55,53,41,32,75,41,41,41,
-41,32,40,40,65,32,58,54,56,54,32,40,95,55,56,55,32,40,95,56,
-54,49,32,40,40,79,32,35,56,51,41,32,75,41,41,41,41,32,40,40,
-65,32,58,54,56,55,32,40,95,55,56,55,32,40,95,56,54,49,32,40,
-40,79,32,35,56,48,41,32,75,41,41,41,41,32,40,40,65,32,58,54,
-56,56,32,40,40,95,50,55,50,32,95,55,48,50,41,32,95,54,56,57,
-41,41,32,40,40,65,32,58,54,56,57,32,40,40,83,32,40,40,67,32,
-40,40,67,32,40,40,83,32,73,41,32,75,41,41,32,40,40,40,67,39,
-32,66,41,32,40,40,66,32,95,55,56,53,41,32,95,54,56,57,41,41,
-32,95,54,56,57,41,41,41,32,95,54,57,48,41,41,32,75,41,41,32,
-40,40,65,32,58,54,57,48,32,40,40,66,32,89,41,32,40,40,40,67,
-39,32,40,67,39,32,83,41,41,32,40,40,40,67,39,32,40,83,39,32,
-67,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,80,41,32,
-40,40,40,67,39,32,67,41,32,40,40,40,67,39,32,83,41,32,40,95,
-50,49,49,32,95,57,55,52,41,41,32,40,40,66,32,95,54,57,49,41,
-32,95,55,56,52,41,41,41,32,95,54,56,52,41,41,41,32,40,40,40,
-83,39,32,40,67,39,32,66,41,41,32,40,66,32,95,54,57,50,41,41,
-32,73,41,41,41,32,40,40,40,67,39,32,66,41,32,40,66,39,32,95,
-50,55,48,41,41,32,95,54,57,48,41,41,41,32,40,90,32,95,54,57,
-49,41,41,41,41,32,40,40,65,32,58,54,57,49,32,40,95,55,56,53,
-32,95,54,56,53,41,41,32,40,40,65,32,58,54,57,50,32,40,40,67,
-32,40,40,40,83,39,32,67,39,41,32,95,54,55,56,41,32,40,40,83,
-32,40,40,40,67,39,32,83,39,41,32,40,40,66,32,83,41,32,95,54,
-55,54,41,41,32,40,40,66,32,40,40,67,39,32,40,67,39,32,66,41,
-41,32,40,67,32,95,54,55,56,41,41,41,32,40,40,83,32,40,40,40,
-83,39,32,83,39,41,32,95,54,55,54,41,32,40,40,67,32,40,40,40,
-83,39,32,83,39,41,32,95,54,55,57,41,32,40,67,32,95,54,57,55,
-41,41,41,32,73,41,41,41,32,40,40,40,67,39,32,40,83,39,32,40,
-67,39,32,66,41,41,41,32,40,40,66,32,40,66,32,40,67,32,95,54,
-55,56,41,41,41,32,40,67,32,95,54,57,55,41,41,41,32,40,40,66,
-32,40,66,32,95,54,57,49,41,41,32,95,55,56,53,41,41,41,41,41,
-41,32,95,54,57,51,41,41,41,32,95,54,56,52,41,41,32,40,40,65,
-32,58,54,57,51,32,40,40,40,83,39,32,83,41,32,40,40,66,32,40,
-83,32,95,54,55,54,41,41,32,95,54,57,52,41,41,32,40,40,40,83,
-39,32,40,67,39,32,40,67,39,32,66,41,41,41,32,40,40,66,32,40,
-66,32,40,67,32,95,54,55,56,41,41,41,32,95,54,57,52,41,41,32,
-95,54,57,53,41,41,41,32,40,40,65,32,58,54,57,52,32,40,40,83,
-32,40,40,40,67,39,32,83,39,41,32,40,40,66,32,83,41,32,95,54,
-55,54,41,41,32,40,40,66,32,40,40,83,39,32,40,67,39,32,66,41,
-41,32,40,67,32,95,54,55,54,41,41,41,32,40,40,66,32,40,40,67,
-39,32,66,41,32,40,40,66,32,40,67,39,32,66,41,41,32,40,67,32,
-95,54,56,48,41,41,41,41,32,40,40,67,39,32,67,41,32,40,67,32,
-95,55,48,48,41,41,41,41,41,41,32,40,95,55,56,57,32,95,54,56,
-54,41,41,41,32,40,40,65,32,58,54,57,53,32,40,40,83,32,40,40,
-40,67,39,32,83,39,41,32,40,40,66,32,83,41,32,95,54,55,54,41,
-41,32,40,40,66,32,40,40,83,39,32,40,67,39,32,66,41,41,32,40,
-67,32,95,54,55,54,41,41,41,32,40,40,40,83,39,32,40,67,39,32,
-40,83,39,32,67,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,
-40,83,39,32,83,39,41,32,95,54,56,48,41,41,41,41,32,40,40,66,
-32,40,40,67,39,32,66,41,32,40,40,66,32,40,67,39,32,67,41,41,
-32,40,67,32,40,40,40,67,39,32,67,39,41,32,40,40,66,32,95,49,
-50,50,41,32,95,54,56,49,41,41,32,95,54,55,57,41,41,41,41,41,
-32,40,67,32,40,95,55,56,57,32,95,54,56,55,41,41,41,41,41,32,
-40,40,67,39,32,67,41,32,40,67,32,95,55,48,49,41,41,41,41,41,
-41,32,95,54,57,54,41,41,32,40,40,65,32,58,54,57,54,32,40,95,
-55,56,57,32,95,55,57,51,41,41,32,40,40,65,32,58,54,57,55,32,
-40,40,83,32,40,40,40,67,39,32,83,39,41,32,40,40,66,32,83,41,
-32,95,54,55,54,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,
-39,32,67,41,41,41,32,40,40,66,32,67,41,32,40,40,66,32,40,40,
-67,39,32,67,39,41,32,40,40,66,32,95,49,50,50,41,32,95,54,56,
-48,41,41,41,32,40,40,66,32,40,40,67,39,32,95,49,50,50,41,32,
-95,54,55,56,41,41,32,95,54,56,51,41,41,41,41,32,40,95,55,56,
-55,32,40,95,56,54,49,32,40,40,79,32,35,55,57,41,32,75,41,41,
-41,41,41,41,32,95,54,57,56,41,41,32,40,40,65,32,58,54,57,56,
-32,40,40,40,83,39,32,83,41,32,40,40,66,32,40,40,67,39,32,83,
-41,32,95,54,55,54,41,41,32,40,40,40,83,39,32,40,83,39,32,67,
-41,41,32,40,40,66,32,40,66,32,40,40,83,39,32,83,39,41,32,95,
-54,55,54,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,
-32,67,41,41,41,32,40,40,40,67,39,32,67,39,41,32,40,40,66,32,
-67,39,41,32,40,40,66,32,95,49,50,50,41,32,95,54,56,49,41,41,
-41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,95,49,50,50,41,
-32,95,54,56,49,41,41,32,95,54,55,57,41,41,41,32,95,54,56,55,
-41,41,41,32,40,40,66,32,40,66,32,40,67,39,32,67,41,41,41,32,
-40,40,40,67,39,32,67,39,41,32,40,40,66,32,67,39,41,32,40,40,
-66,32,95,49,50,50,41,32,95,54,56,50,41,41,41,32,40,40,40,67,
-39,32,66,41,32,40,40,66,32,95,49,50,50,41,32,95,54,56,48,41,
-41,32,95,54,55,56,41,41,41,41,41,41,32,95,54,57,57,41,41,32,
-40,40,65,32,58,54,57,57,32,40,40,67,32,40,40,40,83,39,32,83,
-39,41,32,95,54,55,57,41,32,40,95,55,56,57,32,40,95,55,56,55,
-32,40,95,56,54,49,32,40,40,79,32,35,54,54,41,32,75,41,41,41,
-41,41,41,32,73,41,41,32,40,40,65,32,58,55,48,48,32,40,95,55,
-57,48,32,40,95,55,56,55,32,40,95,56,54,49,32,34,83,39,34,41,
-41,41,41,32,40,40,65,32,58,55,48,49,32,40,95,55,57,48,32,40,
-95,55,56,55,32,40,95,56,54,49,32,34,67,39,34,41,41,41,41,32,
-40,40,65,32,58,55,48,50,32,40,40,67,32,40,40,83,32,95,54,55,
-54,41,32,73,41,41,32,40,40,66,32,40,40,67,39,32,40,67,32,40,
-40,40,67,39,32,67,41,32,40,40,83,32,40,40,40,67,39,32,83,39,
-41,32,40,40,66,32,95,49,50,50,41,32,95,54,55,56,41,41,32,95,
-54,55,57,41,41,32,40,40,40,67,39,32,67,41,32,40,40,83,32,40,
-40,40,67,39,32,83,39,41,32,40,40,66,32,95,49,50,50,41,32,95,
-54,56,48,41,41,32,95,54,55,56,41,41,32,40,40,40,67,39,32,67,
-41,32,40,40,83,32,40,40,40,67,39,32,83,39,41,32,40,40,66,32,
-95,49,50,50,41,32,95,54,56,49,41,41,32,95,54,55,57,41,41,32,
-40,40,40,67,39,32,67,41,32,40,40,83,32,40,40,40,67,39,32,83,
-39,41,32,40,40,66,32,95,49,50,50,41,32,95,54,56,48,41,41,32,
-95,54,56,48,41,41,32,40,40,40,67,39,32,67,41,32,40,40,83,32,
-40,40,40,67,39,32,83,39,41,32,40,40,66,32,95,49,50,50,41,32,
-95,54,56,49,41,41,32,95,54,56,49,41,41,32,40,40,40,83,39,32,
-83,41,32,40,40,66,32,40,83,32,95,54,55,54,41,41,32,95,55,56,
-53,41,41,32,40,40,40,83,39,32,66,41,32,40,40,40,67,39,32,67,
-39,41,32,40,40,66,32,95,49,50,50,41,32,95,54,56,50,41,41,32,
-95,54,55,56,41,41,32,95,55,56,53,41,41,41,41,32,40,95,55,56,
-55,32,40,95,56,54,49,32,40,40,79,32,35,56,50,41,32,75,41,41,
-41,41,41,41,32,40,95,55,56,55,32,40,95,56,54,49,32,34,66,39,
-34,41,41,41,41,41,32,40,95,55,56,55,32,40,95,56,54,49,32,40,
-40,79,32,35,56,53,41,32,75,41,41,41,41,41,41,32,40,95,55,56,
-55,32,40,95,56,54,49,32,40,40,79,32,35,57,48,41,32,75,41,41,
-41,41,41,41,32,40,95,55,56,55,32,40,95,56,54,49,32,40,40,79,
-32,35,54,53,41,32,75,41,41,41,41,41,41,32,95,55,48,50,41,41,
-32,95,55,48,50,41,41,41,32,40,40,65,32,58,55,48,51,32,34,46,
-109,104,115,99,97,99,104,101,34,41,32,40,40,65,32,58,55,48,52,32,
-40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,
-41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,
-41,32,40,40,66,32,40,66,32,40,66,32,67,41,41,41,32,40,40,66,
-32,40,66,32,67,41,41,32,80,41,41,41,41,41,32,40,40,65,32,58,
-55,48,53,32,40,85,32,40,90,32,40,90,32,40,90,32,40,90,32,75,
-41,41,41,41,41,41,32,40,40,65,32,58,55,48,54,32,40,85,32,40,
-75,32,40,90,32,40,90,32,40,90,32,75,41,41,41,41,41,41,32,40,
-40,65,32,58,55,48,55,32,40,85,32,40,75,32,40,75,32,40,90,32,
-40,90,32,75,41,41,41,41,41,41,32,40,40,65,32,58,55,48,56,32,
-40,85,32,40,75,32,40,75,32,40,75,32,40,90,32,75,41,41,41,41,
-41,41,32,40,40,65,32,58,55,48,57,32,40,85,32,40,75,32,40,75,
-32,40,75,32,40,75,32,75,41,41,41,41,41,41,32,40,40,65,32,58,
-55,49,48,32,40,85,32,40,75,32,40,75,32,40,75,32,40,75,32,65,
-41,41,41,41,41,41,32,40,40,65,32,58,55,49,49,32,40,40,40,83,
-39,32,40,67,39,32,40,67,39,32,40,95,51,51,32,95,49,53,54,56,
-41,41,41,41,32,95,55,49,51,41,32,40,40,66,32,85,41,32,40,40,
-66,32,40,66,32,40,66,32,40,40,95,51,51,32,95,49,53,54,56,41,
-32,95,49,53,57,54,41,41,41,41,32,40,40,40,67,39,32,66,41,32,
-40,40,66,32,40,67,39,32,40,67,39,32,40,40,83,39,32,40,95,51,
-51,32,95,49,53,54,56,41,41,32,40,40,66,32,40,95,51,53,32,95,
-49,53,54,56,41,41,32,95,50,50,41,41,41,41,41,32,40,40,66,32,
-40,66,32,40,66,32,40,66,32,85,41,41,41,41,32,40,40,66,32,40,
-66,32,40,66,32,40,66,32,40,40,95,51,51,32,95,49,53,54,56,41,
-32,95,49,53,57,54,41,41,41,41,41,32,40,40,40,83,39,32,66,41,
-32,40,40,66,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,
-40,67,39,32,40,95,51,52,32,95,49,53,54,56,41,41,41,41,32,40,
-40,40,67,39,32,66,41,32,40,66,39,32,40,40,66,32,95,50,55,48,
-41,32,40,40,66,32,40,95,52,54,32,95,49,53,54,56,41,41,32,40,
-40,40,67,39,32,40,95,53,50,57,32,95,50,57,54,41,41,32,95,55,
-48,53,41,32,35,48,41,41,41,41,41,32,40,40,66,32,40,66,32,40,
-95,50,55,48,32,95,49,53,56,56,41,41,41,32,40,40,66,32,40,66,
-32,40,95,52,56,50,32,34,99,111,109,98,105,110,97,116,111,114,32,99,
-111,110,118,101,114,115,105,111,110,32,34,41,41,41,32,40,40,40,67,39,
-32,40,67,39,32,95,52,56,50,41,41,32,40,40,66,32,40,66,32,40,
-95,49,55,51,52,32,35,54,41,41,41,32,40,40,66,32,40,66,32,40,
-95,49,55,49,52,32,95,50,57,55,41,41,41,32,40,67,32,40,95,53,
-49,48,32,95,50,57,49,41,41,41,41,41,32,34,109,115,34,41,41,41,
-41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,83,
-39,32,40,95,51,52,32,95,49,53,54,56,41,41,41,32,40,40,40,67,
-39,32,66,41,32,40,40,66,32,95,50,55,48,41,32,40,40,66,32,40,
-95,52,54,32,95,49,53,54,56,41,41,32,40,40,40,67,39,32,40,95,
-53,50,57,32,95,50,57,54,41,41,32,95,55,48,53,41,32,35,51,41,
-41,41,41,32,40,40,66,32,40,95,50,55,48,32,95,49,53,56,56,41,
-41,32,40,40,66,32,40,95,52,56,50,32,34,99,111,109,98,105,110,97,
-116,111,114,115,58,92,49,48,38,34,41,41,32,95,55,53,57,41,41,41,
-41,41,32,40,40,66,32,40,66,32,40,95,51,53,32,95,49,53,54,56,
-41,41,41,32,40,67,32,80,41,41,41,41,41,41,41,41,32,40,95,52,
-49,49,32,40,85,32,40,40,40,67,39,32,40,67,39,32,79,41,41,32,
-40,40,40,67,39,32,66,41,32,80,41,32,95,54,56,56,41,41,32,75,
-41,41,41,41,41,41,41,41,32,40,40,65,32,58,55,49,50,32,40,40,
-67,32,40,40,40,83,39,32,95,49,50,51,41,32,95,55,49,48,41,32,
-40,40,66,32,40,40,95,51,51,32,95,49,53,54,56,41,32,40,40,95,
-49,53,55,57,32,95,55,48,51,41,32,95,49,53,54,50,41,41,41,32,
-40,40,66,32,40,80,32,40,40,95,51,53,32,95,49,53,54,56,41,32,
-95,55,50,55,41,41,41,32,40,40,40,83,39,32,66,41,32,40,40,66,
-32,40,95,51,52,32,95,49,53,54,56,41,41,32,40,40,40,67,39,32,
-95,50,55,48,41,32,40,40,66,32,40,95,52,54,32,95,49,53,54,56,
-41,41,32,40,40,40,83,39,32,95,49,50,49,41,32,95,55,48,57,41,
-32,40,40,40,67,39,32,40,95,53,50,57,32,95,50,57,54,41,41,32,
-95,55,48,53,41,32,35,48,41,41,41,41,32,40,40,95,50,55,48,32,
-95,49,53,56,56,41,32,40,40,95,52,56,50,32,34,76,111,97,100,105,
-110,103,32,115,97,118,101,100,32,99,97,99,104,101,32,34,41,32,40,40,
-95,49,55,49,52,32,40,95,52,48,53,32,95,49,53,48,41,41,32,95,
-55,48,51,41,41,41,41,41,41,32,40,40,66,32,40,40,83,39,32,40,
-95,51,51,32,95,49,53,54,56,41,41,32,95,49,53,55,49,41,41,32,
-40,40,66,32,40,40,67,39,32,66,41,32,40,40,66,32,40,95,51,52,
-32,95,49,53,54,56,41,41,32,95,49,53,55,53,41,41,41,32,95,55,
-49,54,41,41,41,41,41,41,41,32,40,40,95,51,53,32,95,49,53,54,
-56,41,32,95,55,50,55,41,41,41,32,40,40,65,32,58,55,49,51,32,
-40,40,40,83,39,32,40,67,39,32,40,67,39,32,40,95,51,51,32,95,
-49,53,54,56,41,41,41,41,32,40,40,66,32,40,66,32,95,49,49,55,
-49,41,41,32,95,55,49,52,41,41,32,40,40,66,32,85,41,32,40,40,
-66,32,40,67,32,66,41,41,32,40,40,66,32,90,41,32,40,40,40,67,
-39,32,66,41,32,40,40,66,32,40,67,39,32,40,95,51,52,32,95,49,
-53,54,56,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,
-95,50,55,48,41,32,40,40,66,32,40,95,52,54,32,95,49,53,54,56,
-41,41,32,40,40,40,67,39,32,40,95,53,50,57,32,95,50,57,54,41,
-41,32,95,55,48,53,41,32,35,48,41,41,41,41,32,40,40,66,32,40,
-95,50,55,48,32,95,49,53,56,56,41,41,32,40,40,66,32,40,95,52,
-56,50,32,34,116,111,116,97,108,32,105,109,112,111,114,116,32,116,105,109,
-101,32,32,32,32,32,34,41,41,32,40,40,40,67,39,32,95,52,56,50,
-41,32,40,40,66,32,40,95,49,55,51,52,32,35,54,41,41,32,40,95,
-49,55,49,52,32,95,50,57,55,41,41,41,32,34,109,115,34,41,41,41,
-41,41,41,32,40,40,66,32,40,95,51,53,32,95,49,53,54,56,41,41,
-32,40,40,40,83,39,32,80,41,32,40,40,66,32,40,95,50,55,48,32,
-40,95,52,49,49,32,95,49,50,48,50,41,41,41,32,40,40,66,32,40,
-95,50,55,48,32,40,95,52,49,50,32,95,55,50,50,41,41,41,32,40,
-40,66,32,40,95,50,55,48,32,95,49,48,48,51,41,41,32,95,55,50,
-54,41,41,41,41,32,73,41,41,41,41,41,41,41,41,32,40,40,65,32,
-58,55,49,52,32,40,40,66,32,40,66,32,40,40,95,51,51,32,95,49,
-49,55,53,41,32,40,95,49,49,55,55,32,95,55,50,54,41,41,41,41,
-32,40,40,40,83,39,32,40,83,39,32,67,41,41,32,40,40,66,32,40,
-40,83,39,32,67,41,32,95,49,48,49,48,41,41,32,40,40,66,32,40,
-66,32,40,40,95,51,51,32,95,49,49,55,53,41,32,40,95,49,49,55,
-55,32,95,55,50,52,41,41,41,41,32,40,40,66,32,40,40,83,39,32,
-40,67,39,32,40,95,51,52,32,95,49,49,55,53,41,41,41,32,40,40,
-40,83,39,32,40,83,39,32,95,50,55,48,41,41,32,40,40,66,32,40,
-66,32,40,95,52,54,32,95,49,49,55,53,41,41,41,32,40,95,52,53,
-49,32,95,57,55,52,41,41,41,32,40,40,66,32,40,66,32,40,95,50,
-55,48,32,95,50,53,41,41,41,32,40,40,66,32,40,66,32,40,95,52,
-56,50,32,34,114,101,99,117,114,115,105,118,101,32,109,111,100,117,108,101,
-58,32,34,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,
-95,52,56,50,41,32,95,57,56,52,41,41,32,40,40,66,32,40,95,52,
-56,50,32,34,44,32,105,109,112,111,114,116,32,99,104,97,105,110,58,32,
-34,41,41,32,40,40,66,32,95,49,55,51,51,41,32,40,95,52,49,50,
-32,95,57,56,52,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,
-40,83,39,32,40,95,51,52,32,95,49,49,55,53,41,41,32,40,40,66,
-32,40,95,50,55,48,32,95,49,49,55,56,41,41,32,40,40,40,67,39,
-32,40,83,39,32,95,55,50,53,41,41,32,40,40,40,67,39,32,66,41,
-32,95,52,56,49,41,32,95,55,50,52,41,41,32,73,41,41,41,41,32,
-40,40,40,83,39,32,40,83,39,32,40,95,51,52,32,95,49,49,55,53,
-41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,95,50,55,
-48,41,32,40,40,66,32,40,95,52,54,32,95,49,49,55,53,41,41,32,
-40,40,40,67,39,32,40,95,53,50,57,32,95,50,57,54,41,41,32,95,
-55,48,53,41,32,35,48,41,41,41,41,32,40,40,66,32,40,95,50,55,
-48,32,95,49,49,56,49,41,41,32,40,40,66,32,40,95,50,55,48,32,
-95,49,53,56,56,41,41,32,40,40,66,32,40,95,52,56,50,32,34,105,
-109,112,111,114,116,105,110,103,32,34,41,41,32,95,57,56,52,41,41,41,
-41,41,32,40,40,40,83,39,32,40,83,39,32,40,95,51,51,32,95,49,
-49,55,53,41,41,41,32,95,55,49,53,41,32,40,40,66,32,40,66,32,
-85,41,41,32,40,40,40,83,39,32,40,83,39,32,66,41,41,32,40,40,
-66,32,40,66,32,40,83,39,32,40,83,39,32,66,41,41,41,41,32,40,
-40,66,32,40,66,32,40,66,32,40,66,32,40,95,51,52,32,95,49,49,
-55,53,41,41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,66,39,
-32,40,66,39,32,40,40,66,32,95,50,55,48,41,32,40,40,66,32,40,
-95,52,54,32,95,49,49,55,53,41,41,32,40,40,40,67,39,32,40,95,
-53,50,57,32,95,50,57,54,41,41,32,95,55,48,53,41,32,35,48,41,
-41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,95,50,55,
-48,32,95,49,49,56,49,41,41,41,41,32,40,40,66,32,40,66,32,40,
-66,32,40,95,50,55,48,32,95,49,53,56,56,41,41,41,41,32,40,40,
-66,32,40,66,32,40,66,32,40,95,52,56,50,32,34,105,109,112,111,114,
-116,105,110,103,32,100,111,110,101,32,34,41,41,41,41,32,40,40,40,67,
-39,32,66,41,32,40,66,39,32,40,40,66,32,95,52,56,50,41,32,95,
-57,56,52,41,41,41,32,40,40,66,32,40,66,32,40,95,52,56,50,32,
-34,44,32,34,41,41,41,32,40,40,40,83,39,32,40,83,39,32,95,52,
-56,50,41,41,32,40,40,66,32,40,66,32,40,95,49,55,49,52,32,95,
-50,57,55,41,41,41,32,40,95,53,48,57,32,95,50,57,49,41,41,41,
-32,40,40,66,32,40,66,32,40,95,52,56,50,32,34,109,115,32,40,34,
-41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,95,52,56,
-50,41,32,40,95,49,55,49,52,32,95,50,57,55,41,41,41,32,40,40,
-66,32,40,95,52,56,50,32,34,32,43,32,34,41,41,32,40,40,40,67,
-39,32,95,52,56,50,41,32,40,95,49,55,49,52,32,95,50,57,55,41,
-41,32,40,40,79,32,35,52,49,41,32,75,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,
-41,32,40,40,66,32,66,39,41,32,40,40,66,32,66,39,41,32,40,40,
-66,32,66,39,41,32,40,40,66,32,40,66,32,40,95,51,52,32,95,49,
-49,55,53,41,41,41,32,40,40,40,67,39,32,40,83,39,32,95,50,55,
-48,41,41,32,40,40,66,32,40,66,32,40,95,52,54,32,95,49,49,55,
-53,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,95,49,
-50,50,41,32,95,55,48,57,41,41,32,40,40,67,32,40,95,50,49,50,
-32,95,57,55,52,41,41,32,40,95,57,55,57,32,34,73,110,116,101,114,
-97,99,116,105,118,101,34,41,41,41,41,41,32,40,40,66,32,40,95,50,
-55,48,32,95,49,49,56,49,41,41,32,40,40,66,32,40,95,50,55,48,
-32,95,49,53,56,56,41,41,32,40,40,66,32,40,95,52,56,50,32,34,
-108,111,97,100,101,100,32,34,41,41,32,95,57,56,52,41,41,41,41,41,
-41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,40,
-95,51,51,32,95,49,49,55,53,41,32,95,49,49,56,48,41,41,41,41,
-41,32,40,40,40,83,39,32,66,41,32,40,66,39,32,40,66,39,32,40,
-40,66,32,40,67,39,32,40,95,51,52,32,95,49,49,55,53,41,41,41,
-32,40,40,66,32,40,66,32,40,95,50,55,48,32,95,49,49,55,57,41,
-41,41,32,95,55,50,57,41,41,41,41,41,32,40,40,66,32,40,66,32,
-40,66,32,40,66,32,40,95,51,53,32,95,49,49,55,53,41,41,41,41,
-41,32,40,40,40,67,39,32,66,41,32,40,66,39,32,40,66,39,32,80,
-41,41,41,32,40,40,66,32,40,66,32,40,95,53,48,57,32,95,50,57,
-49,41,41,41,32,40,95,53,48,57,32,95,50,57,49,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,32,40,40,40,67,39,32,40,67,
-39,32,66,41,41,32,40,40,66,32,40,66,32,40,95,51,52,32,95,49,
-49,55,53,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,
-95,50,55,48,41,32,40,40,66,32,40,95,52,54,32,95,49,49,55,53,
-41,41,32,40,40,40,67,39,32,40,95,53,50,57,32,95,50,57,54,41,
-41,32,95,55,48,53,41,32,35,48,41,41,41,41,32,40,40,66,32,40,
-95,50,55,48,32,95,49,49,56,49,41,41,32,40,40,66,32,40,95,50,
-55,48,32,95,49,53,56,56,41,41,32,40,40,66,32,40,95,52,56,50,
-32,34,105,109,112,111,114,116,105,110,103,32,99,97,99,104,101,100,32,34,
-41,41,32,95,57,56,52,41,41,41,41,41,41,32,40,40,66,32,40,95,
-51,53,32,95,49,49,55,53,41,41,32,40,40,67,32,80,41,32,40,40,
-95,53,49,53,32,95,50,57,49,41,32,40,95,51,55,51,32,35,48,41,
-41,41,41,41,41,41,41,32,40,40,65,32,58,55,49,53,32,40,40,66,
-32,40,66,32,40,40,95,51,51,32,95,49,49,55,53,41,32,40,95,49,
-49,56,49,32,95,49,53,57,54,41,41,41,41,32,40,40,40,83,39,32,
-40,83,39,32,66,41,41,32,40,40,66,32,40,66,32,40,95,51,51,32,
-95,49,49,55,53,41,41,41,32,40,40,66,32,40,66,32,95,49,49,56,
-49,41,41,32,95,55,49,56,41,41,41,32,40,40,66,32,40,66,32,40,
-66,32,85,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,40,83,
-39,32,66,41,32,40,40,66,32,40,95,51,51,32,95,49,49,55,53,41,
-41,32,40,40,66,32,95,49,49,56,49,41,32,95,49,54,49,51,41,41,
-41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,66,
-41,41,41,32,40,40,66,32,40,66,32,66,39,41,41,32,40,40,66,32,
-40,66,32,40,66,32,67,41,41,41,32,40,40,40,67,39,32,67,41,32,
-40,40,66,32,40,40,67,39,32,67,39,41,32,40,40,66,32,67,39,41,
-32,40,40,66,32,83,39,41,32,40,40,66,32,40,67,39,32,40,95,51,
-52,32,95,49,49,55,53,41,41,41,32,40,40,40,83,39,32,40,83,39,
-32,95,50,55,48,41,41,32,40,40,66,32,40,66,32,40,95,52,54,32,
-95,49,49,55,53,41,41,41,32,40,95,50,49,50,32,95,57,55,52,41,
-41,41,32,40,40,66,32,40,66,32,40,95,50,55,48,32,95,50,53,41,
-41,41,32,40,40,66,32,40,66,32,40,95,52,56,50,32,34,109,111,100,
-117,108,101,32,110,97,109,101,32,100,111,101,115,32,110,111,116,32,97,103,
-114,101,101,32,119,105,116,104,32,102,105,108,101,32,110,97,109,101,58,32,
-34,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,95,52,
-56,50,41,32,95,57,56,52,41,41,32,40,40,66,32,40,95,52,56,50,
-32,40,40,79,32,35,51,50,41,32,75,41,41,41,32,95,57,56,52,41,
-41,41,41,41,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,
-40,67,39,32,83,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,
-67,39,32,40,67,39,32,40,83,39,32,40,66,32,40,40,95,51,51,32,
-95,49,49,55,53,41,32,40,95,49,49,56,49,32,95,49,53,57,54,41,
-41,41,41,41,41,41,41,32,40,40,40,83,39,32,66,41,32,40,66,39,
-32,40,66,39,32,40,66,39,32,40,40,66,32,40,83,39,32,66,41,41,
-32,40,40,66,32,40,66,32,40,95,51,51,32,95,49,49,55,53,41,41,
-41,32,40,40,66,32,40,66,32,40,95,50,55,48,32,40,40,95,50,56,
-49,32,95,49,49,55,51,41,32,95,52,51,51,41,41,41,41,32,40,40,
-66,32,40,95,52,52,32,95,49,49,55,53,41,41,32,95,55,49,52,41,
-41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,
-32,40,66,32,40,66,32,40,66,32,85,41,41,41,41,41,41,41,32,40,
-40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
-32,40,66,32,40,66,32,40,40,95,51,51,32,95,49,49,55,53,41,32,
-40,95,49,49,56,49,32,95,49,53,57,54,41,41,41,41,41,41,41,41,
-41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,66,41,
-41,41,32,40,40,66,32,40,66,32,66,39,41,41,32,40,40,66,32,40,
-66,32,40,66,32,40,67,39,32,40,67,39,32,66,41,41,41,41,41,32,
-40,40,40,83,39,32,66,41,32,40,66,39,32,40,66,39,32,40,66,39,
-32,40,40,66,32,67,39,41,32,40,40,66,32,67,39,41,32,40,40,66,
-32,40,83,39,32,40,95,51,52,32,95,49,49,55,53,41,41,41,32,40,
-40,40,67,39,32,66,41,32,40,40,66,32,95,50,55,48,41,32,40,40,
-66,32,40,95,52,54,32,95,49,49,55,53,41,41,32,40,40,40,67,39,
-32,40,95,53,50,57,32,95,50,57,54,41,41,32,95,55,48,53,41,32,
-35,50,41,41,41,41,32,40,40,66,32,40,95,50,55,48,32,95,49,49,
-56,49,41,41,32,40,40,66,32,40,95,50,55,48,32,95,49,53,56,56,
-41,41,32,40,40,66,32,40,95,52,56,50,32,34,116,121,112,101,32,99,
-104,101,99,107,101,100,58,92,49,48,38,34,41,41,32,40,40,40,67,39,
-32,95,52,56,50,41,32,40,95,49,52,48,49,32,95,57,50,49,41,41,
-32,34,45,45,45,45,45,92,49,48,38,34,41,41,41,41,41,41,41,41,
-41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,
-67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,66,41,41,41,41,
-41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
-40,66,32,40,66,32,40,40,83,39,32,40,95,51,51,32,95,49,49,55,
-53,41,41,32,40,40,66,32,40,95,50,55,48,32,40,95,51,53,32,95,
-49,49,55,53,41,41,41,32,40,40,66,32,40,95,50,55,48,32,95,50,
-50,41,41,32,95,49,50,48,50,41,41,41,41,41,41,41,41,41,41,32,
-40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
-66,32,40,66,32,85,41,41,41,41,41,41,41,41,32,40,40,66,32,40,
-66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
-40,40,95,51,51,32,95,49,49,55,53,41,32,40,95,49,49,56,49,32,
-95,49,53,57,54,41,41,41,41,41,41,41,41,41,41,32,40,40,40,67,
-39,32,66,41,32,40,66,39,32,40,66,39,32,40,66,39,32,40,66,39,
-32,40,66,39,32,40,40,66,32,40,83,39,32,66,41,41,32,40,40,66,
-32,40,66,32,40,95,51,52,32,95,49,49,55,53,41,41,41,32,40,40,
-40,67,39,32,66,41,32,40,40,66,32,95,50,55,48,41,32,40,40,66,
-32,40,95,52,54,32,95,49,49,55,53,41,41,32,40,40,40,67,39,32,
-40,95,53,50,57,32,95,50,57,54,41,41,32,95,55,48,53,41,32,35,
-51,41,41,41,41,32,40,40,66,32,40,95,50,55,48,32,95,49,49,56,
-49,41,41,32,40,40,66,32,40,95,50,55,48,32,95,49,53,56,56,41,
-41,32,40,40,66,32,40,95,52,56,50,32,34,100,101,115,117,103,97,114,
-101,100,58,92,49,48,38,34,41,41,32,40,95,49,52,48,49,32,95,55,
-53,57,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,
-40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
-32,40,95,51,53,32,95,49,49,55,53,41,41,41,41,41,41,41,41,41,
-32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,66,
-41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,67,
-39,32,40,67,39,32,40,67,39,32,67,41,41,41,41,41,41,41,32,40,
-40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,66,41,41,
-41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,67,39,32,
-66,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,
-40,66,32,67,41,41,41,41,41,32,40,40,66,32,40,40,67,39,32,40,
-67,39,32,66,41,41,32,40,40,66,32,40,66,32,40,67,39,32,80,41,
-41,41,32,40,40,66,32,40,40,67,39,32,67,41,32,40,67,32,95,55,
-50,49,41,41,41,32,40,95,52,57,51,32,95,50,54,41,41,41,41,41,
-32,40,67,32,40,95,53,49,48,32,95,50,57,49,41,41,41,41,41,41,
-32,40,67,32,40,95,53,49,48,32,95,50,57,49,41,41,41,41,41,32,
-40,95,52,50,48,32,95,50,57,49,41,41,41,41,41,41,41,41,32,95,
-55,51,48,41,41,41,41,41,32,40,40,66,32,40,40,67,39,32,40,67,
-39,32,95,49,50,48,57,41,41,32,40,40,40,67,39,32,66,41,32,95,
-52,50,57,41,32,40,95,52,49,50,32,95,55,50,50,41,41,41,41,32,
-40,40,83,32,73,41,32,40,90,32,40,90,32,75,41,41,41,41,41,41,
-41,41,41,32,40,95,52,49,49,32,40,85,32,40,75,32,40,90,32,40,
-90,32,40,40,67,32,79,41,32,75,41,41,41,41,41,41,41,41,32,40,
-40,66,32,40,95,52,49,49,32,40,40,67,32,40,40,67,32,40,40,67,
-32,40,40,67,32,40,40,67,32,40,40,67,32,40,40,67,32,40,40,67,
-32,40,40,67,32,40,40,80,32,40,75,32,40,75,32,75,41,41,41,32,
-40,75,32,40,75,32,75,41,41,41,41,32,40,75,32,40,75,32,75,41,
-41,41,41,32,40,75,32,40,75,32,75,41,41,41,41,32,40,75,32,40,
-75,32,75,41,41,41,41,32,40,40,67,32,79,41,32,75,41,41,41,32,
-40,75,32,40,75,32,40,75,32,75,41,41,41,41,41,32,40,75,32,40,
-75,32,75,41,41,41,41,32,40,75,32,40,75,32,40,75,32,40,75,32,
-75,41,41,41,41,41,41,32,40,75,32,40,75,32,40,75,32,40,75,32,
-75,41,41,41,41,41,41,32,40,75,32,75,41,41,41,41,32,40,85,32,
-40,75,32,65,41,41,41,41,41,41,32,40,85,32,40,90,32,75,41,41,
-41,41,41,41,32,40,40,95,49,48,55,55,32,95,57,49,55,41,32,95,
-49,48,56,48,41,41,41,41,41,41,41,32,40,40,65,32,58,55,49,54,
-32,40,40,40,83,39,32,83,41,32,40,40,40,67,39,32,40,83,39,32,
-40,67,39,32,95,49,49,55,50,41,41,41,32,40,40,40,67,39,32,66,
-41,32,40,40,66,32,40,67,39,32,40,95,52,53,32,95,49,49,55,53,
-41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,40,95,51,51,32,
-95,49,49,55,53,41,32,95,49,49,56,48,41,41,41,41,32,40,40,66,
-32,40,66,32,40,40,83,39,32,67,41,32,40,40,67,32,40,40,40,67,
-39,32,67,39,41,32,95,49,48,49,48,41,32,95,55,50,54,41,41,32,
-40,40,95,51,53,32,95,49,49,55,53,41,32,95,49,52,53,48,41,41,
-41,41,41,32,40,40,66,32,40,66,32,40,66,32,85,41,41,41,32,40,
-40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,90,41,41,
-32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,83,39,32,66,41,
-41,32,40,40,66,32,40,66,32,40,95,51,51,32,95,49,49,55,53,41,
-41,41,32,40,40,66,32,40,66,32,40,95,50,55,48,32,95,49,49,56,
-49,41,41,41,32,95,55,49,57,41,41,41,41,32,40,40,40,83,39,32,
-40,83,39,32,66,41,41,32,40,66,32,80,41,41,32,40,40,66,32,40,
-66,32,40,66,32,85,41,41,41,32,40,40,66,32,40,66,32,90,41,41,
-32,40,40,66,32,40,66,32,40,66,32,40,40,83,39,32,40,95,51,51,
-32,95,49,49,55,53,41,41,32,40,40,66,32,40,95,50,55,48,32,95,
-49,49,56,49,41,41,32,95,49,54,49,50,41,41,41,41,41,32,40,40,
-66,32,40,66,32,40,66,32,40,40,67,39,32,66,41,32,40,40,66,32,
-40,95,51,52,32,95,49,49,55,53,41,41,32,40,40,66,32,40,95,50,
-55,48,32,95,49,49,56,49,41,41,32,95,49,53,55,53,41,41,41,41,
-41,41,32,40,66,32,40,40,67,39,32,40,67,39,32,95,50,55,48,41,
-41,32,40,40,66,32,40,66,32,40,95,52,54,32,95,49,49,55,53,41,
-41,41,32,40,67,32,40,95,50,49,50,32,95,49,54,48,57,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,
-95,49,48,48,52,41,32,95,55,50,54,41,41,41,32,73,41,41,32,40,
-40,66,32,40,66,32,89,41,41,32,40,40,66,32,40,66,32,40,66,32,
-40,40,83,39,32,40,95,51,51,32,95,49,49,55,53,41,41,32,40,40,
-66,32,40,95,50,55,48,32,95,49,49,55,55,41,41,32,40,40,66,32,
-40,95,50,55,50,32,95,52,57,53,41,41,32,40,40,40,67,39,32,95,
-50,55,50,41,32,95,49,48,49,48,41,32,95,55,50,54,41,41,41,41,
-41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,40,67,
-39,32,95,50,55,48,41,32,40,95,52,54,32,95,49,49,55,53,41,41,
-41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,66,39,32,40,40,
-66,32,40,83,39,32,40,95,51,52,32,95,49,49,55,53,41,41,41,32,
-40,40,40,67,39,32,66,41,32,40,40,66,32,95,50,55,48,41,32,40,
-40,66,32,40,95,52,54,32,95,49,49,55,53,41,41,32,40,40,40,67,
-39,32,40,95,53,50,57,32,95,50,57,54,41,41,32,95,55,48,53,41,
-32,35,48,41,41,41,41,32,40,40,66,32,40,95,50,55,48,32,95,49,
-49,56,49,41,41,32,40,40,66,32,40,95,50,55,48,32,95,49,53,56,
-56,41,41,32,40,40,66,32,40,95,52,56,50,32,34,105,110,118,97,108,
-105,100,97,116,101,32,99,97,99,104,101,100,32,34,41,41,32,40,95,49,
-55,49,52,32,95,57,55,54,41,41,41,41,41,41,41,41,32,40,40,66,
-32,40,66,32,40,40,83,39,32,40,95,51,52,32,95,49,49,55,53,41,
-41,32,40,40,66,32,95,49,49,55,56,41,32,95,55,50,56,41,41,41,
-41,32,40,40,66,32,40,40,67,39,32,66,41,32,40,40,66,32,95,50,
-55,48,41,32,40,95,52,53,32,95,49,49,55,53,41,41,41,41,32,40,
-40,66,32,40,66,32,40,95,50,55,48,32,40,95,52,57,51,32,95,52,
-56,48,41,41,41,41,32,40,40,66,32,40,67,32,95,49,48,49,48,41,
-41,32,40,40,66,32,95,55,49,55,41,32,40,40,66,32,40,95,52,49,
-49,32,40,85,32,40,40,66,32,90,41,32,40,40,40,67,39,32,40,67,
-39,32,79,41,41,32,40,40,66,32,80,41,32,95,49,50,48,49,41,41,
-32,75,41,41,41,41,41,32,40,40,66,32,95,49,48,48,51,41,32,95,
-55,50,54,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,65,
-32,58,55,49,55,32,40,40,95,52,49,52,32,40,40,67,32,66,41,32,
-40,40,67,39,32,95,52,49,52,41,32,40,40,66,32,40,67,32,40,95,
-49,48,49,50,32,95,52,56,50,41,41,41,32,40,40,67,32,79,41,32,
-75,41,41,41,41,41,32,95,49,48,48,49,41,41,32,40,40,65,32,58,
-55,49,56,32,40,40,40,83,39,32,40,83,39,32,40,95,51,51,32,95,
-49,53,54,56,41,41,41,32,95,55,49,57,41,32,40,40,40,67,39,32,
-40,67,39,32,80,41,41,32,40,40,66,32,40,40,83,39,32,95,50,55,
-48,41,32,40,40,66,32,40,95,57,49,54,32,95,54,55,51,41,41,32,
-40,95,56,56,53,32,95,56,56,55,41,41,41,41,32,40,40,66,32,40,
-66,32,40,95,52,56,50,32,34,70,105,108,101,32,110,111,116,32,102,111,
-117,110,100,58,32,34,41,41,41,32,40,40,66,32,40,40,67,39,32,95,
-52,56,50,41,32,40,95,49,55,49,52,32,95,57,55,54,41,41,41,32,
-40,40,66,32,40,95,52,56,50,32,34,92,49,48,38,112,97,116,104,61,
-34,41,41,32,40,40,66,32,40,95,49,55,49,52,32,40,95,52,48,53,
-32,40,95,52,48,53,32,95,49,53,48,41,41,41,41,32,95,55,48,55,
-41,41,41,41,41,41,32,40,85,32,40,40,66,32,40,40,67,39,32,40,
-95,51,51,32,95,49,53,54,56,41,41,32,95,49,53,57,51,41,41,32,
-40,40,66,32,40,66,32,40,95,51,53,32,95,49,53,54,56,41,41,41,
-32,80,41,41,41,41,41,41,32,40,40,65,32,58,55,49,57,32,40,40,
-40,67,39,32,66,41,32,40,40,66,32,95,55,50,48,41,32,95,55,48,
-55,41,41,32,40,40,40,67,39,32,95,52,56,50,41,32,40,40,66,32,
-40,95,52,49,50,32,40,40,67,32,40,40,83,32,40,40,67,32,40,95,
-50,49,49,32,95,49,51,50,41,41,32,35,52,54,41,41,32,73,41,41,
-32,35,52,55,41,41,41,32,95,57,56,50,41,41,32,34,46,104,115,34,
-41,41,41,32,40,40,65,32,58,55,50,48,32,40,40,40,67,39,32,66,
-41,32,40,85,32,40,40,95,51,53,32,95,49,53,54,56,41,32,95,52,
-57,56,41,41,41,32,40,40,40,83,39,32,66,41,32,40,40,66,32,40,
-67,39,32,40,40,83,39,32,40,95,51,51,32,95,49,53,54,56,41,41,
-32,40,40,67,32,95,49,53,55,57,41,32,95,49,53,54,50,41,41,41,
-41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,66,32,
-40,66,32,80,41,41,32,40,67,32,95,55,50,48,41,41,41,32,40,40,
-66,32,40,66,32,40,95,51,53,32,95,49,53,54,56,41,41,41,32,40,
-40,66,32,40,66,32,95,52,57,57,41,41,32,80,41,41,41,41,41,32,
-40,40,66,32,40,67,32,95,52,56,50,41,41,32,40,95,52,56,50,32,
-40,40,79,32,35,52,55,41,32,75,41,41,41,41,41,41,32,40,40,65,
-32,58,55,50,49,32,40,40,66,32,40,66,32,67,41,41,32,80,41,41,
-32,40,40,65,32,58,55,50,50,32,40,85,32,40,90,32,75,41,41,41,
-32,40,40,65,32,58,55,50,51,32,80,41,32,40,40,65,32,58,55,50,
-52,32,40,85,32,75,41,41,32,40,40,65,32,58,55,50,53,32,40,40,
-66,32,85,41,32,40,90,32,95,55,50,51,41,41,41,32,40,40,65,32,
-58,55,50,54,32,40,85,32,65,41,41,32,40,40,65,32,58,55,50,55,
-32,40,40,95,55,50,51,32,95,52,56,48,41,32,95,49,48,48,49,41,
-41,32,40,40,65,32,58,55,50,56,32,40,40,66,32,85,41,32,40,40,
-66,32,40,40,67,39,32,66,41,32,95,55,50,51,41,41,32,95,49,48,
-49,51,41,41,41,32,40,40,65,32,58,55,50,57,32,40,40,66,32,85,
-41,32,40,40,66,32,40,40,67,39,32,66,41,32,40,85,32,95,50,54,
-41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,67,32,95,55,50,
-51,41,41,41,41,32,40,40,66,32,67,41,32,40,67,32,95,49,48,49,
-49,41,41,41,41,41,41,32,40,40,65,32,58,55,51,48,32,40,85,32,
-40,40,40,83,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,
-39,32,40,67,39,32,40,67,39,32,66,41,41,41,41,41,41,41,32,40,
-40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
-32,95,50,55,48,41,41,41,41,41,41,41,32,95,49,50,48,48,41,41,
-32,40,40,66,32,40,66,32,40,95,50,55,48,32,40,95,52,49,50,32,
-95,55,56,51,41,41,41,41,32,40,40,66,32,40,66,32,40,95,50,55,
-48,32,95,55,56,50,41,41,41,32,40,40,66,32,95,52,49,49,41,32,
-95,55,51,49,41,41,41,41,41,41,32,40,40,65,32,58,55,51,49,32,
-40,40,40,67,39,32,67,41,32,40,40,40,67,39,32,67,41,32,40,40,
-40,83,39,32,67,41,32,40,40,40,67,39,32,67,41,32,40,40,40,67,
-39,32,67,41,32,40,40,40,67,39,32,67,41,32,40,40,40,67,39,32,
-67,41,32,40,40,40,67,39,32,67,41,32,40,40,40,67,39,32,67,41,
-32,40,40,40,83,39,32,80,41,32,40,90,32,40,40,40,67,39,32,67,
-41,32,40,40,40,67,39,32,40,83,39,32,67,41,41,32,40,40,40,67,
-39,32,40,67,39,32,40,67,39,32,95,52,51,49,41,41,41,32,40,40,
-66,32,40,66,32,40,66,32,40,66,32,85,41,41,41,41,32,40,40,66,
-32,40,66,32,40,66,32,90,41,41,41,32,40,40,40,67,39,32,40,67,
-39,32,40,67,39,32,40,67,39,32,66,41,41,41,41,32,40,40,66,32,
-40,66,32,40,66,32,40,66,32,40,67,39,32,66,41,41,41,41,41,32,
-40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,67,41,
-41,41,41,32,40,40,40,67,39,32,66,41,32,40,66,39,32,40,66,39,
-32,40,40,66,32,40,67,39,32,83,39,41,41,32,40,40,66,32,66,39,
-41,32,40,40,66,32,40,66,32,80,41,41,32,40,95,57,56,55,32,95,
-54,55,51,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,
-32,40,66,32,40,40,83,39,32,95,50,55,48,41,32,95,55,53,53,41,
-41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,40,67,39,32,
-40,83,39,32,95,50,55,48,41,41,32,40,89,32,40,40,66,32,40,40,
-67,39,32,66,41,32,83,41,41,32,40,40,40,83,39,32,40,83,39,32,
-40,83,39,32,67,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,
-67,32,83,39,41,41,41,41,32,40,40,66,32,40,67,32,40,83,39,32,
-66,41,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,67,39,32,
-67,41,41,41,41,41,32,40,40,66,32,40,67,32,40,83,39,32,66,41,
-41,41,32,40,40,66,32,40,66,32,40,66,32,40,40,67,39,32,66,41,
-32,40,40,66,32,95,55,56,53,41,32,40,40,66,32,40,95,55,56,53,
-32,40,95,55,56,55,32,40,95,56,54,49,32,34,115,101,113,34,41,41,
-41,41,32,95,55,56,52,41,41,41,41,41,41,32,40,67,39,32,67,41,
-41,41,41,41,41,41,41,41,41,32,40,40,40,67,39,32,40,83,39,32,
-66,41,41,32,40,40,66,32,66,39,41,32,40,40,66,32,40,66,32,95,
-50,55,48,41,41,32,40,40,66,32,40,66,32,95,55,53,53,41,41,32,
-40,40,66,32,40,40,67,39,32,95,52,49,49,41,32,40,40,66,32,85,
-41,32,40,40,66,32,90,41,32,40,40,67,32,40,67,39,32,79,41,41,
-32,75,41,41,41,41,41,32,40,95,52,50,57,32,40,40,95,49,57,51,
-32,95,50,48,55,41,32,35,48,41,41,41,41,41,41,41,32,40,40,40,
-67,39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,95,55,
-53,54,41,41,32,40,66,32,95,55,56,52,41,41,41,32,40,95,52,49,
-50,32,95,55,56,52,41,41,41,41,41,41,41,32,40,40,66,32,40,95,
-52,49,49,32,40,85,32,40,90,32,40,40,40,67,39,32,79,41,32,40,
-40,66,32,95,57,55,57,41,32,40,40,66,32,40,95,52,56,50,32,34,
-36,120,34,41,41,32,40,95,49,55,49,52,32,95,50,57,55,41,41,41,
-41,32,75,41,41,41,41,41,32,40,95,52,50,57,32,40,40,95,49,57,
-51,32,95,50,48,55,41,32,35,48,41,41,41,41,41,41,32,40,40,40,
-67,39,32,66,41,32,40,40,66,32,95,52,56,50,41,32,40,40,67,32,
-40,40,67,32,95,52,48,57,41,32,40,40,79,32,95,49,50,53,41,32,
-75,41,41,41,32,95,52,56,48,41,41,41,32,40,40,66,32,40,95,52,
-49,50,32,95,53,57,56,41,41,32,40,40,95,49,56,54,32,95,50,55,
-51,41,32,40,95,52,49,50,32,95,53,57,57,41,41,41,41,41,41,41,
-41,32,40,40,95,49,57,51,32,95,50,48,55,41,32,35,48,41,41,41,
-32,73,41,41,32,40,40,66,32,95,57,55,57,41,32,40,40,66,32,40,
-95,52,56,50,32,34,36,102,34,41,41,32,40,95,49,55,49,52,32,95,
-50,57,55,41,41,41,41,41,41,32,40,90,32,40,40,66,32,85,41,32,
-40,90,32,40,90,32,40,40,66,32,90,41,32,40,40,40,67,39,32,40,
-67,39,32,79,41,41,32,40,40,40,67,39,32,40,67,39,32,80,41,41,
-32,40,95,57,56,55,32,95,54,55,51,41,41,32,40,95,55,56,55,32,
-40,95,56,54,49,32,40,40,79,32,35,55,51,41,32,75,41,41,41,41,
-41,32,75,41,41,41,41,41,41,41,41,32,40,75,32,40,75,32,95,52,
-56,48,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,79,41,41,
-32,40,40,40,83,39,32,66,41,32,80,41,32,40,40,66,32,95,55,51,
-52,41,32,40,95,56,56,53,32,95,56,56,55,41,41,41,41,32,75,41,
-41,41,32,40,75,32,40,75,32,95,52,56,48,41,41,41,41,32,40,75,
-32,95,52,56,48,41,41,41,32,40,40,66,32,90,41,32,40,40,40,67,
-39,32,40,67,39,32,79,41,41,32,40,40,66,32,40,67,32,80,41,41,
-32,40,40,66,32,40,95,50,55,48,32,95,55,56,55,41,41,32,95,56,
-54,50,41,41,41,32,75,41,41,41,41,32,40,75,32,40,75,32,95,52,
-56,48,41,41,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,
-66,32,40,66,32,40,67,32,66,41,41,41,32,40,40,66,32,40,66,32,
-40,66,32,90,41,41,41,32,40,40,40,83,39,32,40,67,39,32,66,41,
-41,32,40,40,66,32,40,66,32,67,41,41,32,40,40,40,67,39,32,40,
-83,39,32,40,67,39,32,83,41,41,41,32,40,40,40,67,39,32,40,67,
-39,32,40,67,39,32,40,67,39,32,67,41,41,41,41,32,40,40,40,83,
-39,32,66,41,32,40,40,66,32,40,83,39,32,66,41,41,32,40,40,66,
-32,40,66,32,40,83,39,32,40,83,39,32,95,52,56,49,41,41,41,41,
-32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,66,32,66,
-39,41,32,40,40,66,32,40,66,32,80,41,41,32,40,40,40,67,39,32,
-66,41,32,40,40,66,32,95,50,55,48,41,32,40,95,57,56,55,32,95,
-54,55,51,41,41,41,32,95,49,51,52,52,41,41,41,41,32,40,40,40,
-83,39,32,66,41,32,40,40,66,32,95,50,55,48,41,32,95,55,53,53,
-41,41,32,40,40,66,32,40,40,83,39,32,95,50,55,48,41,32,95,55,
-56,54,41,41,32,40,40,66,32,40,40,67,39,32,95,55,53,54,41,32,
-95,55,56,52,41,41,32,40,95,52,49,50,32,95,55,56,52,41,41,41,
-41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,
-40,67,39,32,40,83,39,32,67,41,41,41,41,41,32,40,40,66,32,40,
-66,32,40,66,32,40,66,32,40,40,67,39,32,40,67,39,32,95,52,51,
-49,41,41,32,40,40,66,32,40,66,32,40,40,67,39,32,66,41,32,80,
-41,41,41,32,40,40,66,32,40,40,83,39,32,66,41,32,40,40,66,32,
-95,50,55,48,41,32,95,55,56,54,41,41,41,32,40,40,66,32,40,40,
-67,39,32,66,41,32,40,40,66,32,95,55,56,53,41,32,95,55,56,52,
-41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,95,50,55,
-48,41,32,95,55,53,53,41,41,32,95,55,56,52,41,41,41,41,41,41,
-41,41,41,32,40,40,66,32,40,66,32,40,66,32,95,52,56,50,41,41,
-41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,67,39,32,95,
-52,49,49,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,
-79,41,41,41,32,40,40,40,67,39,32,66,41,32,40,66,39,32,40,40,
-66,32,95,50,55,48,41,32,40,95,57,56,55,32,95,54,55,51,41,41,
-41,41,32,40,95,49,52,49,53,32,95,54,55,51,41,41,41,32,75,41,
-41,41,32,40,40,66,32,40,40,95,49,57,53,32,95,50,48,55,41,32,
-40,40,95,53,49,53,32,95,50,57,49,41,32,40,95,51,55,51,32,35,
-49,41,41,41,41,32,95,52,50,56,41,41,41,41,41,32,73,41,41,41,
-32,40,95,57,55,57,32,34,36,102,34,41,41,41,32,40,40,66,32,40,
-66,32,40,95,52,49,49,32,40,40,40,67,39,32,79,41,32,40,40,66,
-32,95,57,55,57,41,32,40,40,66,32,40,95,52,56,50,32,34,36,120,
-34,41,41,32,40,95,49,55,49,52,32,95,50,57,55,41,41,41,41,32,
-75,41,41,41,41,32,40,40,66,32,40,66,32,40,40,95,49,57,53,32,
-95,50,48,55,41,32,40,40,95,53,49,53,32,95,50,57,49,41,32,40,
-95,51,55,51,32,35,49,41,41,41,41,41,32,40,40,40,67,39,32,66,
-41,32,40,40,66,32,40,95,53,48,57,32,95,50,57,49,41,41,32,95,
-52,50,56,41,41,32,95,52,50,56,41,41,41,41,41,41,32,40,40,66,
-32,95,52,49,49,41,32,40,40,66,32,40,67,32,40,40,80,32,40,75,
-32,40,75,32,75,41,41,41,32,40,75,32,40,75,32,75,41,41,41,41,
-41,32,40,40,66,32,90,41,32,40,40,40,67,39,32,40,67,39,32,79,
-41,41,32,40,95,57,56,55,32,95,54,55,51,41,41,32,75,41,41,41,
-41,41,41,41,41,41,41,32,40,75,32,40,75,32,40,75,32,40,75,32,
-95,52,56,48,41,41,41,41,41,41,32,40,75,32,95,52,56,48,41,41,
-41,32,40,40,65,32,58,55,51,50,32,40,40,40,67,39,32,95,56,55,
-49,41,32,40,40,40,67,39,32,79,41,32,40,80,32,95,52,56,48,41,
-41,32,75,41,41,32,95,52,56,48,41,41,32,40,40,65,32,58,55,51,
-51,32,40,40,40,67,39,32,67,41,32,40,40,66,32,40,80,32,40,40,
-40,67,39,32,40,67,39,32,79,41,41,32,40,40,40,83,39,32,66,41,
-32,80,41,32,40,40,66,32,95,55,51,52,41,32,40,95,56,56,53,32,
-95,56,56,55,41,41,41,41,32,75,41,41,41,32,40,40,40,83,39,32,
-66,41,32,40,40,66,32,40,67,39,32,95,52,56,49,41,41,32,40,40,
-40,67,39,32,66,41,32,80,41,32,95,55,52,54,41,41,41,32,40,40,
-40,67,39,32,40,83,39,32,95,52,49,49,41,41,32,40,40,40,67,39,
-32,40,67,39,32,40,67,39,32,79,41,41,41,32,40,40,66,32,40,66,
-32,40,83,32,80,41,41,41,32,40,40,66,32,40,66,32,40,66,32,95,
-55,52,54,41,41,41,32,40,40,40,67,39,32,66,41,32,40,66,39,32,
-40,40,66,32,95,56,50,56,41,32,95,56,50,51,41,41,41,32,40,40,
-40,67,39,32,40,67,39,32,79,41,41,32,40,40,40,67,39,32,66,41,
-32,80,41,32,40,40,66,32,40,95,50,55,48,32,95,55,51,50,41,41,
-32,95,56,50,51,41,41,41,32,75,41,41,41,41,41,32,75,41,41,32,
-95,56,55,52,41,41,41,41,32,40,75,32,40,75,32,95,52,56,48,41,
-41,41,41,32,40,40,65,32,58,55,51,52,32,40,40,66,32,40,83,32,
-40,85,32,40,95,49,51,57,57,32,95,54,55,51,41,41,41,41,32,40,
-40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,85,41,41,
-32,40,40,66,32,40,66,32,90,41,41,32,40,40,40,67,39,32,83,41,
-32,40,40,40,67,39,32,40,67,39,32,67,39,41,41,32,40,40,66,32,
-40,66,32,83,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,
-32,40,83,39,32,40,95,52,49,52,32,95,55,56,54,41,41,41,41,41,
-32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,67,39,32,67,41,
-41,32,40,40,67,32,40,40,40,67,39,32,67,39,41,32,40,40,66,32,
-83,39,41,32,95,55,54,52,41,41,32,95,52,56,50,41,41,32,40,95,
-52,49,50,32,95,55,56,52,41,41,41,41,32,40,95,52,49,50,32,40,
-85,32,40,40,66,32,40,67,32,40,40,40,83,39,32,40,83,39,32,67,
-41,41,32,40,40,66,32,40,67,32,80,41,41,32,95,55,51,55,41,41,
-32,40,40,40,67,39,32,66,41,32,40,40,66,32,95,49,50,49,41,32,
-95,55,51,53,41,41,32,40,95,52,50,52,32,95,55,51,54,41,41,41,
-41,41,32,40,95,52,49,50,32,40,95,55,52,57,32,95,54,55,51,41,
-41,41,41,41,41,41,32,73,41,41,41,32,40,40,40,67,39,32,66,41,
-32,40,40,66,32,95,50,55,48,41,32,40,40,66,32,95,52,50,54,41,
-32,95,52,50,56,41,41,41,32,40,95,55,53,55,32,34,36,113,34,41,
-41,41,41,32,40,40,66,32,40,95,50,55,48,32,95,57,48,53,41,41,
-32,40,95,56,54,55,32,40,95,57,55,57,32,75,41,41,41,41,41,41,
-41,41,41,32,40,40,65,32,58,55,51,53,32,40,85,32,40,90,32,40,
-40,80,32,95,49,50,54,41,32,40,40,67,32,66,41,32,40,40,66,32,
-90,41,32,40,40,40,67,39,32,80,41,32,40,40,80,32,95,49,50,53,
-41,32,40,75,32,40,75,32,95,49,50,54,41,41,41,41,32,40,75,32,
-40,75,32,95,49,50,54,41,41,41,41,41,41,41,41,41,32,40,40,65,
-32,58,55,51,54,32,40,40,67,32,40,40,40,67,39,32,83,41,32,40,
-40,40,67,39,32,67,41,32,40,40,40,67,39,32,83,41,32,40,40,40,
-67,39,32,67,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,
-32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,
-41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,
-40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,
-40,67,39,32,83,41,32,40,40,40,67,39,32,67,41,32,40,40,67,32,
-40,40,40,67,39,32,83,39,41,32,40,40,80,32,40,75,32,95,49,50,
-53,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,95,49,50,
-49,41,32,95,55,51,54,41,41,32,95,55,51,54,41,41,41,32,40,90,
-32,75,41,41,41,32,75,41,41,32,40,75,32,40,75,32,95,49,50,54,
-41,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,
-32,75,41,41,32,75,41,41,32,40,90,32,75,41,41,41,32,40,90,32,
-75,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,40,90,32,75,
-41,41,41,41,32,40,90,32,75,41,41,41,32,40,75,32,95,55,51,54,
-41,41,41,32,75,41,41,32,40,75,32,95,49,50,53,41,41,41,32,40,
-90,32,75,41,41,41,32,40,95,49,51,57,57,32,95,54,55,51,41,41,
-41,32,40,40,65,32,58,55,51,55,32,40,85,32,40,40,66,32,40,40,
-67,39,32,95,50,55,50,41,32,95,55,52,48,41,41,32,95,55,51,56,
-41,41,41,32,40,40,65,32,58,55,51,56,32,40,40,67,32,83,41,32,
-40,40,66,32,40,67,32,66,41,41,32,40,40,66,32,40,40,83,39,32,
-40,83,39,32,83,41,41,32,40,40,40,67,39,32,67,41,32,40,40,66,
-32,40,40,67,39,32,67,39,41,32,83,39,41,41,32,40,40,40,67,39,
-32,40,67,39,32,66,41,41,32,40,40,67,32,66,41,32,95,55,52,54,
-41,41,32,40,90,32,75,41,41,41,41,32,40,90,32,75,41,41,41,41,
-32,40,40,66,32,40,66,32,40,40,67,39,32,67,41,32,40,40,40,67,
-39,32,40,67,39,32,83,41,41,32,40,40,66,32,40,66,32,40,40,67,
-39,32,83,41,32,40,67,32,95,55,55,55,41,41,41,41,32,40,40,66,
-32,40,66,32,40,66,32,40,95,50,55,48,32,95,55,52,54,41,41,41,
-41,32,40,40,66,32,67,41,32,40,40,67,39,32,95,55,51,57,41,32,
-95,56,50,51,41,41,41,41,41,32,40,40,66,32,95,55,53,56,41,32,
-95,56,48,50,41,41,41,41,41,32,40,67,32,95,55,51,56,41,41,41,
-41,41,41,32,40,40,65,32,58,55,51,57,32,40,40,66,32,89,41,32,
-40,40,40,83,39,32,40,83,39,32,40,83,39,32,83,41,41,41,32,40,
-40,66,32,40,66,32,40,67,32,40,83,39,32,66,41,41,41,41,32,40,
-40,40,67,39,32,40,67,39,32,40,67,39,32,40,83,39,32,40,67,39,
-32,67,41,41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,
-32,40,83,39,32,66,41,41,32,40,40,66,32,40,66,32,67,41,41,32,
-40,40,66,32,40,66,32,40,67,32,83,39,41,41,41,32,40,40,66,32,
-40,66,32,40,66,32,40,66,32,40,67,32,95,56,50,56,41,41,41,41,
-41,32,40,40,66,32,40,40,67,39,32,40,67,39,32,40,67,39,32,79,
-41,41,41,32,40,40,66,32,40,66,32,40,67,32,80,41,41,41,32,40,
-40,40,67,39,32,40,67,39,32,95,56,55,49,41,41,32,40,40,40,67,
-39,32,40,67,39,32,79,41,41,32,40,67,32,80,41,41,32,75,41,41,
-32,95,52,56,48,41,41,41,41,32,40,40,40,67,39,32,79,41,32,40,
-40,66,32,40,80,32,40,95,56,50,51,32,95,57,57,53,41,41,41,32,
-95,55,51,50,41,41,32,75,41,41,41,41,41,41,41,32,40,40,40,67,
-39,32,40,67,39,32,40,83,39,32,40,67,39,32,67,41,41,41,41,32,
-40,40,40,67,39,32,40,67,39,32,40,83,39,32,40,67,39,32,67,41,
-41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,83,39,32,40,67,
-39,32,67,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,83,
-39,32,40,67,39,32,67,41,41,41,41,32,40,40,40,67,39,32,40,67,
-39,32,40,83,39,32,40,67,39,32,67,41,41,41,41,32,40,40,40,67,
-39,32,40,67,39,32,40,83,39,32,40,67,39,32,67,41,41,41,41,32,
-40,40,40,67,39,32,40,67,39,32,40,83,39,32,40,67,39,32,67,41,
-41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,83,39,32,40,67,
-39,32,67,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,83,
-39,32,40,67,39,32,67,41,41,41,41,32,40,40,40,67,39,32,40,67,
-39,32,40,83,39,32,40,67,39,32,67,41,41,41,41,32,40,40,40,67,
-39,32,40,67,39,32,40,83,39,32,40,67,39,32,67,41,41,41,41,32,
-40,40,40,67,39,32,40,67,39,32,40,83,39,32,40,67,39,32,67,41,
-41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,83,39,32,40,67,
-39,32,67,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,83,
-39,32,40,67,39,32,67,41,41,41,41,32,40,40,40,67,39,32,40,67,
-39,32,40,83,39,32,40,67,39,32,67,41,41,41,41,32,40,40,40,67,
-39,32,40,67,39,32,40,83,39,32,40,67,39,32,67,41,41,41,41,32,
-40,40,40,67,39,32,40,67,39,32,40,83,39,32,40,67,39,32,80,41,
-41,41,41,32,40,40,66,32,40,66,32,40,40,67,39,32,66,41,32,40,
-40,66,32,67,41,32,40,67,32,40,95,57,56,54,32,34,68,97,116,97,
-46,66,111,111,108,46,111,116,104,101,114,119,105,115,101,34,41,41,41,41,
-41,41,32,67,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,
-41,41,32,75,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,
-41,41,32,40,90,32,75,41,41,41,32,75,41,41,32,75,41,41,32,40,
-90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,
-41,41,32,40,90,32,40,90,32,75,41,41,41,41,32,40,90,32,75,41,
-41,41,32,40,90,32,75,41,41,41,32,75,41,41,32,75,41,41,32,40,
-90,32,75,41,41,41,41,32,75,41,41,41,32,40,40,40,67,39,32,40,
-67,39,32,67,41,41,32,40,40,66,32,40,66,32,40,40,67,39,32,67,
-39,41,32,83,41,41,41,32,40,40,40,67,39,32,40,83,39,32,40,83,
-39,32,40,67,39,32,67,41,41,41,41,32,40,40,66,32,40,66,32,40,
-66,32,40,40,67,39,32,40,67,39,32,83,39,41,41,32,40,40,66,32,
-85,41,32,40,90,32,75,41,41,41,41,41,41,32,40,40,67,39,32,40,
-67,39,32,40,67,39,32,67,41,41,41,32,40,40,66,32,40,66,32,40,
-66,32,40,67,32,95,56,51,53,41,41,41,41,32,67,41,41,41,41,32,
-40,40,66,32,40,66,32,40,66,32,40,67,32,95,56,50,57,41,41,41,
-41,32,67,41,41,41,41,32,40,40,40,110,111,77,97,116,99,104,32,34,
-115,114,99,47,77,105,99,114,111,72,115,47,68,101,115,117,103,97,114,46,
-104,115,34,41,32,35,49,50,51,41,32,35,49,41,41,41,41,41,32,40,
-40,65,32,58,55,52,48,32,40,40,83,32,83,41,32,40,40,66,32,90,
-41,32,40,40,66,32,90,41,32,40,40,40,83,39,32,67,41,32,40,40,
-66,32,40,67,32,40,40,40,67,39,32,83,39,41,32,40,40,66,32,89,
-41,32,40,40,40,67,39,32,66,41,32,40,66,39,32,80,41,41,32,40,
-40,40,83,39,32,40,83,39,32,67,41,41,32,40,40,66,32,40,66,32,
-40,67,32,83,39,41,41,41,32,40,40,66,32,40,66,32,40,66,32,85,
-41,41,41,32,40,66,32,40,66,32,40,40,67,39,32,40,67,39,32,95,
-50,55,48,41,41,32,95,55,52,49,41,41,41,41,41,41,32,40,40,40,
-83,39,32,40,83,39,32,40,83,39,32,83,41,41,41,32,40,40,66,32,
-40,66,32,40,66,32,40,67,32,83,41,41,41,41,32,40,40,66,32,40,
-66,32,40,66,32,40,66,32,40,67,32,66,41,41,41,41,41,32,40,40,
-40,67,39,32,40,67,39,32,40,67,39,32,66,41,41,41,32,40,40,66,
-32,40,66,32,40,66,32,67,41,41,41,32,40,40,66,32,40,66,32,40,
-66,32,40,40,67,39,32,67,39,41,32,67,39,41,41,41,41,32,40,66,
-32,40,66,32,40,40,67,39,32,40,67,39,32,95,50,55,48,41,41,32,
-95,55,52,50,41,41,41,41,41,41,32,40,90,32,75,41,41,41,41,41,
-32,40,40,66,32,40,67,39,32,67,41,41,32,40,40,66,32,40,66,32,
-40,40,67,39,32,83,41,32,40,40,67,39,32,95,55,52,51,41,32,40,
-40,80,32,40,40,40,110,111,77,97,116,99,104,32,75,41,32,35,48,41,
-32,35,48,41,41,32,75,41,41,41,41,41,32,40,40,67,32,67,39,41,
-32,40,40,80,32,40,40,40,110,111,77,97,116,99,104,32,75,41,32,35,
-48,41,32,35,48,41,41,32,65,41,41,41,41,41,41,41,41,41,32,40,
-95,55,53,55,32,34,36,109,34,41,41,41,41,32,40,40,66,32,40,66,
-32,40,95,57,53,55,32,40,95,53,50,56,32,95,57,55,53,41,41,41,
-41,32,40,40,66,32,40,66,32,40,95,50,55,48,32,40,95,52,49,50,
-32,40,40,83,32,73,41,32,40,40,40,67,39,32,40,67,39,32,66,41,
-41,32,40,40,66,32,40,66,32,67,41,41,32,80,41,41,32,95,56,48,
-49,41,41,41,41,41,41,32,40,40,66,32,40,66,32,95,55,56,50,41,
-41,32,40,40,66,32,40,66,32,40,95,50,55,48,32,95,52,49,48,41,
-41,41,32,40,40,67,39,32,40,95,52,51,49,32,95,55,51,51,41,41,
-32,40,95,55,53,55,32,34,36,112,34,41,41,41,41,41,41,41,41,32,
-40,95,52,49,49,32,95,57,48,53,41,41,41,41,41,41,32,40,40,65,
-32,58,55,52,49,32,95,55,55,55,41,32,40,40,65,32,58,55,52,50,
-32,40,40,40,83,39,32,66,41,32,95,55,52,49,41,32,40,40,66,32,
-40,66,32,40,95,55,56,53,32,40,95,55,56,55,32,40,95,56,54,49,
-32,40,40,79,32,35,56,57,41,32,75,41,41,41,41,41,41,32,95,55,
-56,54,41,41,41,32,40,40,65,32,58,55,52,51,32,40,40,40,67,39,
-32,66,41,32,40,40,66,32,67,41,32,40,40,40,67,39,32,40,67,39,
-32,83,41,41,32,40,40,40,83,39,32,40,67,39,32,40,67,39,32,66,
-41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,67,39,
-32,40,83,39,32,95,50,55,48,41,41,41,32,40,40,40,67,39,32,66,
-41,32,40,66,39,32,95,55,52,50,41,41,32,40,40,66,32,40,67,32,
-95,50,55,48,41,41,32,40,40,66,32,95,55,52,55,41,32,40,85,32,
-65,41,41,41,41,41,41,32,85,41,41,32,40,40,66,32,40,66,32,40,
-95,50,55,48,32,40,40,95,52,49,52,32,95,50,55,50,41,32,95,50,
-55,51,41,41,41,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,
-39,32,40,67,39,32,95,52,51,49,41,41,32,40,40,66,32,40,66,32,
-40,66,32,40,67,32,95,55,52,49,41,41,41,41,32,40,40,66,32,40,
-40,67,39,32,67,41,32,40,40,66,32,40,67,32,95,55,52,56,41,41,
-32,95,52,50,56,41,41,41,32,95,55,56,52,41,41,41,32,40,40,95,
-49,57,51,32,95,50,48,55,41,32,40,40,95,53,49,53,32,95,50,57,
-49,41,32,40,95,51,55,51,32,35,48,41,41,41,41,41,32,73,41,41,
-41,41,32,40,85,32,75,41,41,41,41,32,95,52,51,51,41,41,32,40,
-40,65,32,58,55,52,52,32,40,40,83,32,40,40,83,32,40,40,40,83,
-39,32,95,49,50,50,41,32,40,40,95,53,50,56,32,95,51,50,48,41,
-32,40,40,95,51,56,54,32,95,50,57,50,41,32,40,95,49,50,56,32,
-95,50,57,51,41,41,41,41,32,40,40,67,32,40,95,53,50,55,32,95,
-51,50,48,41,41,32,40,40,95,51,56,54,32,95,50,57,50,41,32,40,
-95,49,50,57,32,95,50,57,51,41,41,41,41,41,32,40,40,66,32,40,
-95,55,56,53,32,40,95,55,56,52,32,40,95,57,55,57,32,34,68,97,
-116,97,46,73,110,116,101,103,101,114,46,95,105,110,116,76,105,115,116,84,
-111,73,110,116,101,103,101,114,34,41,41,41,41,32,40,40,66,32,95,55,
-57,55,41,32,40,40,66,32,40,95,52,49,50,32,40,40,95,50,55,50,
-32,95,55,56,55,41,32,95,56,53,53,41,41,41,32,95,51,54,55,41,
-41,41,41,41,32,40,40,66,32,40,95,55,56,53,32,40,95,55,56,52,
-32,40,95,57,55,57,32,34,68,97,116,97,46,73,110,116,101,103,101,114,
-95,84,121,112,101,46,95,105,110,116,84,111,73,110,116,101,103,101,114,34,
-41,41,41,41,32,40,40,66,32,95,55,56,55,41,32,40,40,66,32,95,
-56,53,53,41,32,95,51,55,52,41,41,41,41,41,32,40,40,65,32,58,
-55,52,53,32,40,40,40,83,39,32,95,55,56,53,41,32,40,40,66,32,
-40,95,55,56,53,32,40,95,55,56,52,32,40,95,57,55,57,32,34,68,
-97,116,97,46,82,97,116,105,111,95,84,121,112,101,46,95,109,107,82,97,
-116,105,111,110,97,108,34,41,41,41,41,32,40,40,66,32,95,55,52,52,
-41,32,95,53,53,54,41,41,41,32,40,40,66,32,95,55,52,52,41,32,
-95,53,53,55,41,41,41,32,40,40,65,32,58,55,52,54,32,40,40,67,
-32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,67,41,32,40,
-40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,
-67,39,32,83,41,32,40,40,40,67,39,32,67,41,32,40,40,40,67,39,
-32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,
-41,32,40,40,40,83,39,32,83,41,32,40,40,40,67,39,32,67,41,32,
-40,40,40,67,39,32,67,41,32,40,40,40,83,39,32,67,41,32,40,40,
-40,67,39,32,67,41,32,40,40,83,32,40,40,40,67,39,32,67,39,41,
-32,40,40,80,32,95,55,56,52,41,32,40,40,40,67,39,32,66,41,32,
-40,40,66,32,95,55,56,53,41,32,95,55,52,54,41,41,32,95,55,52,
-54,41,41,41,32,40,90,32,75,41,41,41,32,40,40,66,32,95,55,51,
-52,41,32,40,95,56,56,53,32,95,56,56,56,41,41,41,41,32,40,75,
-32,40,40,83,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,
-83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,67,41,
-32,40,40,40,67,39,32,67,41,32,40,40,40,67,39,32,83,41,32,40,
-40,67,32,40,40,67,32,67,39,41,32,75,41,41,32,95,55,52,52,41,
-41,32,75,41,41,32,95,55,52,53,41,41,32,40,40,66,32,95,55,56,
-55,41,32,40,40,66,32,95,56,53,53,41,32,95,49,51,56,41,41,41,
-41,32,75,41,41,32,75,41,41,32,75,41,41,32,95,55,56,55,41,41,
-41,41,32,40,40,66,32,95,55,54,49,41,32,40,95,56,56,53,32,95,
-56,56,56,41,41,41,41,32,40,40,40,67,39,32,66,41,32,95,55,52,
-48,41,32,95,55,52,54,41,41,41,32,40,40,66,32,40,95,50,55,48,
-32,40,95,55,56,54,32,40,95,57,55,57,32,34,36,102,34,41,41,41,
-41,32,40,40,66,32,40,95,50,55,48,32,40,40,95,52,49,54,32,95,
-55,56,53,41,32,40,40,95,50,55,48,32,95,55,56,52,41,32,40,95,
-57,55,57,32,34,36,102,34,41,41,41,41,41,32,40,95,52,49,50,32,
-95,55,52,54,41,41,41,41,41,32,40,40,40,67,39,32,40,83,39,32,
-67,41,41,32,40,40,40,67,39,32,40,83,39,32,67,41,41,32,40,40,
-40,67,39,32,40,83,39,32,67,41,41,32,40,40,40,67,39,32,66,41,
-32,40,40,66,32,67,41,32,40,40,66,32,40,80,32,40,40,66,32,40,
-95,50,55,48,32,95,55,57,55,41,41,32,40,95,52,49,50,32,95,55,
-52,54,41,41,41,41,32,40,40,66,32,40,40,83,39,32,80,41,32,40,
-40,66,32,95,55,52,54,41,32,40,40,66,32,95,56,51,49,41,32,40,
-40,66,32,95,56,52,54,41,32,40,40,67,32,79,41,32,75,41,41,41,
-41,41,41,32,40,40,40,67,39,32,40,83,39,32,40,67,39,32,83,41,
-41,41,32,40,40,40,67,39,32,40,83,39,32,67,41,41,32,40,40,66,
-32,40,66,32,40,67,32,83,39,41,41,41,32,40,40,66,32,40,40,67,
-39,32,40,67,39,32,67,41,41,32,40,40,40,67,39,32,40,67,39,32,
-40,67,39,32,67,39,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
-40,67,39,32,40,95,55,56,57,32,40,95,55,56,52,32,40,95,57,55,
-57,32,34,68,97,116,97,46,76,105,115,116,46,99,111,110,99,97,116,77,
-97,112,34,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,
-32,40,66,32,95,55,52,54,41,41,41,41,32,40,40,66,32,40,66,32,
-40,66,32,40,40,83,39,32,95,56,52,49,41,32,40,40,40,67,39,32,
-79,41,32,95,56,50,51,41,32,75,41,41,41,41,41,32,40,40,66,32,
-40,66,32,40,66,32,40,40,67,39,32,95,56,50,56,41,32,95,56,50,
-51,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,
-79,41,41,41,32,40,40,66,32,40,66,32,40,67,32,80,41,41,41,32,
-40,40,66,32,40,66,32,40,95,50,55,48,32,95,55,51,50,41,41,41,
-32,40,40,66,32,40,66,32,95,56,51,49,41,41,32,95,56,52,55,41,
-41,41,41,32,40,40,79,32,40,40,80,32,40,95,56,50,51,32,95,57,
-57,53,41,41,32,40,40,95,50,55,48,32,95,55,51,50,41,32,40,95,
-56,51,49,32,40,95,56,52,54,32,95,52,56,48,41,41,41,41,41,32,
-75,41,41,41,41,41,41,41,32,95,55,52,54,41,41,41,32,40,40,66,
-32,95,55,53,56,41,32,95,57,49,48,41,41,41,41,32,40,40,66,32,
-40,66,32,40,66,32,95,55,52,54,41,41,41,32,40,40,40,67,39,32,
-40,67,39,32,67,41,41,32,40,40,66,32,40,66,32,40,67,32,95,56,
-51,53,41,41,41,32,40,40,66,32,40,66,32,95,56,51,49,41,41,32,
-95,56,52,55,41,41,41,32,40,95,56,51,49,32,40,95,56,52,54,32,
-95,52,56,48,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,
-32,95,55,52,54,41,41,41,32,40,40,66,32,40,66,32,40,67,32,95,
-56,50,57,41,41,41,32,40,40,66,32,40,66,32,95,56,51,49,41,41,
-32,95,56,52,55,41,41,41,41,41,41,41,41,32,75,41,41,32,40,90,
-32,75,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,40,90,32,
-75,41,41,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,
-41,41,32,40,90,32,75,41,41,41,32,40,40,40,67,39,32,66,41,32,
-40,40,40,67,39,32,67,39,41,32,40,40,66,32,95,55,56,57,41,32,
-95,55,52,54,41,41,32,95,55,52,54,41,41,32,95,55,52,54,41,41,
-41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,75,41,
-41,32,40,40,67,32,40,40,40,83,39,32,95,56,56,50,41,32,40,95,
-56,53,50,32,95,54,55,51,41,41,32,40,40,66,32,95,55,56,52,41,
-32,40,95,56,53,50,32,95,54,55,51,41,41,41,41,32,40,40,66,32,
-40,40,40,83,39,32,40,95,52,49,52,32,95,55,56,54,41,41,32,40,
-40,66,32,40,95,50,55,48,32,95,55,52,55,41,41,32,40,95,52,49,
-50,32,95,55,56,52,41,41,41,32,73,41,41,32,40,40,66,32,40,95,
-52,49,49,32,40,40,40,67,39,32,79,41,32,40,40,66,32,95,57,55,
-57,41,32,40,40,66,32,40,95,52,56,50,32,40,40,79,32,35,49,50,
-48,41,32,75,41,41,41,32,40,95,49,55,49,52,32,95,50,57,55,41,
-41,41,41,32,75,41,41,41,32,40,40,95,49,57,53,32,95,50,48,55,
-41,32,40,40,95,53,49,53,32,95,50,57,49,41,32,40,95,51,55,51,
-32,35,49,41,41,41,41,41,41,41,41,32,40,90,32,75,41,41,41,32,
-40,95,49,51,57,57,32,95,54,55,51,41,41,41,32,40,40,65,32,58,
-55,52,55,32,40,40,95,50,55,50,32,40,95,55,56,54,32,40,95,57,
-55,57,32,34,36,102,34,41,41,41,32,40,40,95,52,49,54,32,95,55,
-56,53,41,32,40,95,55,56,52,32,40,95,57,55,57,32,34,36,102,34,
-41,41,41,41,41,32,40,40,65,32,58,55,52,56,32,40,40,40,67,39,
-32,66,41,32,40,40,66,32,67,41,32,40,40,66,32,40,40,67,39,32,
-66,41,32,95,55,56,53,41,41,32,40,40,40,67,39,32,40,83,39,32,
-40,95,52,49,52,32,95,55,56,54,41,41,41,32,40,40,66,32,40,66,
-32,95,55,56,52,41,41,32,40,67,32,95,52,55,48,41,41,41,32,73,
-41,41,41,41,32,40,40,66,32,40,95,52,49,49,32,40,40,40,67,39,
-32,79,41,32,40,40,66,32,95,57,55,57,41,32,40,40,66,32,40,95,
-52,56,50,32,40,40,79,32,35,49,50,48,41,32,75,41,41,41,32,40,
-95,49,55,49,52,32,95,50,57,55,41,41,41,41,32,75,41,41,41,32,
-40,40,95,49,57,53,32,95,50,48,55,41,32,40,40,95,53,49,53,32,
-95,50,57,49,41,32,40,95,51,55,51,32,35,49,41,41,41,41,41,41,
-32,40,40,65,32,58,55,52,57,32,40,40,66,32,89,41,32,40,40,66,
-32,40,40,67,39,32,67,41,32,40,40,40,67,39,32,40,67,39,32,83,
-41,41,32,40,40,40,67,39,32,40,83,39,32,67,41,41,32,40,40,40,
-67,39,32,40,67,39,32,83,41,41,32,40,40,40,83,39,32,40,67,39,
-32,67,41,41,32,40,40,40,67,39,32,40,67,39,32,83,41,41,32,40,
-40,40,67,39,32,40,67,39,32,83,41,41,32,40,40,40,67,39,32,40,
-67,39,32,83,41,41,32,40,40,40,67,39,32,40,67,39,32,83,41,41,
-32,40,40,40,67,39,32,40,67,39,32,83,41,41,32,40,40,40,83,39,
-32,40,67,39,32,83,41,41,32,40,40,40,83,39,32,40,83,39,32,67,
-41,41,32,40,40,40,67,39,32,40,67,39,32,83,41,41,32,40,40,40,
-67,39,32,40,67,39,32,83,41,41,32,40,40,40,83,39,32,40,83,39,
-32,67,41,41,32,40,40,40,67,39,32,67,41,32,40,40,40,67,39,32,
-40,67,39,32,83,39,41,41,32,40,40,66,32,40,67,32,40,40,83,32,
-73,41,32,75,41,41,41,32,40,40,40,83,39,32,40,67,39,32,66,41,
-41,32,40,66,32,95,56,50,52,41,41,32,73,41,41,41,32,40,90,32,
-75,41,41,41,32,75,41,41,32,40,40,40,67,39,32,40,83,39,32,40,
-67,39,32,67,41,41,41,32,40,40,40,67,39,32,40,83,39,32,40,67,
-39,32,67,41,41,41,32,40,40,66,32,40,40,83,39,32,66,41,32,40,
-40,66,32,67,41,32,40,40,40,83,39,32,67,41,32,40,40,40,83,39,
-32,67,41,32,40,40,40,83,39,32,67,41,32,40,40,40,83,39,32,80,
-41,32,75,41,32,75,41,41,32,75,41,41,32,75,41,41,32,75,41,41,
-41,41,32,40,40,66,32,40,40,67,39,32,66,41,32,40,40,66,32,83,
-41,32,40,67,32,40,40,40,67,39,32,40,95,53,50,55,32,95,50,57,
-54,41,41,32,95,52,50,56,41,32,35,50,41,41,41,41,41,32,40,40,
-40,67,39,32,66,41,32,66,41,32,40,40,66,32,40,66,32,95,56,51,
-49,41,41,32,40,40,66,32,40,66,32,95,56,52,54,41,41,32,40,40,
-66,32,95,52,49,50,41,32,40,40,40,67,39,32,95,50,55,50,41,32,
-95,56,50,55,41,32,95,56,53,57,41,41,41,41,41,41,41,41,32,75,
-41,41,32,75,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,
-41,41,41,32,40,40,40,67,39,32,66,41,32,40,66,39,32,95,50,55,
-48,41,41,32,40,40,40,67,39,32,40,83,39,32,40,95,52,49,54,32,
-95,56,50,52,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,
-32,95,55,53,52,41,32,40,95,56,56,53,32,95,56,56,56,41,41,41,
-32,95,52,50,56,41,41,32,73,41,41,41,41,32,40,40,40,67,39,32,
-40,83,39,32,67,41,41,32,40,40,40,67,39,32,40,83,39,32,67,41,
-41,32,40,40,40,67,39,32,40,83,39,32,67,41,41,32,40,40,40,67,
-39,32,40,83,39,32,67,41,41,32,40,40,40,67,39,32,66,41,32,40,
-40,66,32,80,41,32,40,40,40,67,39,32,66,41,32,95,50,55,48,41,
-32,40,40,95,52,49,52,32,40,40,66,32,95,56,50,52,41,32,40,95,
-56,50,52,32,95,55,53,50,41,41,41,32,95,55,53,51,41,41,41,41,
-32,40,90,32,75,41,41,41,32,75,41,41,32,40,90,32,75,41,41,41,
-32,40,90,32,75,41,41,41,32,40,90,32,40,90,32,75,41,41,41,41,
-41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,40,90,
-32,75,41,41,41,32,40,90,32,40,90,32,75,41,41,41,41,32,40,90,
-32,75,41,41,41,32,40,40,67,39,32,66,41,32,95,56,51,55,41,41,
-41,32,75,41,41,32,75,41,41,32,40,90,32,75,41,41,41,41,32,95,
-49,51,57,57,41,41,41,32,40,40,65,32,58,55,53,48,32,40,40,95,
-50,55,48,32,95,57,55,57,41,32,40,40,95,52,56,50,32,95,49,49,
-57,48,41,32,34,91,93,34,41,41,41,32,40,40,65,32,58,55,53,49,
-32,40,40,95,50,55,48,32,95,57,55,57,41,32,40,40,95,52,56,50,
-32,95,49,49,57,48,41,32,40,40,79,32,35,53,56,41,32,75,41,41,
-41,41,32,40,40,65,32,58,55,53,50,32,40,40,95,50,55,48,32,95,
-56,51,57,41,32,40,40,95,56,52,51,32,40,40,79,32,40,40,80,32,
-95,55,53,48,41,32,40,40,95,53,49,53,32,95,50,57,49,41,32,40,
-95,51,55,51,32,35,48,41,41,41,41,32,40,40,79,32,40,40,80,32,
-95,55,53,49,41,32,40,40,95,53,49,53,32,95,50,57,49,41,32,40,
-95,51,55,51,32,35,50,41,41,41,41,32,75,41,41,41,32,95,55,53,
-49,41,41,41,32,40,40,65,32,58,55,53,51,32,40,40,95,50,55,48,
-32,95,56,51,57,41,32,40,40,95,56,52,51,32,40,40,79,32,40,40,
-80,32,95,55,53,48,41,32,40,40,95,53,49,53,32,95,50,57,49,41,
-32,40,95,51,55,51,32,35,48,41,41,41,41,32,40,40,79,32,40,40,
-80,32,95,55,53,49,41,32,40,40,95,53,49,53,32,95,50,57,49,41,
-32,40,95,51,55,51,32,35,50,41,41,41,41,32,75,41,41,41,32,95,
-55,53,48,41,41,41,32,40,40,65,32,58,55,53,52,32,40,40,66,32,
-40,40,83,39,32,40,66,32,40,95,50,55,48,32,95,56,51,57,41,41,
-41,32,40,40,40,67,39,32,40,83,39,32,95,56,52,51,41,41,32,40,
-40,40,67,39,32,40,67,39,32,79,41,41,32,40,67,32,80,41,41,32,
-75,41,41,32,73,41,41,41,32,95,56,56,49,41,41,32,40,40,65,32,
-58,55,53,53,32,40,67,32,40,95,52,49,52,32,95,55,56,54,41,41,
-41,32,40,40,65,32,58,55,53,54,32,40,95,52,49,54,32,95,55,56,
-53,41,41,32,40,40,65,32,58,55,53,55,32,40,40,66,32,40,95,52,
-54,57,32,40,95,50,49,49,32,95,57,55,52,41,41,41,32,40,40,40,
-67,39,32,95,52,49,49,41,32,40,40,40,67,39,32,40,67,39,32,79,
-41,41,32,40,40,66,32,40,66,32,95,57,55,57,41,41,32,40,40,40,
-67,39,32,66,41,32,95,52,56,50,41,32,40,95,49,55,49,52,32,95,
-50,57,55,41,41,41,41,32,75,41,41,32,40,40,95,49,57,51,32,95,
-50,48,55,41,32,35,49,41,41,41,41,32,40,40,65,32,58,55,53,56,
-32,40,40,95,50,55,50,32,95,52,52,55,41,32,40,95,55,53,55,32,
-34,36,113,34,41,41,41,32,40,40,65,32,58,55,53,57,32,40,40,95,
-50,55,50,32,95,49,55,51,49,41,32,40,95,52,49,50,32,95,55,54,
-48,41,41,41,32,40,40,65,32,58,55,54,48,32,40,85,32,40,40,40,
-67,39,32,66,41,32,40,40,66,32,95,52,56,50,41,32,95,57,56,52,
-41,41,32,40,40,66,32,40,95,52,56,50,32,34,32,61,32,34,41,41,
-32,40,95,49,55,49,52,32,95,55,57,56,41,41,41,41,41,32,40,40,
-65,32,58,55,54,49,32,40,40,40,67,39,32,40,67,39,32,83,41,41,
-32,40,40,67,32,40,40,40,67,39,32,83,39,41,32,40,40,66,32,67,
-39,41,32,95,55,54,52,41,41,32,40,40,66,32,40,66,32,95,57,49,
-48,41,41,32,95,56,50,56,41,41,41,32,40,40,40,67,39,32,79,41,
-32,95,55,52,54,41,32,75,41,41,41,32,40,95,52,49,50,32,40,85,
-32,40,40,66,32,40,67,32,40,40,40,83,39,32,40,83,39,32,67,41,
-41,32,40,40,66,32,40,40,67,39,32,80,41,32,40,40,67,32,79,41,
-32,75,41,41,41,32,95,55,51,55,41,41,32,40,40,40,67,39,32,66,
-41,32,40,40,66,32,95,49,50,49,41,32,95,55,51,53,41,41,32,95,
-55,51,54,41,41,41,41,32,40,95,55,52,57,32,95,54,55,51,41,41,
-41,41,41,41,32,40,40,65,32,58,55,54,50,32,40,40,66,32,40,40,
-95,51,51,32,95,53,57,41,32,95,54,52,41,41,32,40,40,40,83,39,
-32,40,83,39,32,40,95,51,52,32,95,53,57,41,41,41,32,40,40,66,
-32,40,66,32,95,54,51,41,41,32,95,52,50,55,41,41,32,40,40,66,
-32,40,66,32,40,95,51,53,32,95,53,57,41,41,41,32,95,52,50,54,
-41,41,41,41,32,40,40,65,32,58,55,54,51,32,40,40,40,95,51,51,
-32,95,53,57,41,32,95,54,52,41,32,40,40,40,83,39,32,40,95,51,
-52,32,95,53,57,41,41,32,40,40,66,32,95,54,51,41,32,95,52,52,
-56,41,41,32,40,40,66,32,40,95,51,53,32,95,53,57,41,41,32,95,
-52,52,55,41,41,41,41,32,40,40,65,32,58,55,54,52,32,40,40,40,
-67,39,32,66,41,32,40,40,66,32,40,67,39,32,40,67,39,32,95,54,
-49,41,41,41,32,40,40,66,32,67,41,32,40,40,40,67,39,32,40,67,
-39,32,89,41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,
-40,40,66,32,40,66,32,40,83,39,32,80,41,41,41,32,40,40,40,67,
-39,32,67,39,41,32,40,40,66,32,40,95,55,54,54,32,95,54,55,51,
-41,41,32,95,55,54,55,41,41,32,95,52,52,50,41,41,41,32,40,40,
-66,32,40,66,32,40,40,67,39,32,66,41,32,40,40,66,32,95,50,55,
-48,41,32,40,40,66,32,95,55,54,56,41,32,40,95,51,53,32,95,53,
-57,41,41,41,41,41,41,32,40,40,40,67,39,32,66,41,32,67,39,41,
-32,40,67,32,95,52,56,49,41,41,41,41,41,32,95,52,56,48,41,41,
-41,41,32,40,95,55,53,55,32,34,36,120,34,41,41,41,32,40,40,65,
-32,58,55,54,53,32,80,41,32,40,40,65,32,58,55,54,54,32,40,40,
-66,32,89,41,32,40,40,40,67,39,32,40,67,39,32,40,83,39,32,40,
-67,39,32,67,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,
-66,32,40,83,32,95,52,48,57,41,41,41,41,41,32,40,40,66,32,40,
-66,32,40,40,83,39,32,83,41,32,40,40,66,32,40,67,32,83,39,41,
-41,32,40,40,66,32,40,66,32,40,95,50,55,48,32,40,95,51,53,32,
-95,53,57,41,41,41,41,32,40,67,32,40,40,80,32,40,40,40,110,111,
-77,97,116,99,104,32,75,41,32,35,48,41,32,35,48,41,41,32,40,90,
-32,40,85,32,40,75,32,75,41,41,41,41,41,41,41,41,41,41,32,40,
-40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,66,41,41,
-41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,67,39,32,
-67,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,
-32,40,67,39,32,40,67,39,32,40,67,39,32,83,41,41,41,41,41,41,
-32,40,40,66,32,40,40,83,39,32,40,67,39,32,40,67,39,32,66,41,
-41,41,32,40,40,66,32,40,66,32,66,39,41,41,32,40,40,66,32,40,
-66,32,40,66,32,40,83,39,32,66,41,41,41,41,32,40,40,66,32,40,
-66,32,40,66,32,40,66,32,95,50,55,48,41,41,41,41,32,40,40,66,
-32,40,66,32,40,66,32,40,66,32,95,55,54,56,41,41,41,41,32,40,
-40,67,32,40,67,39,32,40,67,39,32,66,41,41,41,32,40,85,32,40,
-75,32,65,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,40,83,
-39,32,40,83,39,32,40,83,39,32,40,67,39,32,66,41,41,41,41,32,
-40,40,66,32,40,66,32,40,66,32,40,66,32,40,67,39,32,95,50,55,
-48,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,
-40,66,32,95,55,54,56,41,41,41,41,41,32,40,40,40,67,39,32,66,
-41,32,40,40,66,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,
-32,67,41,41,32,67,41,41,41,32,40,40,40,67,39,32,66,41,32,40,
-40,66,32,95,52,49,50,41,32,40,40,40,67,39,32,67,41,32,40,40,
-66,32,40,67,32,66,41,41,32,40,40,66,32,40,40,83,39,32,40,67,
-39,32,66,41,41,32,40,40,66,32,66,39,41,32,85,41,41,41,32,40,
-40,40,67,39,32,40,83,39,32,40,67,39,32,40,67,39,32,40,67,39,
-32,67,41,41,41,41,41,32,40,40,40,67,39,32,40,83,39,32,40,67,
-39,32,40,67,39,32,40,67,39,32,67,41,41,41,41,41,32,40,40,40,
-67,39,32,40,83,39,32,40,67,39,32,40,67,39,32,40,67,39,32,67,
-41,41,41,41,41,32,40,40,40,67,39,32,40,83,39,32,40,67,39,32,
-40,67,39,32,40,67,39,32,67,41,41,41,41,41,32,40,40,40,67,39,
-32,40,83,39,32,40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,
-41,41,41,32,40,40,40,67,39,32,40,83,39,32,40,67,39,32,40,67,
-39,32,40,67,39,32,67,41,41,41,41,41,32,40,40,40,67,39,32,40,
-83,39,32,40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,41,41,
-41,32,40,40,40,67,39,32,40,83,39,32,40,67,39,32,40,67,39,32,
-40,67,39,32,67,41,41,41,41,41,32,40,40,40,67,39,32,40,83,39,
-32,40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,41,41,41,32,
-40,40,40,67,39,32,40,83,39,32,40,67,39,32,40,67,39,32,40,67,
-39,32,67,41,41,41,41,41,32,40,40,40,67,39,32,40,83,39,32,40,
-67,39,32,40,67,39,32,40,67,39,32,67,41,41,41,41,41,32,40,40,
-40,67,39,32,40,83,39,32,40,67,39,32,40,67,39,32,40,67,39,32,
-67,41,41,41,41,41,32,40,40,40,67,39,32,40,83,39,32,40,67,39,
-32,40,67,39,32,40,67,39,32,67,41,41,41,41,41,32,40,40,40,67,
-39,32,40,83,39,32,40,67,39,32,40,67,39,32,40,67,39,32,67,41,
-41,41,41,41,32,40,40,40,67,39,32,40,83,39,32,40,67,39,32,40,
-67,39,32,40,67,39,32,67,41,41,41,41,41,32,40,40,40,67,39,32,
-40,83,39,32,40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,41,
-41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,67,39,32,
-40,67,39,32,67,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,
-67,32,67,39,41,41,41,41,32,40,40,66,32,40,66,32,40,67,39,32,
-40,67,39,32,67,41,41,41,41,32,40,40,66,32,40,66,32,40,40,67,
-39,32,66,41,32,80,41,41,41,32,40,40,66,32,40,67,39,32,95,50,
-55,50,41,41,32,40,67,32,95,55,55,54,41,41,41,41,41,41,41,32,
-40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,75,41,41,32,
-40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,
-41,41,41,32,75,41,41,32,75,41,41,32,40,90,32,75,41,41,41,32,
-40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,40,
-90,32,75,41,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,
-41,41,41,32,75,41,41,32,75,41,41,32,40,90,32,75,41,41,41,41,
-41,32,40,40,40,110,111,77,97,116,99,104,32,34,115,114,99,47,77,105,
-99,114,111,72,115,47,68,101,115,117,103,97,114,46,104,115,34,41,32,35,
-51,54,48,41,32,35,50,57,41,41,41,41,32,40,85,32,40,75,32,75,
-41,41,41,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,
-67,39,32,40,67,39,32,67,41,41,41,41,32,40,40,66,32,40,66,32,
-40,66,32,40,66,32,40,40,83,39,32,83,39,41,32,95,52,48,57,41,
-41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,83,39,32,40,
-67,39,32,40,67,39,32,40,83,39,32,40,95,51,51,32,95,53,57,41,
-41,41,41,41,41,41,32,40,40,40,83,39,32,40,67,39,32,40,67,39,
-32,40,67,39,32,66,41,41,41,41,32,40,40,66,32,40,66,32,40,66,
-32,40,66,32,40,67,39,32,40,95,52,52,32,95,53,57,41,41,41,41,
-41,41,32,40,40,40,83,39,32,40,67,39,32,40,67,39,32,40,67,39,
-32,40,67,39,32,40,83,39,32,40,40,83,39,32,40,95,51,51,32,95,
-53,57,41,41,32,40,40,66,32,95,55,54,50,41,32,95,56,53,51,41,
-41,41,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,
-39,32,40,67,39,32,40,67,39,32,40,67,39,32,66,41,41,41,41,41,
-41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
-32,40,83,39,32,40,95,51,51,32,95,53,57,41,41,41,41,41,41,41,
-41,32,40,40,66,32,40,40,67,39,32,66,41,32,40,40,66,32,40,67,
-39,32,40,67,39,32,66,41,41,41,32,40,40,40,67,39,32,66,41,32,
-40,67,39,32,67,39,41,41,32,40,40,67,39,32,95,52,56,50,41,32,
-40,95,52,49,50,32,95,55,56,52,41,41,41,41,41,41,32,40,40,66,
-32,40,66,32,95,52,49,50,41,41,32,40,40,66,32,40,66,32,89,41,
-41,32,40,40,66,32,40,66,32,40,66,32,85,41,41,41,32,40,40,40,
-67,39,32,66,41,32,40,66,39,32,40,40,66,32,40,67,39,32,66,41,
-41,32,40,40,66,32,66,39,41,32,40,40,66,32,85,41,32,95,49,51,
-57,57,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,83,
-39,32,40,83,39,32,40,83,39,32,83,41,41,41,41,41,32,40,40,40,
-67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,
-67,39,32,83,41,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,
-32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,83,41,41,
-41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,
-67,39,32,40,67,39,32,40,67,39,32,83,41,41,41,41,41,41,32,40,
-40,66,32,40,66,32,40,66,32,40,66,32,40,40,67,39,32,66,41,32,
-40,40,66,32,67,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,
-39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,
-83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,
-32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,
-40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,
-67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,67,32,40,
-40,67,32,83,39,41,32,75,41,41,32,40,90,32,75,41,41,41,32,40,
-90,32,75,41,41,41,32,75,41,41,32,40,90,32,75,41,41,41,32,40,
-90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,75,41,41,32,75,
-41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,40,
-90,32,75,41,41,41,32,40,90,32,40,90,32,75,41,41,41,41,32,40,
-90,32,75,41,41,41,41,41,41,41,41,32,40,40,66,32,40,40,67,39,
-32,66,41,32,40,66,39,32,40,66,39,32,40,66,39,32,66,41,41,41,
-41,41,32,40,40,66,32,40,66,32,40,67,39,32,40,67,39,32,40,67,
-39,32,67,41,41,41,41,41,32,40,40,66,32,40,66,32,40,40,67,39,
-32,66,41,32,40,40,66,32,40,67,39,32,80,41,41,32,40,67,32,95,
-52,56,49,41,41,41,41,41,32,40,40,66,32,40,67,39,32,95,50,55,
-50,41,41,32,40,67,32,95,55,55,54,41,41,41,41,41,41,41,32,75,
-41,41,32,75,41,41,32,40,90,32,75,41,41,41,32,40,40,66,32,40,
-67,39,32,40,67,39,32,67,41,41,41,32,40,40,67,39,32,40,67,39,
-32,80,41,41,32,40,40,66,32,95,52,56,50,41,32,95,55,55,57,41,
-41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,
-32,40,95,51,53,32,95,53,57,41,41,41,41,32,40,40,66,32,40,66,
-32,80,41,41,32,95,55,54,53,41,41,41,41,32,40,40,40,67,39,32,
-66,41,32,95,55,55,56,41,32,40,40,67,32,40,40,67,32,83,41,32,
-40,40,66,32,90,41,32,40,40,66,32,85,41,32,40,40,66,32,90,41,
-32,40,40,66,32,90,41,32,40,40,67,32,80,41,32,75,41,41,41,41,
-41,41,41,32,40,40,40,110,111,77,97,116,99,104,32,75,41,32,35,48,
-41,32,35,48,41,41,41,41,41,41,32,40,40,66,32,95,55,56,48,41,
-32,40,40,66,32,40,95,50,55,56,32,40,95,50,49,49,32,95,56,53,
-52,41,41,41,32,40,40,66,32,85,41,32,40,40,66,32,90,41,32,40,
-40,66,32,90,41,32,40,40,40,83,39,32,80,41,32,95,49,51,57,57,
-41,32,40,40,66,32,90,41,32,95,55,55,56,41,41,41,41,41,41,41,
-41,41,32,40,40,66,32,40,66,32,40,66,32,40,95,50,55,48,32,40,
-95,51,53,32,95,53,57,41,41,41,41,41,32,40,40,66,32,67,41,32,
-95,55,55,51,41,41,41,41,41,32,40,95,51,53,32,95,53,57,41,41,
-41,41,41,32,40,85,32,40,90,32,75,41,41,41,41,41,32,95,55,55,
-53,41,41,41,41,32,40,95,51,53,32,95,53,57,41,41,41,41,32,40,
-40,65,32,58,55,54,55,32,40,85,32,40,40,40,67,39,32,40,67,39,
-32,66,41,41,32,40,40,66,32,40,66,32,95,55,56,53,41,41,32,40,
-40,40,67,39,32,66,41,32,40,40,66,32,95,55,56,53,41,32,40,40,
-66,32,40,95,55,56,53,32,40,95,55,56,55,32,40,95,56,54,49,32,
-34,110,111,77,97,116,99,104,34,41,41,41,41,32,40,40,66,32,95,55,
-56,55,41,32,95,56,54,48,41,41,41,41,32,40,40,66,32,95,55,56,
-55,41,32,95,56,53,53,41,41,41,41,32,40,40,66,32,95,55,56,55,
-41,32,95,56,53,53,41,41,41,41,32,40,40,65,32,58,55,54,56,32,
-40,40,40,67,39,32,66,41,32,40,95,51,51,32,95,53,57,41,41,32,
-40,40,40,83,39,32,83,41,32,40,40,66,32,40,83,32,95,55,54,57,
-41,41,32,40,40,66,32,40,66,32,40,40,95,51,51,32,95,53,57,41,
-32,95,55,54,51,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,
-66,32,40,83,39,32,40,95,51,51,32,95,53,57,41,41,41,32,40,40,
-67,32,66,41,32,95,55,56,52,41,41,41,32,40,40,66,32,40,66,32,
-40,66,32,40,95,50,55,48,32,40,95,51,53,32,95,53,57,41,41,41,
-41,41,32,40,67,32,95,55,55,55,41,41,41,41,41,41,32,73,41,41,
-41,32,40,40,65,32,58,55,54,57,32,40,40,67,32,40,40,67,32,40,
-40,80,32,40,75,32,95,49,50,54,41,41,32,40,75,32,40,75,32,95,
-49,50,53,41,41,41,41,32,40,75,32,40,75,32,95,49,50,53,41,41,
-41,41,32,40,75,32,95,49,50,54,41,41,41,32,40,40,65,32,58,55,
-55,48,32,40,95,55,56,55,32,40,95,56,54,49,32,34,61,61,34,41,
-41,41,32,40,40,65,32,58,55,55,49,32,40,95,55,56,55,32,40,95,
-56,54,49,32,34,61,61,34,41,41,41,32,40,40,65,32,58,55,55,50,
-32,40,95,55,56,55,32,40,95,56,54,49,32,34,101,113,117,97,108,34,
-41,41,41,32,40,40,65,32,58,55,55,51,32,40,40,66,32,89,41,32,
-40,40,40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,41,32,40,
-40,66,32,40,66,32,40,83,32,40,83,39,32,66,41,41,41,41,32,40,
-40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,67,32,66,41,
-41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,
-66,32,40,66,32,40,67,32,66,41,41,41,41,41,41,41,32,40,40,40,
-83,39,32,66,41,32,40,40,66,32,40,67,39,32,40,83,39,32,40,67,
-39,32,40,83,39,32,40,83,39,32,67,41,41,41,41,41,41,32,40,40,
-40,83,39,32,40,67,39,32,40,67,39,32,66,41,41,41,32,40,40,66,
-32,40,66,32,66,39,41,41,32,40,40,66,32,40,66,32,66,39,41,41,
-32,40,40,66,32,40,66,32,40,66,32,40,67,39,32,67,39,41,41,41,
-41,32,40,40,66,32,40,66,32,40,66,32,85,41,41,41,32,40,40,66,
-32,40,66,32,40,66,32,90,41,41,41,32,40,40,40,67,39,32,66,41,
-32,40,66,39,32,40,66,39,32,95,55,55,52,41,41,41,32,40,40,40,
-67,39,32,40,67,39,32,40,83,39,32,95,52,49,50,41,41,41,32,40,
-40,40,67,39,32,40,67,39,32,67,41,41,32,40,40,66,32,40,66,32,
-40,40,67,39,32,83,39,41,32,40,40,66,32,83,41,32,40,40,40,67,
-39,32,40,67,39,32,40,83,39,32,80,41,41,41,32,40,40,40,67,39,
-32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,95,55,54,53,
-41,41,32,95,56,52,51,41,41,32,40,85,32,75,41,41,41,32,40,85,
-32,65,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,
-66,32,40,95,50,55,48,32,95,52,52,55,41,41,41,41,41,32,40,40,
-40,67,39,32,66,41,32,40,66,39,32,40,40,66,32,40,67,39,32,95,
-52,56,50,41,41,32,40,40,67,39,32,95,52,49,49,41,32,40,40,66,
-32,85,41,32,40,40,66,32,40,67,32,66,41,41,32,40,40,40,67,39,
-32,40,67,39,32,40,67,39,32,67,41,41,41,32,40,40,40,67,39,32,
-40,67,39,32,67,41,41,32,40,40,66,32,40,66,32,40,67,32,67,39,
-41,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,40,67,39,
-32,66,41,32,40,66,39,32,40,40,66,32,67,41,32,40,40,40,67,39,
-32,67,41,32,40,95,50,49,49,32,95,57,55,52,41,41,32,75,41,41,
-41,41,32,40,40,40,67,39,32,40,67,39,32,79,41,41,32,40,67,32,
-80,41,41,32,75,41,41,41,41,41,32,40,75,32,75,41,41,41,32,40,
-75,32,40,75,32,75,41,41,41,41,41,41,41,41,41,32,40,40,40,67,
-39,32,40,67,39,32,79,41,41,32,40,40,67,39,32,80,41,32,40,40,
-40,67,39,32,95,52,54,53,41,32,40,85,32,65,41,41,32,95,57,57,
-53,41,41,41,32,75,41,41,41,41,41,32,40,85,32,75,41,41,41,32,
-73,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
-40,66,32,90,41,41,41,41,32,40,40,66,32,40,40,83,39,32,66,41,
-32,40,66,39,32,80,41,41,41,32,40,40,40,67,39,32,40,83,39,32,
-40,67,39,32,40,67,39,32,40,67,39,32,80,41,41,41,41,41,32,40,
-40,40,67,39,32,66,41,32,40,40,66,32,67,41,32,40,40,66,32,40,
-40,67,39,32,67,39,41,32,67,39,41,41,32,40,40,66,32,67,41,32,
-40,67,32,95,55,55,55,41,41,41,41,41,32,40,90,32,75,41,41,41,
-32,40,90,32,75,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,
-40,66,32,40,66,32,90,41,41,41,41,32,40,40,66,32,40,66,32,40,
-66,32,40,66,32,67,41,41,41,41,32,40,40,40,67,39,32,66,41,32,
-40,66,39,32,40,66,39,32,40,40,66,32,40,67,39,32,95,55,56,57,
-41,41,32,40,40,40,67,39,32,67,41,32,40,40,40,67,39,32,40,67,
-39,32,83,41,41,32,40,40,40,67,39,32,40,67,39,32,83,41,41,32,
-40,40,40,83,39,32,40,83,39,32,67,41,41,32,40,40,40,83,39,32,
-40,67,39,32,67,41,41,32,40,40,40,67,39,32,40,67,39,32,83,41,
-41,32,40,40,40,67,39,32,67,41,32,40,40,40,67,39,32,40,67,39,
-32,83,39,41,41,32,40,40,66,32,40,83,32,73,41,41,32,40,40,66,
-32,90,41,32,40,40,40,67,39,32,66,41,32,40,95,55,56,57,32,95,
-55,55,48,41,41,32,95,55,56,55,41,41,41,41,32,75,41,41,32,75,
-41,41,32,75,41,41,32,40,40,40,67,39,32,66,41,32,40,95,55,56,
-57,32,95,55,55,49,41,41,32,40,40,66,32,95,55,56,55,41,32,40,
-40,66,32,95,56,53,53,41,32,95,49,51,56,41,41,41,41,41,32,40,
-40,66,32,90,41,32,40,40,40,67,39,32,66,41,32,40,95,55,56,57,
-32,95,55,55,50,41,41,32,95,55,56,55,41,41,41,41,32,75,41,41,
-32,75,41,41,32,40,95,49,51,57,57,32,95,54,55,51,41,41,41,41,
-41,41,32,67,41,41,41,41,41,41,41,41,32,40,95,49,51,57,57,32,
-95,54,55,51,41,41,41,41,32,40,40,65,32,58,55,55,52,32,40,40,
-40,67,39,32,66,41,32,95,55,53,54,41,32,40,95,52,49,49,32,40,
-85,32,40,40,67,32,66,41,32,40,90,32,40,40,40,67,39,32,40,67,
-39,32,79,41,41,32,40,67,32,95,55,53,53,41,41,32,75,41,41,41,
-41,41,41,41,32,40,40,65,32,58,55,55,53,32,40,40,66,32,40,40,
-83,32,40,40,40,67,39,32,40,83,39,32,67,41,41,32,40,40,40,67,
-39,32,66,41,32,40,40,66,32,80,41,32,40,85,32,75,41,41,41,32,
-40,85,32,75,41,41,41,32,40,85,32,65,41,41,41,32,40,40,66,32,
-40,40,89,32,40,40,66,32,40,40,83,39,32,83,41,32,40,40,66,32,
-85,41,32,40,40,40,67,39,32,80,41,32,95,52,52,50,41,32,95,52,
-56,48,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,83,32,
-66,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,
-66,32,90,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,
-66,32,40,66,32,40,40,67,39,32,66,41,32,40,85,32,40,95,49,51,
-57,57,32,95,54,55,51,41,41,41,41,41,41,41,41,32,40,40,66,32,
-40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,90,41,41,41,41,
-41,41,32,40,40,40,67,39,32,40,83,39,32,66,41,41,32,40,40,66,
-32,40,66,32,40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,41,
-41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
-40,67,39,32,95,49,50,51,41,32,95,56,55,50,41,41,41,41,41,41,
-32,40,40,40,67,39,32,40,83,39,32,40,83,39,32,40,83,39,32,80,
-41,41,41,41,32,40,40,40,67,39,32,66,41,32,66,41,32,40,67,32,
-95,52,56,49,41,41,41,32,40,40,66,32,40,66,32,80,41,41,32,40,
-40,66,32,40,66,32,95,52,52,50,41,41,32,40,67,32,95,52,56,49,
-41,41,41,41,41,41,41,32,40,40,66,32,80,41,32,95,52,52,50,41,
-41,41,41,41,41,41,41,32,95,52,56,48,41,41,32,40,85,32,65,41,
-41,41,41,32,40,95,52,52,53,32,40,85,32,40,90,32,40,90,32,40,
-40,80,32,40,95,49,51,57,57,32,95,54,55,51,41,41,32,40,90,32,
-40,40,66,32,95,49,50,51,41,32,95,56,55,50,41,41,41,41,41,41,
-41,41,41,32,40,40,65,32,58,55,55,54,32,40,40,67,32,40,40,40,
-83,39,32,67,39,41,32,40,40,66,32,83,39,41,32,40,40,67,32,40,
-95,50,49,49,32,95,57,55,52,41,41,32,95,57,57,53,41,41,41,32,
-95,56,48,48,41,41,32,73,41,41,32,40,40,65,32,58,55,55,55,32,
-40,40,67,32,40,40,40,83,39,32,67,39,41,32,40,40,66,32,83,39,
-41,32,40,40,67,32,40,95,50,49,49,32,95,57,55,52,41,41,32,95,
-57,57,53,41,41,41,32,40,40,40,83,39,32,40,83,39,32,83,41,41,
-32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,83,41,41,41,32,
-40,40,40,67,39,32,40,67,39,32,40,67,39,32,83,41,41,41,32,40,
-40,40,67,39,32,40,67,39,32,67,41,41,32,40,40,66,32,40,66,32,
-40,67,32,83,39,41,41,41,32,40,40,66,32,40,67,39,32,67,41,41,
-32,40,40,66,32,67,41,32,40,95,50,49,49,32,95,57,55,52,41,41,
-41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,
-75,41,41,32,40,40,40,83,39,32,66,41,32,40,40,66,32,83,41,32,
-40,40,67,32,40,40,40,67,39,32,83,39,41,32,40,40,66,32,95,52,
-49,51,41,32,40,67,32,40,95,50,49,49,32,95,57,55,52,41,41,41,
-41,32,95,56,48,49,41,41,32,73,41,41,41,32,40,40,66,32,40,66,
-32,90,41,41,32,40,40,40,83,39,32,40,83,39,32,40,83,39,32,80,
-41,41,41,32,95,56,48,48,41,32,40,40,66,32,40,66,32,90,41,41,
-32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,67,39,32,
-95,55,56,53,41,41,32,95,55,56,54,41,41,41,41,41,41,41,41,41,
-32,73,41,41,32,40,40,65,32,58,55,55,56,32,40,40,66,32,89,41,
-32,40,40,66,32,40,40,67,39,32,83,41,32,40,40,40,67,39,32,40,
-67,39,32,83,41,41,32,40,40,40,67,39,32,40,67,39,32,67,41,41,
-32,40,40,40,67,39,32,40,67,39,32,83,41,41,32,40,40,40,83,39,
-32,40,67,39,32,67,41,41,32,40,40,40,67,39,32,40,67,39,32,83,
-41,41,32,40,40,40,67,39,32,40,67,39,32,83,41,41,32,40,40,40,
-67,39,32,40,67,39,32,83,41,41,32,40,40,40,67,39,32,40,67,39,
-32,83,41,41,32,40,40,40,67,39,32,40,67,39,32,83,41,41,32,40,
-40,40,67,39,32,40,67,39,32,83,41,41,32,40,40,40,67,39,32,40,
-67,39,32,83,41,41,32,40,40,40,67,39,32,40,67,39,32,83,41,41,
-32,40,40,40,67,39,32,40,67,39,32,83,41,41,32,40,40,40,67,39,
-32,40,67,39,32,67,41,41,32,40,40,40,67,39,32,67,41,32,40,40,
-40,67,39,32,40,67,39,32,83,39,41,41,32,40,40,66,32,40,80,32,
-40,75,32,95,50,54,41,41,41,32,90,41,41,32,40,90,32,75,41,41,
-41,32,75,41,41,32,95,56,52,53,41,41,32,40,90,32,75,41,41,41,
-32,40,90,32,75,41,41,41,32,75,41,41,32,75,41,41,32,40,90,32,
-75,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,
-32,40,90,32,40,90,32,75,41,41,41,41,32,40,90,32,75,41,41,41,
-32,75,41,41,32,75,41,41,32,73,41,41,32,40,90,32,75,41,41,41,
-41,32,40,40,67,32,95,49,52,48,48,41,32,40,40,80,32,95,57,49,
-56,41,32,95,56,56,56,41,41,41,41,41,32,40,40,65,32,58,55,55,
-57,32,40,40,67,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,
-32,67,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,
-41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,
-40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,
-40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,
-39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,
-83,41,32,40,40,40,67,39,32,67,41,32,40,40,40,67,39,32,83,41,
-32,40,40,40,67,39,32,83,41,32,40,40,67,32,40,40,67,32,67,39,
-41,32,75,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,95,
-52,56,50,41,32,95,55,55,57,41,41,32,40,40,67,32,79,41,32,75,
-41,41,41,41,32,40,90,32,75,41,41,41,32,75,41,41,32,40,75,32,
-40,75,32,95,52,56,48,41,41,41,41,32,40,90,32,75,41,41,41,32,
-40,90,32,75,41,41,41,32,75,41,41,32,75,41,41,32,40,90,32,75,
-41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,
-40,90,32,40,90,32,75,41,41,41,41,32,40,90,32,75,41,41,41,32,
-40,90,32,75,41,41,41,32,75,41,41,32,40,75,32,95,52,56,48,41,
-41,41,32,40,90,32,75,41,41,41,32,40,95,49,51,57,57,32,95,54,
-55,51,41,41,41,32,40,40,65,32,58,55,56,48,32,40,40,66,32,89,
-41,32,40,40,66,32,40,66,32,40,80,32,95,52,56,48,41,41,41,32,
-40,40,40,67,39,32,66,41,32,40,40,66,32,40,83,39,32,67,41,41,
-32,40,66,32,95,52,55,49,41,41,41,32,40,40,67,39,32,40,67,39,
-32,66,41,41,32,40,40,66,32,40,66,32,95,52,56,49,41,41,32,95,
-52,56,49,41,41,41,41,41,41,32,40,40,65,32,58,55,56,49,32,40,
-40,66,32,40,95,50,55,50,32,40,95,52,49,51,32,40,40,95,50,55,
-50,32,40,40,67,32,40,95,53,50,57,32,95,50,57,54,41,41,32,40,
-40,95,53,49,53,32,95,50,57,49,41,32,40,95,51,55,51,32,35,49,
-41,41,41,41,32,95,52,50,56,41,41,41,41,32,95,55,56,48,41,41,
-32,40,40,65,32,58,55,56,50,32,40,40,67,32,40,40,40,67,39,32,
-66,41,32,40,40,40,83,39,32,40,95,55,56,49,32,40,95,50,49,49,
-32,95,57,55,52,41,41,41,32,40,40,66,32,40,95,50,55,48,32,40,
-95,52,49,51,32,40,40,67,32,40,95,50,49,50,32,95,57,55,52,41,
-41,32,95,57,57,53,41,41,41,41,32,40,95,52,49,50,32,95,53,57,
-56,41,41,41,32,73,41,41,32,40,40,66,32,90,41,32,40,40,83,32,
-80,41,32,40,40,40,67,39,32,66,41,32,80,41,32,40,90,32,40,90,
-32,40,40,40,83,39,32,95,50,55,48,41,32,40,40,66,32,40,95,57,
-49,54,32,95,54,55,51,41,41,32,40,95,56,56,53,32,95,56,56,55,
-41,41,41,32,40,40,66,32,40,95,52,56,50,32,34,100,117,112,108,105,
-99,97,116,101,32,100,101,102,105,110,105,116,105,111,110,32,34,41,41,32,
-95,57,56,52,41,41,41,41,41,41,41,41,41,32,40,95,50,53,32,34,
-99,104,101,99,107,68,117,112,34,41,41,41,32,40,40,65,32,58,55,56,
-51,32,40,40,83,32,73,41,32,40,40,40,83,39,32,40,67,39,32,67,
-41,41,32,40,40,40,83,39,32,66,41,32,40,40,66,32,67,41,32,40,
-40,40,83,39,32,80,41,32,75,41,32,40,90,32,75,41,41,41,41,32,
-40,40,40,83,39,32,40,67,39,32,40,67,39,32,67,41,41,41,32,40,
-40,40,83,39,32,66,41,32,40,66,39,32,40,40,66,32,67,41,32,40,
-40,40,83,39,32,80,41,32,75,41,32,40,90,32,75,41,41,41,41,41,
-32,40,40,40,67,39,32,40,83,39,32,40,67,39,32,40,67,39,32,67,
-41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,
-67,39,32,67,41,41,41,41,32,40,40,66,32,40,40,83,39,32,40,83,
-39,32,66,41,41,32,40,40,66,32,40,66,32,40,67,39,32,83,39,41,
-41,41,32,40,40,66,32,40,66,32,40,66,32,83,41,41,41,32,40,40,
-40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,95,54,48,41,
-41,41,41,32,40,40,66,32,40,66,32,40,67,39,32,89,41,41,41,32,
-40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,83,41,
-41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,83,
-39,32,67,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,
-32,40,67,32,40,40,83,32,73,41,32,40,90,32,40,95,51,53,32,95,
-53,57,41,41,41,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,
-32,40,67,39,32,66,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
-40,83,39,32,83,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,
-40,67,39,32,40,67,39,32,40,67,39,32,83,41,41,41,41,41,32,40,
-40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,
-32,83,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,
-39,32,67,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,40,67,
-39,32,67,39,41,32,83,39,41,41,41,41,32,40,40,40,67,39,32,40,
-67,39,32,40,67,39,32,40,67,39,32,40,83,39,32,67,41,41,41,41,
-41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,
-40,83,39,32,67,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,
-32,40,67,39,32,67,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
-40,40,67,39,32,83,39,41,32,67,39,41,41,41,41,32,40,40,40,67,
-39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,40,67,39,
-32,40,67,39,32,67,41,41,41,41,32,40,40,66,32,40,66,32,67,41,
-41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,67,39,32,67,
-39,41,41,32,40,40,66,32,40,66,32,95,49,50,50,41,41,32,40,67,
-32,40,95,50,49,49,32,95,57,55,52,41,41,41,41,41,32,40,67,32,
-40,95,50,49,49,32,95,57,55,52,41,41,41,41,41,41,32,40,40,66,
-32,40,40,95,51,52,32,95,53,57,41,32,40,95,54,51,32,95,49,50,
-54,41,41,41,32,40,95,51,53,32,95,53,57,41,41,41,41,41,32,40,
-90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,75,41,41,41,32,
-40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,75,41,41,41,
-32,40,40,40,83,39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,
-66,32,40,95,49,53,32,95,53,56,41,41,41,32,40,66,32,40,40,95,
-50,56,53,32,95,53,55,41,32,95,55,56,53,41,41,41,41,32,73,41,
-41,41,41,32,40,40,67,39,32,66,41,32,40,40,66,32,40,95,50,56,
-53,32,95,53,55,41,41,32,95,55,56,54,41,41,41,41,32,40,90,32,
-40,95,51,53,32,95,53,57,41,41,41,41,41,32,95,49,50,53,41,41,
-41,41,41,32,40,40,40,67,39,32,66,41,32,40,66,39,32,40,66,39,
-32,40,66,39,32,40,66,39,32,40,66,39,32,80,41,41,41,41,41,41,
-32,40,40,40,67,39,32,66,41,32,40,66,39,32,40,66,39,32,40,66,
-39,32,40,66,39,32,80,41,41,41,41,41,32,40,40,40,67,39,32,66,
-41,32,40,66,39,32,40,66,39,32,40,66,39,32,40,40,66,32,95,50,
-55,48,41,32,95,55,56,54,41,41,41,41,41,32,40,40,66,32,40,40,
-67,39,32,67,39,41,32,95,55,52,50,41,41,32,95,55,56,54,41,41,
-41,41,41,41,32,95,55,56,52,41,41,32,40,40,67,32,95,57,56,56,
-41,32,40,40,79,32,35,54,52,41,32,75,41,41,41,41,41,32,75,41,
-41,41,32,75,41,41,41,32,40,40,65,32,58,55,56,52,32,40,40,66,
-32,90,41,32,40,40,66,32,90,41,32,40,40,66,32,90,41,32,85,41,
-41,41,41,32,40,40,65,32,58,55,56,53,32,40,40,66,32,90,41,32,
-40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,90,41,
-41,32,80,41,41,41,41,32,40,40,65,32,58,55,56,54,32,40,40,66,
-32,90,41,32,40,40,66,32,90,41,32,40,40,66,32,40,66,32,90,41,
-41,32,80,41,41,41,41,32,40,40,65,32,58,55,56,55,32,40,90,32,
-40,90,32,40,90,32,85,41,41,41,41,32,40,40,65,32,58,55,56,56,
-32,40,40,95,50,49,48,32,40,40,40,67,39,32,83,41,32,40,40,40,
-67,39,32,83,41,32,40,40,67,32,40,40,67,32,83,39,41,32,40,40,
-40,67,39,32,67,41,32,40,40,40,67,39,32,67,41,32,40,40,67,32,
-40,40,67,32,67,39,41,32,40,95,50,49,49,32,95,57,55,52,41,41,
-41,32,40,75,32,40,75,32,95,49,50,53,41,41,41,41,32,40,75,32,
-40,75,32,95,49,50,53,41,41,41,41,32,40,75,32,95,49,50,53,41,
-41,41,41,32,40,40,40,67,39,32,40,67,39,32,67,41,41,32,40,40,
-67,32,40,40,40,67,39,32,67,39,41,32,40,40,66,32,67,39,41,32,
-40,85,32,40,75,32,95,49,50,53,41,41,41,41,32,40,40,40,67,39,
-32,66,41,32,40,40,66,32,40,67,39,32,66,41,41,32,40,40,66,32,
-40,66,32,95,49,50,50,41,41,32,40,95,50,49,49,32,95,55,56,56,
-41,41,41,41,32,40,95,50,49,49,32,95,55,56,56,41,41,41,41,32,
-40,75,32,40,75,32,95,49,50,53,41,41,41,41,32,40,75,32,95,49,
-50,53,41,41,41,41,32,40,40,67,32,40,40,40,67,39,32,67,39,41,
-32,40,40,66,32,67,39,41,32,40,40,80,32,40,75,32,95,49,50,53,
-41,41,32,40,75,32,40,75,32,95,49,50,53,41,41,41,41,41,32,40,
-40,40,67,39,32,66,41,32,40,40,66,32,40,67,39,32,66,41,41,32,
-40,40,66,32,40,66,32,95,49,50,50,41,41,32,40,95,50,49,49,32,
-95,57,55,52,41,41,41,41,32,40,95,50,49,49,32,95,55,56,56,41,
-41,41,41,32,40,75,32,95,49,50,53,41,41,41,41,32,40,40,40,67,
-39,32,66,41,32,40,40,67,32,40,40,80,32,40,75,32,95,49,50,53,
-41,41,32,40,75,32,40,75,32,95,49,50,53,41,41,41,41,32,40,75,
-32,40,75,32,95,49,50,53,41,41,41,41,32,40,95,50,49,49,32,95,
-56,54,51,41,41,41,41,32,40,95,50,49,52,32,95,55,56,56,41,41,
-41,32,40,40,65,32,58,55,56,57,32,40,40,66,32,40,66,32,95,55,
-56,53,41,41,32,95,55,56,53,41,41,32,40,40,65,32,58,55,57,48,
-32,40,40,66,32,40,66,32,40,66,32,95,55,56,53,41,41,41,32,95,
-55,56,57,41,41,32,40,40,65,32,58,55,57,49,32,40,95,55,56,55,
-32,40,95,56,54,49,32,40,40,79,32,35,55,57,41,32,75,41,41,41,
-41,32,40,40,65,32,58,55,57,50,32,40,95,55,56,55,32,40,95,56,
-54,49,32,40,40,79,32,35,55,53,41,32,75,41,41,41,41,32,40,40,
-65,32,58,55,57,51,32,40,95,55,56,55,32,40,95,56,54,49,32,40,
-40,79,32,35,54,55,41,32,75,41,41,41,41,32,40,40,65,32,58,55,
-57,52,32,40,40,67,32,40,40,67,32,40,40,80,32,40,40,66,32,95,
-52,56,50,41,32,95,57,56,52,41,41,32,40,40,66,32,40,66,32,40,
-95,50,55,50,32,40,95,52,56,50,32,40,40,79,32,35,52,48,41,32,
-75,41,41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,
-95,50,55,50,41,32,95,55,57,52,41,41,32,40,40,66,32,40,95,50,
-55,50,32,40,95,52,56,50,32,40,40,79,32,35,51,50,41,32,75,41,
-41,41,41,32,40,40,40,67,39,32,95,50,55,50,41,32,95,55,57,52,
-41,32,40,95,52,56,50,32,40,40,79,32,35,52,49,41,32,75,41,41,
-41,41,41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,
-95,50,55,50,41,32,40,40,66,32,95,52,56,50,41,32,40,40,66,32,
-40,95,52,56,50,32,34,40,92,57,50,38,34,41,41,32,40,40,40,67,
-39,32,95,52,56,50,41,32,95,57,56,52,41,32,40,40,79,32,35,51,
-50,41,32,75,41,41,41,41,41,41,32,40,40,40,67,39,32,95,50,55,
-50,41,32,95,55,57,52,41,32,40,95,52,56,50,32,40,40,79,32,35,
-52,49,41,32,75,41,41,41,41,41,41,32,40,40,83,32,40,40,40,67,
-39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,
-67,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,67,41,
-32,40,40,40,67,39,32,83,41,32,40,40,67,32,40,40,67,32,67,39,
-41,32,75,41,41,32,40,75,32,95,50,54,41,41,41,32,75,41,41,32,
-40,75,32,95,50,54,41,41,41,32,75,41,41,32,40,40,83,32,40,40,
-83,32,40,40,40,67,39,32,40,95,53,50,57,32,95,50,57,54,41,41,
-32,95,52,50,56,41,32,35,49,41,41,32,40,40,66,32,95,55,57,52,
-41,32,95,55,57,54,41,41,41,32,40,40,66,32,95,52,56,50,41,32,
-95,55,57,53,41,41,41,41,32,75,41,41,32,75,41,41,32,40,40,66,
-32,95,52,56,50,41,32,95,57,52,52,41,41,41,41,32,40,40,65,32,
-58,55,57,53,32,40,40,66,32,40,95,52,56,49,32,35,51,52,41,41,
-32,40,40,40,67,39,32,95,52,56,50,41,32,40,95,52,49,49,32,40,
-40,83,32,40,40,83,32,40,40,40,83,39,32,95,49,50,49,41,32,40,
-40,67,32,40,95,50,49,49,32,95,49,51,50,41,41,32,35,51,52,41,
-41,32,40,40,40,83,39,32,95,49,50,49,41,32,40,40,67,32,40,95,
-50,49,49,32,95,49,51,50,41,41,32,35,57,50,41,41,32,40,40,40,
-83,39,32,95,49,50,49,41,32,40,40,67,32,40,95,53,50,55,32,95,
-49,51,51,41,41,32,35,51,50,41,41,32,40,40,67,32,40,95,53,50,
-57,32,95,49,51,51,41,41,32,35,49,50,54,41,41,41,41,41,32,40,
-40,67,32,79,41,32,75,41,41,41,32,40,40,66,32,40,95,52,56,49,
-32,35,57,50,41,41,32,40,40,40,67,39,32,95,52,56,50,41,32,40,
-40,66,32,40,95,49,55,49,52,32,95,50,57,55,41,41,32,95,49,51,
-56,41,41,32,40,40,79,32,35,51,56,41,32,75,41,41,41,41,41,41,
-32,40,40,79,32,35,51,52,41,32,75,41,41,41,41,32,40,40,65,32,
-58,55,57,54,32,40,40,95,50,55,50,32,95,55,57,55,41,32,40,95,
-52,49,50,32,40,40,95,50,55,50,32,95,55,56,55,41,32,40,40,95,
-50,55,50,32,95,56,53,53,41,32,95,49,51,56,41,41,41,41,41,32,
-40,40,65,32,58,55,57,55,32,40,40,95,52,49,52,32,40,95,55,56,
-57,32,95,55,57,49,41,41,32,95,55,57,50,41,41,32,40,40,65,32,
-58,55,57,56,32,40,40,40,95,49,55,49,50,32,40,95,49,55,49,54,
-32,95,55,57,56,41,41,32,40,40,95,50,55,50,32,95,49,55,48,52,
-41,32,95,55,57,57,41,41,32,40,95,49,55,49,56,32,95,55,57,56,
-41,41,41,32,40,40,65,32,58,55,57,57,32,40,40,67,32,40,40,67,
-32,40,40,80,32,95,57,56,53,41,32,40,40,66,32,40,66,32,40,95,
-50,55,48,32,95,49,54,54,57,41,41,41,32,40,40,40,67,39,32,66,
-41,32,40,40,66,32,95,49,54,57,48,41,32,95,55,57,57,41,41,32,
-95,55,57,57,41,41,41,41,32,40,40,66,32,40,66,32,40,95,50,55,
-48,32,95,49,54,54,57,41,41,41,32,40,40,40,67,39,32,66,41,32,
-40,40,66,32,95,49,54,57,48,41,32,40,40,40,67,39,32,95,49,54,
-56,57,41,32,40,40,66,32,40,95,49,54,56,57,32,40,95,49,54,53,
-57,32,40,40,79,32,35,57,50,41,32,75,41,41,41,41,32,95,57,56,
-53,41,41,32,40,95,49,54,53,57,32,40,40,79,32,35,52,54,41,32,
-75,41,41,41,41,41,32,95,55,57,57,41,41,41,41,32,40,40,66,32,
-95,49,54,53,57,41,32,95,57,52,52,41,41,41,32,40,40,65,32,58,
-56,48,48,32,40,40,66,32,89,41,32,40,40,40,67,39,32,40,67,39,
-32,40,67,39,32,83,41,41,41,32,40,40,40,83,39,32,40,83,39,32,
-40,83,39,32,83,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,
-66,32,40,83,39,32,67,41,41,32,40,40,66,32,40,66,32,40,83,32,
-73,41,41,41,32,40,40,66,32,40,67,39,32,67,41,41,32,40,40,66,
-32,67,41,32,40,67,32,40,95,50,49,49,32,95,57,55,52,41,41,41,
-41,41,41,41,32,40,40,40,83,39,32,40,83,39,32,40,67,39,32,66,
-41,41,41,32,40,66,32,40,66,32,95,55,56,53,41,41,41,32,73,41,
-41,41,32,40,40,66,32,40,66,32,40,66,32,67,41,41,41,32,40,40,
-40,67,39,32,66,41,32,40,66,39,32,40,40,66,32,40,83,39,32,67,
-39,41,41,32,40,95,50,49,49,32,95,57,55,52,41,41,41,41,32,40,
-40,40,83,39,32,40,83,39,32,83,41,41,32,40,40,66,32,40,40,83,
-39,32,40,83,39,32,83,39,41,41,32,40,40,66,32,40,67,32,40,95,
-52,53,49,32,95,57,55,52,41,41,41,32,95,56,48,49,41,41,41,32,
-40,66,32,40,40,67,39,32,66,41,32,95,55,56,54,41,41,41,41,32,
-40,40,40,67,39,32,40,83,39,32,40,67,39,32,40,83,39,32,40,83,
-32,95,55,56,54,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,
-32,66,41,41,32,40,40,66,32,66,39,41,32,66,39,41,41,32,40,40,
-40,67,39,32,67,39,41,32,95,56,48,48,41,32,95,55,56,52,41,41,
-41,32,40,40,66,32,40,66,32,95,52,52,55,41,41,32,40,40,40,67,
-39,32,40,67,39,32,95,52,49,49,41,41,32,40,40,40,67,39,32,40,
-67,39,32,66,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,
-83,41,32,40,40,40,67,39,32,40,67,39,32,95,49,50,51,41,41,32,
-40,40,66,32,40,67,32,40,95,52,53,49,32,95,57,55,52,41,41,41,
-32,95,56,48,50,41,41,32,75,41,41,41,32,40,40,40,67,39,32,83,
-41,32,40,40,40,67,39,32,40,67,39,32,95,49,50,51,41,41,32,40,
-40,66,32,40,67,32,40,95,52,53,49,32,95,57,55,52,41,41,41,32,
-95,56,48,50,41,41,32,75,41,41,32,40,40,67,32,79,41,32,75,41,
-41,41,41,32,40,40,66,32,95,57,55,57,41,32,40,40,66,32,40,95,
-52,56,50,32,40,40,79,32,35,57,55,41,32,75,41,41,41,32,40,95,
-49,55,49,52,32,95,50,57,55,41,41,41,41,41,32,40,40,95,49,57,
-51,32,95,50,48,55,41,32,35,48,41,41,41,41,41,41,41,41,41,32,
-75,41,41,41,32,40,40,65,32,58,56,48,49,32,40,40,67,32,40,40,
-67,32,40,40,80,32,40,40,67,32,79,41,32,75,41,41,32,40,40,40,
-67,39,32,66,41,32,40,40,66,32,95,52,56,50,41,32,95,56,48,49,
-41,41,32,95,56,48,49,41,41,41,32,40,40,40,67,39,32,66,41,32,
-40,95,52,54,50,32,40,95,50,49,49,32,95,57,55,52,41,41,41,32,
-95,56,48,49,41,41,41,32,40,75,32,95,52,56,48,41,41,41,32,40,
-40,65,32,58,56,48,50,32,40,40,67,32,40,40,67,32,40,40,80,32,
-40,40,67,32,79,41,32,75,41,41,32,40,40,40,67,39,32,66,41,32,
-40,40,66,32,95,52,56,50,41,32,95,56,48,50,41,41,32,95,56,48,
-50,41,41,41,32,40,40,40,67,39,32,66,41,32,95,52,56,49,41,32,
-95,56,48,50,41,41,41,32,40,75,32,95,52,56,48,41,41,41,32,40,
-40,65,32,58,56,48,51,32,40,40,66,32,40,66,32,67,41,41,32,80,
-41,41,32,40,40,65,32,58,56,48,52,32,40,40,66,32,90,41,32,40,
-40,66,32,90,41,32,40,40,66,32,90,41,32,85,41,41,41,41,32,40,
-40,65,32,58,56,48,53,32,40,90,32,40,40,66,32,90,41,32,40,40,
-66,32,90,41,32,85,41,41,41,41,32,40,40,65,32,58,56,48,54,32,
-40,90,32,40,90,32,40,40,66,32,90,41,32,85,41,41,41,41,32,40,
-40,65,32,58,56,48,55,32,40,90,32,40,90,32,40,90,32,85,41,41,
-41,41,32,40,40,65,32,58,56,48,56,32,40,40,66,32,40,66,32,90,
-41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,66,
-32,90,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,
-40,66,32,90,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,
-66,32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,90,41,41,32,
-40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,90,41,
-41,32,80,41,41,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,
-56,48,57,32,40,40,66,32,90,41,32,40,40,66,32,40,66,32,90,41,
-41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,
-90,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,
-66,32,90,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,
-32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,
-40,66,32,40,66,32,90,41,41,32,80,41,41,41,41,41,41,41,41,41,
-41,41,32,40,40,65,32,58,56,49,48,32,40,40,66,32,90,41,32,40,
-40,66,32,90,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,
-32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,
-40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,90,41,41,
-32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,90,
-41,41,32,40,40,66,32,40,66,32,90,41,41,32,80,41,41,41,41,41,
-41,41,41,41,41,41,32,40,40,65,32,58,56,49,49,32,40,40,66,32,
-90,41,32,40,40,66,32,90,41,32,40,40,66,32,90,41,32,40,40,66,
-32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,
-40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,90,41,41,
-32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,90,
-41,41,32,40,40,66,32,40,66,32,90,41,41,32,80,41,41,41,41,41,
-41,41,41,41,41,41,32,40,40,65,32,58,56,49,50,32,40,40,66,32,
-90,41,32,40,40,66,32,90,41,32,40,40,66,32,90,41,32,40,40,66,
-32,90,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,
-66,32,90,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,
-32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,
-40,66,32,40,66,32,90,41,41,32,80,41,41,41,41,41,41,41,41,41,
-41,41,32,40,40,65,32,58,56,49,51,32,40,90,32,40,90,32,40,90,
-32,40,90,32,40,90,32,40,40,66,32,90,41,32,40,40,66,32,90,41,
-32,40,40,66,32,90,41,32,40,40,66,32,90,41,32,40,40,66,32,90,
-41,32,85,41,41,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,
-56,49,52,32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,
-66,32,90,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,
-32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,
-40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,40,66,32,
-90,41,41,41,32,40,40,66,32,40,66,32,40,66,32,90,41,41,41,32,
-40,40,66,32,40,66,32,40,66,32,90,41,41,41,32,40,40,66,32,40,
-66,32,40,66,32,90,41,41,41,32,40,40,66,32,40,66,32,67,41,41,
-32,80,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,
-56,49,53,32,40,40,66,32,90,41,32,40,40,66,32,90,41,32,40,40,
-66,32,90,41,32,40,40,66,32,90,41,32,40,40,66,32,90,41,32,40,
-40,66,32,90,41,32,40,40,66,32,90,41,32,40,40,66,32,40,66,32,
-90,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,
-66,32,90,41,41,32,80,41,41,41,41,41,41,41,41,41,41,41,32,40,
-40,65,32,58,56,49,54,32,40,40,66,32,40,66,32,40,66,32,90,41,
-41,41,32,40,40,66,32,40,66,32,40,66,32,90,41,41,41,32,40,40,
-66,32,40,66,32,40,66,32,90,41,41,41,32,40,40,66,32,40,66,32,
-40,66,32,90,41,41,41,32,40,40,66,32,40,66,32,40,66,32,90,41,
-41,41,32,40,40,66,32,40,66,32,40,66,32,90,41,41,41,32,40,40,
-66,32,40,66,32,40,66,32,90,41,41,41,32,40,40,66,32,40,66,32,
-40,66,32,90,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,
-32,90,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,
-90,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,67,41,41,41,
-32,40,40,66,32,40,66,32,67,41,41,32,80,41,41,41,41,41,41,41,
-41,41,41,41,41,41,32,40,40,65,32,58,56,49,55,32,40,40,66,32,
-40,66,32,40,66,32,90,41,41,41,32,40,40,66,32,40,66,32,40,66,
-32,90,41,41,41,32,40,40,66,32,40,66,32,40,66,32,90,41,41,41,
-32,40,40,66,32,40,66,32,40,66,32,90,41,41,41,32,40,40,66,32,
-40,66,32,40,66,32,90,41,41,41,32,40,40,66,32,40,66,32,40,66,
-32,90,41,41,41,32,40,40,66,32,40,66,32,40,66,32,90,41,41,41,
-32,40,40,66,32,40,66,32,40,66,32,90,41,41,41,32,40,40,66,32,
-40,66,32,40,66,32,90,41,41,41,32,40,40,66,32,40,66,32,40,66,
-32,40,66,32,90,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
-67,41,41,41,32,40,40,66,32,40,66,32,67,41,41,32,80,41,41,41,
-41,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,56,49,56,32,
-40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,
-32,40,90,32,40,90,32,40,90,32,85,41,41,41,41,41,41,41,41,41,
-41,41,32,40,40,65,32,58,56,49,57,32,40,40,66,32,40,66,32,40,
-66,32,67,41,41,41,32,40,40,66,32,40,66,32,67,41,41,32,80,41,
-41,41,32,40,40,65,32,58,56,50,48,32,40,40,66,32,90,41,32,40,
-40,66,32,90,41,32,85,41,41,41,32,40,40,65,32,58,56,50,49,32,
-40,90,32,40,40,66,32,90,41,32,85,41,41,41,32,40,40,65,32,58,
-56,50,50,32,40,90,32,40,90,32,85,41,41,41,32,40,40,65,32,58,
-56,50,51,32,40,40,66,32,90,41,32,40,40,66,32,90,41,32,40,40,
-66,32,90,41,32,40,40,66,32,90,41,32,40,40,66,32,90,41,32,40,
-40,66,32,90,41,32,40,40,66,32,90,41,32,40,40,66,32,90,41,32,
-40,40,66,32,90,41,32,40,40,66,32,90,41,32,40,40,66,32,90,41,
-32,40,40,66,32,90,41,32,40,40,66,32,90,41,32,40,40,66,32,90,
-41,32,40,40,66,32,90,41,32,40,40,66,32,90,41,32,40,40,66,32,
-90,41,32,85,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,32,40,40,65,32,58,56,50,52,32,40,40,66,32,90,41,32,40,
-40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,90,41,41,
-32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,90,
-41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,66,
-32,90,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,
-40,66,32,90,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,
-66,32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,90,41,41,32,
-40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,90,41,
-41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,
-90,41,41,32,40,40,66,32,40,66,32,90,41,41,32,80,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,
-56,50,53,32,40,40,66,32,90,41,32,40,40,66,32,90,41,32,40,40,
-66,32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,90,41,41,32,
-40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,90,41,
-41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,
-90,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,
-66,32,90,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,
-32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,
-40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,90,41,41,
-32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,90,
-41,41,32,80,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,32,40,40,65,32,58,56,50,54,32,40,90,32,40,90,32,40,90,
-32,40,40,66,32,90,41,32,40,40,66,32,90,41,32,40,40,66,32,90,
-41,32,40,40,66,32,90,41,32,40,40,66,32,90,41,32,40,40,66,32,
-90,41,32,40,40,66,32,90,41,32,40,40,66,32,90,41,32,40,40,66,
-32,90,41,32,40,40,66,32,90,41,32,40,40,66,32,90,41,32,40,40,
-66,32,90,41,32,40,40,66,32,90,41,32,40,40,66,32,90,41,32,85,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,
-40,65,32,58,56,50,55,32,40,40,66,32,90,41,32,40,40,66,32,90,
-41,32,40,40,66,32,90,41,32,40,40,66,32,90,41,32,40,40,66,32,
-40,66,32,90,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,
-66,32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,90,41,41,32,
-40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,90,41,
-41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,
-90,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,
-66,32,90,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,
-32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,90,41,41,32,80,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,
-40,65,32,58,56,50,56,32,40,40,66,32,90,41,32,40,40,66,32,90,
-41,32,40,40,66,32,90,41,32,40,40,66,32,90,41,32,40,40,66,32,
-90,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,66,
-32,90,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,
-40,66,32,90,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,
-66,32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,90,41,41,32,
-40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,90,41,
-41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,
-90,41,41,32,40,40,66,32,40,66,32,90,41,41,32,80,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,
-56,50,57,32,40,40,66,32,90,41,32,40,40,66,32,90,41,32,40,40,
-66,32,90,41,32,40,40,66,32,90,41,32,40,40,66,32,90,41,32,40,
-40,66,32,90,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,
-32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,
-40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,90,41,41,
-32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,90,
-41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,66,
-32,90,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,
-40,66,32,90,41,41,32,80,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,32,40,40,65,32,58,56,51,48,32,40,90,32,40,
-90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,40,66,
-32,90,41,32,40,40,66,32,90,41,32,40,40,66,32,90,41,32,40,40,
-66,32,90,41,32,40,40,66,32,90,41,32,40,40,66,32,90,41,32,40,
-40,66,32,90,41,32,40,40,66,32,90,41,32,40,40,66,32,90,41,32,
-40,40,66,32,90,41,32,85,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,32,40,40,65,32,58,56,51,49,32,40,90,32,40,
-90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,
-40,40,66,32,90,41,32,40,40,66,32,90,41,32,40,40,66,32,90,41,
-32,40,40,66,32,90,41,32,40,40,66,32,90,41,32,40,40,66,32,90,
-41,32,40,40,66,32,90,41,32,40,40,66,32,90,41,32,40,40,66,32,
-90,41,32,85,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,32,40,40,65,32,58,56,51,50,32,40,40,66,32,90,41,32,40,
-40,66,32,90,41,32,40,40,66,32,90,41,32,40,40,66,32,90,41,32,
-40,40,66,32,90,41,32,40,40,66,32,90,41,32,40,40,66,32,90,41,
-32,40,40,66,32,90,41,32,40,40,66,32,90,41,32,40,40,66,32,40,
-66,32,90,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,
-32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,
-40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,90,41,41,
-32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,90,
-41,41,32,80,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,32,40,40,65,32,58,56,51,51,32,40,40,66,32,90,41,32,40,
-40,66,32,90,41,32,40,40,66,32,90,41,32,40,40,66,32,90,41,32,
-40,40,66,32,90,41,32,40,40,66,32,90,41,32,40,40,66,32,90,41,
-32,40,40,66,32,90,41,32,40,40,66,32,90,41,32,40,40,66,32,90,
-41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,
-90,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,
-66,32,90,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,
-32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,90,41,41,32,80,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,
-40,65,32,58,56,51,52,32,40,40,66,32,90,41,32,40,40,66,32,90,
-41,32,40,40,66,32,90,41,32,40,40,66,32,90,41,32,40,40,66,32,
-90,41,32,40,40,66,32,90,41,32,40,40,66,32,90,41,32,40,40,66,
-32,90,41,32,40,40,66,32,90,41,32,40,40,66,32,90,41,32,40,40,
-66,32,90,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,
-40,66,32,90,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,
-66,32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,90,41,41,32,
-40,40,66,32,40,66,32,90,41,41,32,80,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,56,51,53,32,
-40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,90,41,
-41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,
-90,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,
-66,32,90,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,
-32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,
-40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,90,41,41,
-32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,40,
-66,32,90,41,41,41,32,40,40,66,32,40,66,32,40,66,32,90,41,41,
-41,32,40,40,66,32,40,66,32,40,66,32,90,41,41,41,32,40,40,66,
-32,40,66,32,40,66,32,90,41,41,41,32,40,40,66,32,40,66,32,40,
-66,32,90,41,41,41,32,40,40,66,32,40,66,32,67,41,41,32,80,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,
-40,65,32,58,56,51,54,32,40,40,66,32,90,41,32,40,40,66,32,90,
-41,32,40,40,66,32,90,41,32,40,40,66,32,90,41,32,40,40,66,32,
-90,41,32,40,40,66,32,90,41,32,40,40,66,32,90,41,32,40,40,66,
-32,90,41,32,40,40,66,32,90,41,32,40,40,66,32,90,41,32,40,40,
-66,32,90,41,32,40,40,66,32,90,41,32,40,40,66,32,90,41,32,40,
-40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,90,41,41,
-32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,90,
-41,41,32,80,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,32,40,40,65,32,58,56,51,55,32,40,40,66,32,90,41,32,40,
-40,66,32,90,41,32,40,40,66,32,90,41,32,40,40,66,32,90,41,32,
-40,40,66,32,90,41,32,40,40,66,32,90,41,32,40,40,66,32,90,41,
-32,40,40,66,32,90,41,32,40,40,66,32,90,41,32,40,40,66,32,90,
-41,32,40,40,66,32,90,41,32,40,40,66,32,90,41,32,40,40,66,32,
-90,41,32,40,40,66,32,90,41,32,40,40,66,32,40,66,32,90,41,41,
-32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,90,
-41,41,32,80,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,32,40,40,65,32,58,56,51,56,32,40,90,32,40,90,32,40,90,
-32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,
-90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,40,66,
-32,90,41,32,40,40,66,32,90,41,32,85,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,56,51,57,32,
-40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,
-32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,
-90,32,40,90,32,40,90,32,40,40,66,32,90,41,32,85,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,
-56,52,48,32,40,40,66,32,90,41,32,40,40,66,32,90,41,32,40,40,
-66,32,90,41,32,40,40,66,32,90,41,32,40,40,66,32,90,41,32,40,
-40,66,32,90,41,32,40,40,66,32,90,41,32,40,40,66,32,90,41,32,
-40,40,66,32,90,41,32,40,40,66,32,90,41,32,40,40,66,32,90,41,
-32,40,40,66,32,90,41,32,40,40,66,32,90,41,32,40,40,66,32,90,
-41,32,40,40,66,32,90,41,32,40,40,66,32,90,41,32,79,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,
-56,52,49,32,40,40,66,32,40,66,32,40,95,50,55,48,32,95,56,50,
-54,41,41,41,32,95,56,52,50,41,41,32,40,40,65,32,58,56,52,50,
-32,40,40,40,67,39,32,40,67,39,32,79,41,41,32,40,40,40,67,39,
-32,66,41,32,95,56,55,48,41,32,40,40,40,67,39,32,95,56,55,49,
-41,32,40,40,40,67,39,32,79,41,32,40,80,32,95,52,56,48,41,41,
-32,75,41,41,32,95,52,56,48,41,41,41,32,75,41,41,32,40,40,65,
-32,58,56,52,51,32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,
-32,40,66,32,90,41,41,32,80,41,41,41,32,40,40,65,32,58,56,52,
-52,32,40,90,32,40,40,66,32,90,41,32,85,41,41,41,32,40,40,65,
-32,58,56,52,53,32,40,40,66,32,90,41,32,79,41,41,32,40,40,65,
-32,58,56,52,54,32,40,40,66,32,90,41,32,40,40,66,32,90,41,32,
-40,40,66,32,90,41,32,40,40,66,32,90,41,32,40,40,66,32,90,41,
-32,85,41,41,41,41,41,41,32,40,40,65,32,58,56,52,55,32,40,40,
-66,32,90,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,
-40,66,32,90,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,
-66,32,40,66,32,90,41,41,32,80,41,41,41,41,41,41,32,40,40,65,
-32,58,56,52,56,32,40,90,32,40,90,32,40,40,66,32,90,41,32,40,
-40,66,32,90,41,32,40,40,66,32,90,41,32,85,41,41,41,41,41,41,
-32,40,40,65,32,58,56,52,57,32,40,40,66,32,90,41,32,40,40,66,
-32,90,41,32,40,40,66,32,90,41,32,40,40,66,32,40,66,32,90,41,
-41,32,40,40,66,32,40,66,32,90,41,41,32,80,41,41,41,41,41,41,
-32,40,40,65,32,58,56,53,48,32,40,40,66,32,90,41,32,40,40,66,
-32,90,41,32,40,40,66,32,90,41,32,40,40,66,32,90,41,32,40,40,
-66,32,40,66,32,90,41,41,32,80,41,41,41,41,41,41,32,40,40,65,
-32,58,56,53,49,32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,
-32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,
-40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,90,41,41,
-32,40,40,66,32,40,66,32,67,41,41,32,80,41,41,41,41,41,41,41,
-32,40,40,65,32,58,56,53,50,32,40,75,32,40,40,67,32,40,40,80,
-32,65,41,32,73,41,41,32,40,75,32,40,75,32,40,95,50,53,32,34,
-99,111,110,73,100,101,110,116,34,41,41,41,41,41,41,32,40,40,65,32,
-58,56,53,51,32,40,40,67,32,40,40,80,32,40,40,66,32,40,66,32,
-40,95,50,55,48,32,40,95,52,57,51,32,40,95,50,53,32,34,99,111,
-110,65,114,105,116,121,34,41,41,41,41,41,32,40,67,32,40,95,52,53,
-53,32,95,57,55,52,41,41,41,41,32,40,75,32,35,49,41,41,41,32,
-40,75,32,40,75,32,35,48,41,41,41,41,32,40,40,65,32,58,56,53,
-52,32,40,40,95,50,49,48,32,40,40,40,67,39,32,83,41,32,40,40,
-67,32,40,40,67,32,83,39,41,32,40,90,32,40,40,40,67,39,32,67,
-41,32,40,40,67,32,40,40,67,32,67,39,41,32,40,90,32,40,95,50,
-49,49,32,95,57,55,52,41,41,41,41,32,40,75,32,95,49,50,53,41,
-41,41,32,40,75,32,40,75,32,95,49,50,53,41,41,41,41,41,41,32,
-40,40,67,32,40,40,40,67,39,32,67,39,41,32,40,85,32,40,75,32,
-40,75,32,95,49,50,53,41,41,41,41,32,40,95,50,49,49,32,95,57,
-55,52,41,41,41,32,40,75,32,40,75,32,95,49,50,53,41,41,41,41,
-41,32,40,90,32,40,40,40,67,39,32,66,41,32,40,40,80,32,40,75,
-32,40,75,32,95,49,50,53,41,41,41,32,40,75,32,95,49,50,53,41,
-41,41,32,40,90,32,40,95,50,49,49,32,95,56,54,51,41,41,41,41,
-41,41,32,40,95,50,49,52,32,95,56,53,52,41,41,41,32,40,40,65,
-32,58,56,53,53,32,40,40,66,32,90,41,32,40,40,66,32,90,41,32,
-40,40,66,32,90,41,32,40,40,66,32,90,41,32,40,40,66,32,90,41,
-32,40,40,66,32,90,41,32,40,40,66,32,90,41,32,85,41,41,41,41,
-41,41,41,41,32,40,40,65,32,58,56,53,54,32,40,90,32,40,40,66,
-32,90,41,32,40,40,66,32,90,41,32,40,40,66,32,90,41,32,40,40,
-66,32,90,41,32,40,40,66,32,90,41,32,40,40,66,32,90,41,32,85,
-41,41,41,41,41,41,41,41,32,40,40,65,32,58,56,53,55,32,40,90,
-32,40,90,32,40,40,66,32,90,41,32,40,40,66,32,90,41,32,40,40,
-66,32,90,41,32,40,40,66,32,90,41,32,40,40,66,32,90,41,32,85,
-41,41,41,41,41,41,41,41,32,40,40,65,32,58,56,53,56,32,40,90,
-32,40,90,32,40,90,32,40,40,66,32,90,41,32,40,40,66,32,90,41,
-32,40,40,66,32,90,41,32,40,40,66,32,90,41,32,85,41,41,41,41,
-41,41,41,41,32,40,40,65,32,58,56,53,57,32,40,90,32,40,90,32,
-40,90,32,40,90,32,40,40,66,32,90,41,32,40,40,66,32,90,41,32,
-40,40,66,32,90,41,32,85,41,41,41,41,41,41,41,41,32,40,40,65,
-32,58,56,54,48,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,
-32,40,40,66,32,90,41,32,40,40,66,32,90,41,32,85,41,41,41,41,
-41,41,41,41,32,40,40,65,32,58,56,54,49,32,40,90,32,40,90,32,
-40,90,32,40,90,32,40,90,32,40,90,32,40,40,66,32,90,41,32,85,
-41,41,41,41,41,41,41,41,32,40,40,65,32,58,56,54,50,32,40,90,
-32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,85,
-41,41,41,41,41,41,41,41,32,40,40,65,32,58,56,54,51,32,40,40,
-95,50,49,48,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,
-83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,
-32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,
-40,67,32,40,40,67,32,83,39,41,32,40,40,40,67,39,32,67,41,32,
-40,40,40,67,39,32,67,41,32,40,40,40,67,39,32,67,41,32,40,40,
-40,67,39,32,67,41,32,40,40,40,67,39,32,67,41,32,40,40,40,67,
-39,32,67,41,32,40,40,67,32,40,40,67,32,67,39,41,32,40,95,50,
-49,49,32,95,50,57,53,41,41,41,32,40,75,32,95,49,50,53,41,41,
-41,32,40,75,32,95,49,50,53,41,41,41,32,40,75,32,95,49,50,53,
-41,41,41,32,40,75,32,95,49,50,53,41,41,41,32,40,75,32,95,49,
-50,53,41,41,41,32,40,75,32,95,49,50,53,41,41,41,32,40,75,32,
-95,49,50,53,41,41,41,41,32,40,40,40,67,39,32,67,41,32,40,40,
-40,67,39,32,67,41,32,40,40,40,67,39,32,67,41,32,40,40,40,67,
-39,32,67,41,32,40,40,40,67,39,32,67,41,32,40,40,67,32,40,40,
-40,67,39,32,67,39,41,32,40,85,32,40,75,32,95,49,50,53,41,41,
-41,32,40,95,50,49,49,32,95,51,49,57,41,41,41,32,40,75,32,95,
-49,50,53,41,41,41,32,40,75,32,95,49,50,53,41,41,41,32,40,75,
-32,95,49,50,53,41,41,41,32,40,75,32,95,49,50,53,41,41,41,32,
-40,75,32,95,49,50,53,41,41,41,32,40,75,32,95,49,50,53,41,41,
-41,41,32,40,40,40,67,39,32,67,41,32,40,40,40,67,39,32,67,41,
-32,40,40,40,67,39,32,67,41,32,40,40,40,67,39,32,67,41,32,40,
-40,67,32,40,40,40,67,39,32,67,39,41,32,40,40,80,32,40,75,32,
-95,49,50,53,41,41,32,40,75,32,95,49,50,53,41,41,41,32,40,95,
-50,49,49,32,95,49,53,52,41,41,41,32,40,75,32,95,49,50,53,41,
-41,41,32,40,75,32,95,49,50,53,41,41,41,32,40,75,32,95,49,50,
-53,41,41,41,32,40,75,32,95,49,50,53,41,41,41,32,40,75,32,95,
-49,50,53,41,41,41,41,32,40,40,40,67,39,32,67,41,32,40,40,40,
-67,39,32,67,41,32,40,40,40,67,39,32,67,41,32,40,40,67,32,40,
-40,40,67,39,32,67,39,41,32,40,40,67,32,40,40,80,32,40,75,32,
-95,49,50,53,41,41,32,40,75,32,95,49,50,53,41,41,41,32,40,75,
-32,95,49,50,53,41,41,41,32,40,95,50,49,49,32,40,95,53,52,55,
-32,95,51,49,57,41,41,41,41,32,40,75,32,95,49,50,53,41,41,41,
-32,40,75,32,95,49,50,53,41,41,41,32,40,75,32,95,49,50,53,41,
-41,41,32,40,75,32,95,49,50,53,41,41,41,41,32,40,40,40,67,39,
-32,67,41,32,40,40,40,67,39,32,67,41,32,40,40,67,32,40,40,40,
-67,39,32,67,39,41,32,40,40,67,32,40,40,67,32,40,40,80,32,40,
-75,32,95,49,50,53,41,41,32,40,75,32,95,49,50,53,41,41,41,32,
-40,75,32,95,49,50,53,41,41,41,32,40,75,32,95,49,50,53,41,41,
-41,32,40,95,50,49,49,32,95,49,51,50,41,41,41,32,40,75,32,95,
-49,50,53,41,41,41,32,40,75,32,95,49,50,53,41,41,41,32,40,75,
-32,95,49,50,53,41,41,41,41,32,40,40,40,67,39,32,67,41,32,40,
-40,67,32,40,40,40,67,39,32,67,39,41,32,40,40,67,32,40,40,67,
-32,40,40,67,32,40,40,80,32,40,75,32,95,49,50,53,41,41,32,40,
-75,32,95,49,50,53,41,41,41,32,40,75,32,95,49,50,53,41,41,41,
-32,40,75,32,95,49,50,53,41,41,41,32,40,75,32,95,49,50,53,41,
-41,41,32,40,95,50,49,49,32,95,49,51,52,41,41,41,32,40,75,32,
-95,49,50,53,41,41,41,32,40,75,32,95,49,50,53,41,41,41,41,32,
-40,40,67,32,40,40,40,67,39,32,67,39,41,32,40,40,67,32,40,40,
-67,32,40,40,67,32,40,40,67,32,40,40,80,32,40,75,32,95,49,50,
-53,41,41,32,40,75,32,95,49,50,53,41,41,41,32,40,75,32,95,49,
-50,53,41,41,41,32,40,75,32,95,49,50,53,41,41,41,32,40,75,32,
-95,49,50,53,41,41,41,32,40,75,32,95,49,50,53,41,41,41,32,40,
-95,50,49,49,32,95,49,51,52,41,41,41,32,40,75,32,95,49,50,53,
-41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,67,32,40,40,
-67,32,40,40,67,32,40,40,67,32,40,40,67,32,40,40,80,32,40,75,
-32,95,49,50,53,41,41,32,40,75,32,95,49,50,53,41,41,41,32,40,
-75,32,95,49,50,53,41,41,41,32,40,75,32,95,49,50,53,41,41,41,
-32,40,75,32,95,49,50,53,41,41,41,32,40,75,32,95,49,50,53,41,
-41,41,32,40,75,32,95,49,50,53,41,41,41,32,40,95,50,49,49,32,
-95,49,51,52,41,41,41,41,32,40,95,50,49,52,32,95,56,54,51,41,
-41,41,32,40,40,65,32,58,56,54,52,32,40,40,66,32,40,66,32,90,
-41,41,32,40,40,66,32,40,66,32,90,41,41,32,80,41,41,41,32,40,
-40,65,32,58,56,54,53,32,40,90,32,40,40,66,32,90,41,32,85,41,
-41,41,32,40,40,65,32,58,56,54,54,32,40,90,32,40,90,32,85,41,
-41,41,32,40,40,65,32,58,56,54,55,32,40,40,66,32,40,66,32,90,
-41,41,32,40,40,66,32,40,66,32,90,41,41,32,80,41,41,41,32,40,
-40,65,32,58,56,54,56,32,40,40,66,32,90,41,32,40,40,66,32,40,
-66,32,90,41,41,32,80,41,41,41,32,40,40,65,32,58,56,54,57,32,
-40,40,66,32,90,41,32,79,41,41,32,40,40,65,32,58,56,55,48,32,
-80,41,32,40,40,65,32,58,56,55,49,32,80,41,32,40,40,65,32,58,
-56,55,50,32,40,40,67,32,40,40,67,32,40,40,67,32,40,40,67,32,
-40,40,67,32,40,40,67,32,40,40,67,32,40,40,67,32,40,40,67,32,
-40,40,67,32,40,40,67,32,40,40,67,32,40,40,67,32,40,40,67,32,
-40,40,67,32,40,40,67,32,40,40,80,32,40,40,66,32,95,49,50,51,
-41,32,95,57,57,49,41,41,32,40,75,32,40,75,32,95,49,50,53,41,
-41,41,41,32,40,75,32,40,75,32,95,49,50,53,41,41,41,41,32,40,
-75,32,95,49,50,53,41,41,41,32,40,75,32,40,75,32,95,49,50,53,
-41,41,41,41,32,40,75,32,40,75,32,95,49,50,53,41,41,41,41,32,
-40,75,32,40,75,32,95,49,50,53,41,41,41,41,32,40,75,32,95,49,
-50,53,41,41,41,32,40,75,32,95,49,50,53,41,41,41,32,40,75,32,
-40,75,32,95,49,50,53,41,41,41,41,32,40,75,32,40,75,32,95,49,
-50,53,41,41,41,41,32,40,75,32,40,75,32,95,49,50,53,41,41,41,
-41,32,40,75,32,40,75,32,40,75,32,95,49,50,53,41,41,41,41,41,
-32,40,75,32,40,75,32,95,49,50,53,41,41,41,41,32,40,75,32,40,
-75,32,95,49,50,53,41,41,41,41,32,40,75,32,95,49,50,53,41,41,
-41,32,40,75,32,95,49,50,53,41,41,41,32,40,75,32,40,75,32,95,
-49,50,53,41,41,41,41,32,40,40,65,32,58,56,55,51,32,40,40,67,
-32,40,40,67,32,40,40,67,32,40,40,67,32,40,40,67,32,40,40,67,
-32,40,40,67,32,40,40,67,32,40,40,67,32,40,40,67,32,40,40,67,
-32,40,40,67,32,40,40,67,32,40,40,67,32,40,40,67,32,40,40,67,
-32,40,40,80,32,95,57,57,49,41,32,40,90,32,95,56,55,51,41,41,
-41,32,40,75,32,40,75,32,95,49,50,54,41,41,41,41,32,40,75,32,
-95,49,50,54,41,41,41,32,40,75,32,40,75,32,95,49,50,54,41,41,
-41,41,32,40,75,32,40,75,32,95,49,50,54,41,41,41,41,32,40,75,
-32,40,75,32,95,49,50,54,41,41,41,41,32,40,75,32,95,49,50,54,
-41,41,41,32,40,75,32,95,49,50,54,41,41,41,32,40,75,32,40,75,
-32,95,49,50,54,41,41,41,41,32,40,75,32,40,75,32,95,49,50,54,
-41,41,41,41,32,40,75,32,40,75,32,95,49,50,54,41,41,41,41,32,
-40,75,32,40,75,32,40,75,32,95,49,50,54,41,41,41,41,41,32,40,
-75,32,40,75,32,95,49,50,54,41,41,41,41,32,40,75,32,40,75,32,
-95,49,50,54,41,41,41,41,32,40,75,32,95,49,50,54,41,41,41,32,
-40,75,32,95,49,50,54,41,41,41,32,40,75,32,40,75,32,95,49,50,
-54,41,41,41,41,32,40,40,65,32,58,56,55,52,32,40,40,95,50,55,
-50,32,40,95,52,49,51,32,40,40,40,83,39,32,95,49,50,50,41,32,
-40,40,66,32,95,49,50,51,41,32,95,57,57,49,41,41,32,40,40,66,
-32,95,49,50,51,41,32,95,57,57,54,41,41,41,41,32,95,57,49,48,
-41,41,32,40,40,65,32,58,56,55,53,32,40,40,66,32,40,66,32,40,
-66,32,67,41,41,41,32,40,40,66,32,40,66,32,67,41,41,32,80,41,
-41,41,32,40,40,65,32,58,56,55,54,32,80,41,32,40,40,65,32,58,
-56,55,55,32,40,40,40,95,49,55,49,50,32,40,95,49,55,49,54,32,
-95,56,55,55,41,41,32,40,85,32,40,40,66,32,40,66,32,40,95,52,
-56,50,32,40,40,79,32,35,52,48,41,32,75,41,41,41,41,32,40,40,
-40,67,39,32,66,41,32,40,40,66,32,95,52,56,50,41,32,40,95,49,
-55,49,52,32,95,57,55,54,41,41,41,32,40,40,66,32,40,95,52,56,
-50,32,34,58,58,34,41,41,32,40,40,40,67,39,32,95,52,56,50,41,
-32,40,95,49,55,49,52,32,95,57,49,56,41,41,32,40,40,79,32,35,
-52,49,41,32,75,41,41,41,41,41,41,41,32,40,95,49,55,49,56,32,
-95,56,55,55,41,41,41,32,40,40,65,32,58,56,55,56,32,40,85,32,
-75,41,41,32,40,40,65,32,58,56,55,57,32,40,95,56,50,51,32,40,
-40,95,57,55,51,32,95,57,55,55,41,32,34,80,114,105,109,105,116,105,
-118,101,115,46,84,121,112,101,34,41,41,41,32,40,40,65,32,58,56,56,
-48,32,40,95,56,50,51,32,40,40,95,57,55,51,32,95,57,55,55,41,
-32,34,80,114,105,109,105,116,105,118,101,115,46,67,111,110,115,116,114,97,
-105,110,116,34,41,41,41,32,40,40,65,32,58,56,56,49,32,40,40,40,
-67,39,32,66,41,32,95,57,56,48,41,32,40,40,40,67,39,32,95,52,
-54,53,41,32,40,40,67,32,40,95,53,49,48,32,95,50,57,49,41,41,
-32,35,49,41,41,32,35,52,52,41,41,41,32,40,40,65,32,58,56,56,
-50,32,40,40,67,32,40,40,67,32,95,57,56,50,41,32,95,52,57,56,
-41,41,32,40,40,40,67,39,32,66,41,32,40,40,67,32,40,40,67,32,
-61,61,41,32,35,52,52,41,41,32,95,52,57,56,41,41,32,40,40,66,
-32,95,52,57,57,41,32,40,40,40,67,39,32,40,95,53,48,57,32,95,
-50,57,49,41,41,32,95,52,50,56,41,32,35,50,41,41,41,41,41,32,
-40,40,65,32,58,56,56,51,32,40,40,40,67,39,32,67,41,32,40,40,
-40,67,39,32,40,67,39,32,40,83,39,32,95,56,52,49,41,41,41,32,
-40,40,40,67,39,32,40,67,39,32,40,67,39,32,79,41,41,41,32,40,
-40,66,32,40,66,32,40,66,32,95,56,51,48,41,41,41,32,40,40,40,
-67,39,32,66,41,32,40,40,66,32,40,67,39,32,95,52,49,49,41,41,
-32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,79,41,41,41,32,
-40,40,66,32,40,66,32,40,66,32,40,95,50,55,48,32,95,56,50,51,
-41,41,41,41,32,40,40,66,32,67,41,32,40,40,40,67,39,32,67,41,
-32,40,67,32,40,95,50,49,49,32,95,50,57,53,41,41,41,32,95,57,
-57,53,41,41,41,41,32,75,41,41,41,32,40,40,66,32,40,40,95,49,
-57,53,32,95,50,48,55,41,32,40,40,95,53,49,53,32,95,50,57,49,
-41,32,40,95,51,55,51,32,35,48,41,41,41,41,32,40,40,67,32,40,
-95,53,49,48,32,95,50,57,49,41,41,32,35,49,41,41,41,41,41,32,
-75,41,41,32,95,56,50,51,41,41,32,40,95,57,55,57,32,34,36,120,
-34,41,41,41,32,40,40,65,32,58,56,56,52,32,85,41,32,40,40,65,
-32,58,56,56,53,32,40,85,32,73,41,41,32,40,40,65,32,58,56,56,
-54,32,40,75,32,40,110,111,68,101,102,97,117,108,116,32,34,72,97,115,
-76,111,99,46,103,101,116,83,76,111,99,34,41,41,41,32,40,40,65,32,
-58,56,56,55,32,40,95,56,56,52,32,40,85,32,75,41,41,41,32,40,
-40,65,32,58,56,56,56,32,40,95,56,56,52,32,40,40,67,32,40,40,
-67,32,40,40,67,32,40,40,67,32,40,40,67,32,40,40,67,32,40,40,
-67,32,40,40,67,32,40,40,67,32,40,40,67,32,40,40,67,32,40,40,
-67,32,40,40,67,32,40,40,67,32,40,40,67,32,40,40,67,32,40,40,
-80,32,40,95,56,56,53,32,95,56,56,55,41,41,32,40,90,32,40,95,
-56,56,53,32,95,56,56,56,41,41,41,41,32,40,90,32,40,95,56,56,
-53,32,95,56,56,56,41,41,41,41,32,40,95,56,56,53,32,40,95,56,
-56,57,32,95,56,57,53,41,41,41,41,32,75,41,41,32,40,90,32,40,
-95,56,56,53,32,95,56,56,56,41,41,41,41,32,40,90,32,40,95,56,
-56,53,32,40,95,56,56,57,32,95,56,57,52,41,41,41,41,41,32,40,
-95,56,56,53,32,40,95,56,56,57,32,95,56,56,56,41,41,41,41,32,
-40,95,56,56,53,32,95,56,57,50,41,41,41,32,40,40,67,32,40,40,
-67,32,67,39,41,32,40,95,56,56,53,32,40,95,56,56,57,32,95,56,
-57,51,41,41,41,41,32,40,95,56,56,53,32,95,56,56,55,41,41,41,
-41,32,40,90,32,40,95,56,56,53,32,95,56,56,56,41,41,41,41,32,
-40,90,32,40,95,56,56,53,32,95,56,56,55,41,41,41,41,32,40,90,
-32,40,90,32,40,95,56,56,53,32,95,56,56,56,41,41,41,41,41,32,
-40,90,32,40,95,56,56,53,32,95,56,56,56,41,41,41,41,32,40,90,
-32,40,95,56,56,53,32,95,56,56,55,41,41,41,41,32,40,75,32,40,
-95,50,53,32,34,103,101,116,83,76,111,99,32,69,85,86,97,114,34,41,
-41,41,41,32,40,95,56,56,53,32,95,56,57,49,41,41,41,32,40,40,
-83,32,40,40,67,32,67,39,41,32,40,95,56,56,53,32,95,56,56,56,
-41,41,41,32,40,90,32,40,90,32,40,95,56,56,53,32,40,95,56,56,
-57,32,95,56,57,48,41,41,41,41,41,41,41,41,32,40,40,65,32,58,
-56,56,57,32,40,40,66,32,95,56,56,52,41,32,40,40,66,32,40,80,
-32,40,95,50,53,32,34,103,101,116,83,76,111,99,32,91,93,34,41,41,
-41,32,40,40,66,32,90,41,32,95,56,56,53,41,41,41,41,32,40,40,
-65,32,58,56,57,48,32,40,95,56,56,52,32,40,85,32,40,90,32,40,
-95,56,56,53,32,95,56,56,55,41,41,41,41,41,32,40,40,65,32,58,
-56,57,49,32,40,95,56,56,52,32,40,40,67,32,40,40,80,32,40,75,
-32,40,95,56,56,53,32,95,56,56,55,41,41,41,32,40,95,56,56,53,
-32,95,56,56,55,41,41,41,32,75,41,41,41,32,40,40,65,32,58,56,
-57,50,32,40,95,56,56,52,32,40,40,67,32,40,40,67,32,40,40,67,
-32,40,40,67,32,40,40,80,32,40,95,56,56,53,32,40,95,56,56,57,
-32,95,56,56,56,41,41,41,32,40,90,32,40,95,56,56,53,32,95,56,
-56,56,41,41,41,41,32,40,95,56,56,53,32,95,56,56,56,41,41,41,
-32,40,90,32,40,95,56,56,53,32,95,56,56,56,41,41,41,41,32,40,
-90,32,40,95,56,56,53,32,95,56,56,56,41,41,41,41,32,40,90,32,
-40,90,32,40,95,56,56,53,32,95,56,56,56,41,41,41,41,41,41,32,
-40,40,65,32,58,56,57,51,32,40,95,56,56,52,32,40,40,67,32,40,
-40,80,32,40,90,32,40,95,56,56,53,32,95,56,56,56,41,41,41,32,
-40,95,56,56,53,32,95,56,56,56,41,41,41,32,40,95,56,56,53,32,
-40,95,56,56,57,32,95,56,57,52,41,41,41,41,41,32,40,40,65,32,
-58,56,57,52,32,40,95,56,56,52,32,40,40,67,32,40,40,80,32,40,
-90,32,40,95,56,56,53,32,95,56,56,55,41,41,41,32,40,90,32,40,
-95,56,56,53,32,95,56,56,56,41,41,41,41,32,40,90,32,40,95,56,
-56,53,32,95,56,56,55,41,41,41,41,41,32,40,40,65,32,58,56,57,
-53,32,40,95,56,56,52,32,40,85,32,40,40,67,32,40,40,67,32,67,
-39,41,32,40,95,56,56,53,32,95,56,57,54,41,41,41,32,40,90,32,
-40,95,56,56,53,32,95,56,56,56,41,41,41,41,41,41,32,40,40,65,
-32,58,56,57,54,32,40,95,56,56,52,32,40,85,32,40,90,32,40,95,
-56,56,53,32,40,95,56,56,57,32,95,56,57,55,41,41,41,41,41,41,
-32,40,40,65,32,58,56,57,55,32,40,95,56,56,52,32,40,85,32,40,
-40,83,32,40,40,67,32,67,39,41,32,40,95,56,56,53,32,95,56,56,
-56,41,41,41,32,40,90,32,40,90,32,40,95,56,56,53,32,40,95,56,
-56,57,32,95,56,57,51,41,41,41,41,41,41,41,41,32,40,40,65,32,
-58,56,57,56,32,40,90,32,75,41,41,32,40,40,65,32,58,56,57,57,
-32,40,75,32,75,41,41,32,40,40,65,32,58,57,48,48,32,40,75,32,
-65,41,41,32,40,40,65,32,58,57,48,49,32,40,40,95,50,49,48,32,
-40,40,40,67,39,32,83,41,32,40,40,67,32,40,40,67,32,83,39,41,
-32,40,40,67,32,40,40,80,32,95,49,50,54,41,32,95,49,50,53,41,
-41,32,95,49,50,53,41,41,41,32,40,40,67,32,40,40,80,32,95,49,
-50,53,41,32,95,49,50,54,41,41,32,95,49,50,53,41,41,41,32,40,
-40,67,32,40,40,80,32,95,49,50,53,41,32,95,49,50,53,41,41,32,
-95,49,50,54,41,41,41,32,40,95,50,49,52,32,95,57,48,49,41,41,
-41,32,40,40,65,32,58,57,48,50,32,40,40,83,32,40,85,32,95,50,
-55,51,41,41,32,40,90,32,40,90,32,40,40,66,32,89,41,32,40,40,
-40,67,39,32,40,67,39,32,67,41,41,32,40,40,40,83,39,32,40,67,
-39,32,40,67,39,32,67,41,41,41,32,40,40,40,67,39,32,40,67,39,
-32,40,67,39,32,83,41,41,41,32,40,40,40,67,39,32,40,67,39,32,
-40,83,39,32,67,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,
-67,39,32,83,41,41,41,32,40,40,40,67,39,32,40,83,39,32,40,67,
-39,32,67,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,
-32,83,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,
-83,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,83,
-41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,83,41,
-41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,83,41,41,
-41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,83,41,41,41,
-32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,83,41,41,41,32,
-40,40,40,67,39,32,40,67,39,32,40,67,39,32,83,41,41,41,32,40,
-40,40,67,39,32,40,67,39,32,40,83,39,32,67,41,41,41,32,40,40,
-40,67,39,32,40,67,39,32,67,41,41,32,40,40,40,67,39,32,40,67,
-39,32,40,67,39,32,83,39,41,41,41,32,40,40,40,67,39,32,66,41,
-32,40,40,66,32,67,41,32,40,40,66,32,40,83,32,73,41,41,32,40,
-40,66,32,40,40,67,39,32,66,41,32,40,40,66,32,95,50,55,48,41,
-32,95,52,57,51,41,41,41,32,40,67,32,40,95,52,53,53,32,95,57,
-55,52,41,41,41,41,41,41,32,40,40,40,83,39,32,40,67,39,32,66,
-41,41,32,40,66,32,95,56,50,52,41,41,32,73,41,41,41,32,40,90,
-32,75,41,41,41,32,75,41,41,32,40,90,32,75,41,41,41,32,40,90,
-32,75,41,41,41,32,40,90,32,75,41,41,41,32,75,41,41,32,75,41,
-41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,40,90,
-32,75,41,41,41,32,40,90,32,40,90,32,75,41,41,41,41,32,40,66,
-32,95,56,51,54,41,41,41,32,40,90,32,75,41,41,41,32,75,41,41,
-32,75,41,41,32,40,40,66,32,40,40,83,39,32,66,41,32,40,40,66,
-32,95,50,55,48,41,32,95,56,52,48,41,41,41,32,40,40,66,32,40,
-66,32,95,57,48,50,41,41,32,40,40,67,39,32,95,52,49,49,41,32,
-40,40,66,32,40,83,32,73,41,41,32,40,40,66,32,40,66,32,90,41,
-41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,67,41,32,40,40,
-40,67,39,32,40,67,39,32,95,49,50,51,41,41,32,40,40,66,32,40,
-67,32,40,95,52,53,49,32,95,57,55,52,41,41,41,32,40,95,52,49,
-50,32,95,56,55,56,41,41,41,32,75,41,41,41,32,40,40,67,32,79,
-41,32,75,41,41,41,41,41,41,41,41,41,32,40,95,50,53,32,34,115,
-117,98,115,116,32,117,110,105,109,112,108,101,109,101,110,116,101,100,34,41,
-41,41,41,41,41,41,32,40,40,65,32,58,57,48,51,32,40,95,57,48,
-52,32,95,54,55,51,41,41,32,40,40,65,32,58,57,48,52,32,40,75,
-32,40,89,32,40,40,40,67,39,32,40,67,39,32,67,41,41,32,40,40,
-40,67,39,32,40,67,39,32,67,41,41,32,40,40,40,67,39,32,40,67,
-39,32,67,41,41,32,40,40,40,67,39,32,40,67,39,32,67,41,41,32,
-40,40,40,67,39,32,40,67,39,32,67,41,41,32,40,40,40,67,39,32,
-40,67,39,32,67,41,41,32,40,40,40,67,39,32,40,67,39,32,67,41,
-41,32,40,40,40,67,39,32,40,67,39,32,67,41,41,32,40,40,40,67,
-39,32,40,67,39,32,67,41,41,32,40,40,40,67,39,32,40,67,39,32,
-67,41,41,32,40,40,40,67,39,32,40,67,39,32,67,41,41,32,40,40,
-40,67,39,32,40,67,39,32,67,41,41,32,40,40,40,67,39,32,40,67,
-39,32,67,41,41,32,40,40,40,67,39,32,40,67,39,32,83,41,41,32,
-40,40,40,67,39,32,40,67,39,32,67,41,41,32,40,40,40,67,39,32,
-40,67,39,32,67,41,41,32,40,40,66,32,40,67,32,40,40,67,32,83,
-39,41,32,40,40,40,67,39,32,67,41,32,40,40,40,67,39,32,67,41,
-32,40,40,40,67,39,32,67,41,32,40,40,40,67,39,32,67,41,32,40,
-40,40,67,39,32,67,41,32,40,40,40,67,39,32,67,41,32,40,40,40,
-67,39,32,67,41,32,40,40,40,67,39,32,67,41,32,40,40,40,67,39,
-32,67,41,32,40,40,40,67,39,32,67,41,32,40,40,40,67,39,32,67,
-41,32,40,40,40,67,39,32,67,41,32,40,40,40,67,39,32,67,41,32,
-40,40,40,67,39,32,67,41,32,40,40,40,67,39,32,67,41,32,40,40,
-40,67,39,32,67,41,32,40,40,67,32,40,40,67,32,67,39,41,32,40,
-95,50,49,49,32,95,57,55,52,41,41,41,32,40,75,32,40,75,32,95,
-49,50,53,41,41,41,41,32,40,75,32,40,75,32,95,49,50,53,41,41,
-41,41,32,40,75,32,95,49,50,53,41,41,41,32,40,75,32,40,75,32,
-95,49,50,53,41,41,41,41,32,40,75,32,40,75,32,95,49,50,53,41,
-41,41,41,32,40,75,32,40,75,32,95,49,50,53,41,41,41,41,32,40,
-75,32,95,49,50,53,41,41,41,32,40,75,32,95,49,50,53,41,41,41,
-32,40,75,32,40,75,32,95,49,50,53,41,41,41,41,32,40,75,32,40,
-75,32,95,49,50,53,41,41,41,41,32,40,75,32,40,75,32,95,49,50,
-53,41,41,41,41,32,40,75,32,40,75,32,40,75,32,95,49,50,53,41,
-41,41,41,41,32,40,75,32,40,75,32,95,49,50,53,41,41,41,41,32,
-40,75,32,40,75,32,95,49,50,53,41,41,41,41,32,40,75,32,95,49,
-50,53,41,41,41,32,40,75,32,95,49,50,53,41,41,41,32,40,75,32,
-40,75,32,95,49,50,53,41,41,41,41,41,41,32,40,40,40,67,39,32,
-40,67,39,32,40,67,39,32,67,41,41,41,32,40,40,40,67,39,32,40,
-67,39,32,40,67,39,32,67,41,41,41,32,40,40,40,67,39,32,40,67,
-39,32,40,67,39,32,67,41,41,41,32,40,40,40,67,39,32,40,67,39,
-32,40,67,39,32,67,41,41,41,32,40,40,40,67,39,32,40,67,39,32,
-40,67,39,32,67,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,
-67,39,32,67,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,
-39,32,67,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,
-32,67,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,
-67,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,67,
-41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,67,41,
-41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,
-41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,41,
-32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,41,32,
-40,40,40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,41,32,40,
-40,40,67,39,32,67,41,32,40,40,66,32,40,40,67,39,32,67,39,41,
-32,40,40,66,32,67,39,41,32,40,85,32,40,75,32,95,49,50,53,41,
-41,41,41,41,32,40,40,40,83,39,32,40,67,39,32,66,41,41,32,40,
-40,66,32,40,66,32,40,67,39,32,66,41,41,41,32,40,66,32,40,66,
-32,95,49,50,50,41,41,41,41,32,73,41,41,41,32,40,75,32,40,75,
-32,95,49,50,53,41,41,41,41,32,40,75,32,95,49,50,53,41,41,41,
-32,40,75,32,40,75,32,95,49,50,53,41,41,41,41,32,40,75,32,40,
-75,32,95,49,50,53,41,41,41,41,32,40,75,32,40,75,32,95,49,50,
-53,41,41,41,41,32,40,75,32,95,49,50,53,41,41,41,32,40,75,32,
-95,49,50,53,41,41,41,32,40,75,32,40,75,32,95,49,50,53,41,41,
-41,41,32,40,75,32,40,75,32,95,49,50,53,41,41,41,41,32,40,75,
-32,40,75,32,95,49,50,53,41,41,41,41,32,40,75,32,40,75,32,40,
-75,32,95,49,50,53,41,41,41,41,41,32,40,75,32,40,75,32,95,49,
-50,53,41,41,41,41,32,40,75,32,40,75,32,95,49,50,53,41,41,41,
-41,32,40,75,32,95,49,50,53,41,41,41,32,40,75,32,95,49,50,53,
-41,41,41,32,40,75,32,40,75,32,95,49,50,53,41,41,41,41,41,32,
-40,75,32,40,75,32,95,49,50,53,41,41,41,41,32,40,75,32,95,49,
-50,53,41,41,41,32,40,90,32,40,40,40,67,39,32,67,41,32,40,40,
-40,67,39,32,67,41,32,40,40,40,67,39,32,67,41,32,40,40,40,67,
-39,32,67,41,32,40,40,40,67,39,32,67,41,32,40,40,40,67,39,32,
-67,41,32,40,40,40,67,39,32,67,41,32,40,40,40,67,39,32,67,41,
-32,40,40,40,67,39,32,67,41,32,40,40,40,67,39,32,67,41,32,40,
-40,40,67,39,32,67,41,32,40,40,40,67,39,32,67,41,32,40,40,67,
-32,40,40,40,67,39,32,67,39,41,32,40,40,67,32,40,40,67,32,40,
-40,80,32,40,75,32,95,49,50,53,41,41,32,40,75,32,40,75,32,95,
-49,50,53,41,41,41,41,32,40,75,32,40,75,32,95,49,50,53,41,41,
-41,41,32,40,75,32,95,49,50,53,41,41,41,32,40,90,32,40,95,50,
-49,49,32,95,56,54,51,41,41,41,41,32,40,75,32,40,75,32,95,49,
-50,53,41,41,41,41,32,40,75,32,40,75,32,95,49,50,53,41,41,41,
-41,32,40,75,32,95,49,50,53,41,41,41,32,40,75,32,95,49,50,53,
-41,41,41,32,40,75,32,40,75,32,95,49,50,53,41,41,41,41,32,40,
-75,32,40,75,32,95,49,50,53,41,41,41,41,32,40,75,32,40,75,32,
-95,49,50,53,41,41,41,41,32,40,75,32,40,75,32,40,75,32,95,49,
-50,53,41,41,41,41,41,32,40,75,32,40,75,32,95,49,50,53,41,41,
-41,41,32,40,75,32,40,75,32,95,49,50,53,41,41,41,41,32,40,75,
-32,95,49,50,53,41,41,41,32,40,75,32,95,49,50,53,41,41,41,32,
-40,75,32,40,75,32,95,49,50,53,41,41,41,41,41,41,32,40,75,32,
-40,75,32,95,49,50,53,41,41,41,41,32,40,75,32,40,75,32,95,49,
-50,53,41,41,41,41,32,40,75,32,95,49,50,53,41,41,41,32,40,75,
-32,95,49,50,53,41,41,41,32,40,75,32,40,75,32,95,49,50,53,41,
-41,41,41,32,40,75,32,40,75,32,95,49,50,53,41,41,41,41,32,40,
-75,32,40,75,32,95,49,50,53,41,41,41,41,32,40,75,32,40,75,32,
-40,75,32,95,49,50,53,41,41,41,41,41,32,40,75,32,40,75,32,95,
-49,50,53,41,41,41,41,32,40,75,32,40,75,32,95,49,50,53,41,41,
-41,41,32,40,75,32,95,49,50,53,41,41,41,32,40,75,32,95,49,50,
-53,41,41,41,32,40,75,32,40,75,32,95,49,50,53,41,41,41,41,41,
-41,32,40,40,65,32,58,57,48,53,32,40,40,67,32,40,40,80,32,40,
-40,40,67,39,32,66,41,32,95,52,56,49,41,32,40,95,52,49,49,32,
-95,57,48,54,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,
-32,95,52,56,50,41,32,95,57,48,57,41,41,32,95,57,49,48,41,41,
-41,32,40,90,32,40,40,67,32,79,41,32,75,41,41,41,41,32,40,40,
-65,32,58,57,48,54,32,40,85,32,40,40,40,67,39,32,66,41,32,40,
-40,66,32,95,52,56,50,41,32,40,95,52,49,49,32,95,57,48,57,41,
-41,41,32,95,57,48,55,41,41,41,32,40,40,65,32,58,57,48,55,32,
-40,85,32,40,40,40,67,39,32,66,41,32,40,40,66,32,95,52,56,50,
-41,32,40,95,52,49,49,32,95,57,48,56,41,41,41,32,40,95,52,49,
-49,32,95,57,48,53,41,41,41,41,32,40,40,65,32,58,57,48,56,32,
-40,85,32,40,40,40,67,39,32,66,41,32,40,40,66,32,95,52,56,50,
-41,32,40,95,52,49,49,32,95,57,49,51,41,41,41,32,95,57,49,48,
-41,41,41,32,40,40,65,32,58,57,48,57,32,95,57,49,48,41,32,40,
-40,65,32,58,57,49,48,32,40,40,67,32,40,40,67,32,40,40,67,32,
-40,40,67,32,40,40,67,32,40,40,67,32,40,40,67,32,40,40,67,32,
-40,40,67,32,40,40,67,32,40,40,67,32,40,40,67,32,40,40,67,32,
-40,40,67,32,40,40,67,32,40,40,67,32,40,40,80,32,40,40,67,32,
-79,41,32,75,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,
-95,52,56,50,41,32,95,57,49,48,41,41,32,95,57,49,48,41,41,41,
-32,40,40,40,67,39,32,66,41,32,40,40,66,32,95,52,56,50,41,32,
-95,57,49,48,41,41,32,40,95,52,49,49,32,40,85,32,40,40,40,67,
-39,32,66,41,32,95,52,56,49,41,32,95,57,49,48,41,41,41,41,41,
-41,32,40,95,52,49,49,32,95,57,48,54,41,41,41,32,40,75,32,40,
-75,32,95,52,56,48,41,41,41,41,32,40,40,40,67,39,32,66,41,32,
-40,40,66,32,95,52,56,50,41,32,95,57,49,48,41,41,32,40,95,52,
-49,49,32,95,57,49,50,41,41,41,41,32,40,40,40,67,39,32,66,41,
-32,40,40,66,32,95,52,56,50,41,32,40,95,52,49,49,32,95,57,48,
-53,41,41,41,32,95,57,49,48,41,41,41,32,40,95,52,49,49,32,95,
-57,49,48,41,41,41,32,40,40,83,32,40,40,40,67,39,32,83,41,32,
-40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,
-67,32,40,40,40,67,39,32,83,39,41,32,40,85,32,40,95,52,49,49,
-32,95,57,49,48,41,41,41,32,40,90,32,75,41,41,41,32,75,41,41,
-32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,
-40,90,32,75,41,41,41,41,32,95,57,49,49,41,41,41,32,40,40,40,
-67,39,32,66,41,32,40,40,66,32,95,52,56,50,41,32,40,40,95,52,
-57,50,32,95,52,56,48,41,32,40,40,67,32,95,52,56,49,41,32,95,
-52,56,48,41,41,41,41,32,40,95,52,49,49,32,95,57,49,51,41,41,
-41,41,32,40,40,66,32,40,67,32,95,52,56,49,41,41,32,95,57,49,
-48,41,41,41,32,40,40,40,67,39,32,66,41,32,95,52,56,49,41,32,
-95,57,49,48,41,41,41,32,40,40,40,67,39,32,66,41,32,40,66,39,
-32,40,40,66,32,95,52,56,50,41,32,95,57,49,48,41,41,41,32,40,
-40,40,67,39,32,66,41,32,40,40,66,32,95,52,56,50,41,32,95,57,
-49,48,41,41,32,95,57,49,48,41,41,41,41,32,40,90,32,95,57,49,
-48,41,41,41,32,40,40,40,67,39,32,66,41,32,95,52,56,49,41,32,
-95,57,49,48,41,41,41,32,40,75,32,95,52,56,48,41,41,41,32,40,
-40,40,67,39,32,79,41,32,40,95,56,53,50,32,95,54,55,51,41,41,
-32,75,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,95,
-52,56,50,41,32,40,95,52,49,50,32,40,85,32,75,41,41,41,41,32,
-95,57,49,48,41,41,41,32,40,40,65,32,58,57,49,49,32,40,40,67,
-32,40,40,67,32,40,40,67,32,40,40,67,32,40,40,80,32,40,95,52,
-49,49,32,95,57,49,48,41,41,32,40,40,40,67,39,32,66,41,32,40,
-40,66,32,95,52,56,50,41,32,95,57,49,48,41,41,32,40,95,52,49,
-49,32,95,57,49,51,41,41,41,41,32,95,57,49,48,41,41,32,40,40,
-40,67,39,32,66,41,32,40,40,66,32,95,52,56,50,41,32,95,57,49,
-48,41,41,32,95,57,49,48,41,41,41,32,40,40,40,67,39,32,66,41,
-32,40,40,66,32,95,52,56,50,41,32,95,57,49,48,41,41,32,95,57,
-49,48,41,41,41,32,40,40,40,67,39,32,66,41,32,40,66,39,32,40,
-40,66,32,95,52,56,50,41,32,95,57,49,48,41,41,41,32,40,40,40,
-67,39,32,66,41,32,40,40,66,32,95,52,56,50,41,32,95,57,49,48,
-41,41,32,95,57,49,48,41,41,41,41,32,40,40,65,32,58,57,49,50,
-32,40,85,32,40,40,40,67,39,32,66,41,32,40,40,66,32,95,52,56,
-50,41,32,95,57,48,57,41,41,32,95,57,48,55,41,41,41,32,40,40,
-65,32,58,57,49,51,32,40,40,67,32,40,40,80,32,40,40,40,67,39,
-32,66,41,32,40,40,66,32,95,52,56,50,41,32,95,57,48,57,41,41,
-32,95,57,49,48,41,41,32,95,57,49,48,41,41,32,40,95,52,49,49,
-32,95,57,48,53,41,41,41,32,40,40,65,32,58,57,49,52,32,40,40,
-40,67,39,32,67,41,32,40,40,40,67,39,32,40,67,39,32,83,41,41,
-32,40,40,40,83,39,32,40,67,39,32,67,41,41,32,40,40,40,67,39,
-32,40,67,39,32,83,41,41,32,40,40,40,67,39,32,40,67,39,32,83,
-41,41,32,40,40,40,67,39,32,40,67,39,32,83,41,41,32,40,40,40,
-67,39,32,40,67,39,32,83,41,41,32,40,40,40,67,39,32,40,67,39,
-32,83,41,41,32,40,40,40,67,39,32,40,67,39,32,83,41,41,32,40,
-40,40,67,39,32,40,67,39,32,83,41,41,32,40,40,40,67,39,32,40,
-67,39,32,83,41,41,32,40,40,40,67,39,32,40,67,39,32,83,41,41,
-32,40,40,40,67,39,32,40,67,39,32,83,41,41,32,40,40,40,67,39,
-32,40,67,39,32,83,41,41,32,40,40,40,83,39,32,40,67,39,32,67,
-41,41,32,40,40,40,67,39,32,40,67,39,32,83,41,41,32,40,40,40,
-67,39,32,67,41,32,40,40,40,67,39,32,40,67,39,32,83,39,41,41,
-32,40,40,66,32,85,41,32,40,40,66,32,40,66,32,95,56,50,51,41,
-41,32,95,57,56,51,41,41,41,32,40,90,32,75,41,41,41,32,40,90,
-32,75,41,41,41,32,75,41,41,32,40,90,32,95,56,50,55,41,41,41,
-32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,75,41,41,
-32,75,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,
-32,40,90,32,75,41,41,41,32,40,90,32,40,90,32,75,41,41,41,41,
-32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,75,41,41,
-32,40,40,66,32,40,66,32,95,56,51,57,41,41,32,95,57,49,53,41,
-41,41,32,40,90,32,75,41,41,41,32,40,95,50,53,32,34,115,101,116,
-83,76,111,99,69,120,112,114,34,41,41,41,32,40,40,65,32,58,57,49,
-53,32,40,40,40,67,39,32,83,41,32,40,40,40,83,39,32,80,41,32,
-40,40,66,32,40,40,67,39,32,66,41,32,95,56,52,51,41,41,32,95,
-57,56,51,41,41,32,40,40,66,32,40,66,32,95,56,52,52,41,41,32,
-95,57,56,51,41,41,41,32,40,90,32,75,41,41,41,32,40,40,65,32,
-58,57,49,54,32,40,75,32,40,40,66,32,40,66,32,40,95,50,55,48,
-32,95,50,53,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,
-32,95,52,56,50,41,32,95,57,57,55,41,41,32,40,95,52,56,50,32,
-34,58,32,34,41,41,41,41,41,32,40,40,65,32,58,57,49,55,32,40,
-40,40,95,49,55,49,50,32,40,95,49,55,49,54,32,95,57,49,55,41,
-41,32,40,85,32,40,90,32,40,40,66,32,40,66,32,40,95,52,56,50,
-32,34,109,111,100,117,108,101,32,34,41,41,41,32,40,40,40,67,39,32,
-66,41,32,40,40,66,32,95,52,56,50,41,32,95,57,56,52,41,41,32,
-40,40,66,32,40,95,52,56,50,32,34,40,46,46,46,41,32,119,104,101,
-114,101,92,49,48,38,34,41,41,32,95,57,50,49,41,41,41,41,41,41,
-32,40,95,49,55,49,56,32,95,57,49,55,41,41,41,32,40,40,65,32,
-58,57,49,56,32,40,40,40,95,49,55,49,50,32,40,95,49,55,49,54,
-32,95,57,49,56,41,41,32,95,57,50,48,41,32,40,95,49,55,49,56,
-32,95,57,49,56,41,41,41,32,40,40,65,32,58,57,49,57,32,40,40,
-40,95,49,55,49,50,32,40,95,49,55,49,54,32,95,57,49,57,41,41,
-32,40,40,66,32,40,95,50,55,48,32,95,49,55,48,52,41,41,32,40,
-40,66,32,40,40,95,57,50,57,32,40,95,49,54,53,57,32,40,40,79,
-32,35,57,53,41,32,75,41,41,41,32,40,95,49,54,53,57,32,40,40,
-79,32,35,54,49,41,32,75,41,41,41,41,32,40,40,67,32,79,41,32,
-75,41,41,41,41,32,40,95,49,55,49,56,32,95,57,49,57,41,41,41,
-32,40,40,65,32,58,57,50,48,32,40,40,95,50,55,50,32,95,49,55,
-48,52,41,32,95,57,51,57,41,41,32,40,40,65,32,58,57,50,49,32,
-40,40,95,50,55,50,32,95,49,55,48,52,41,32,95,57,51,52,41,41,
-32,40,40,65,32,58,57,50,50,32,40,40,95,50,55,50,32,95,49,55,
-48,52,41,32,95,57,52,54,41,41,32,40,40,65,32,58,57,50,51,32,
-40,40,95,50,55,50,32,95,49,55,48,52,41,32,40,40,95,50,55,50,
-32,95,49,54,54,52,41,32,40,95,52,49,50,32,95,57,52,54,41,41,
-41,41,32,40,40,65,32,58,57,50,52,32,40,40,95,50,55,50,32,95,
-49,55,48,52,41,32,95,57,52,57,41,41,32,40,40,65,32,58,57,50,
-53,32,40,40,67,32,40,40,80,32,40,40,40,67,39,32,95,49,54,56,
-57,41,32,95,57,56,53,41,32,40,95,49,54,53,57,32,34,40,46,46,
-41,34,41,41,41,32,95,57,56,53,41,41,32,95,57,56,53,41,41,32,
-40,40,65,32,58,57,50,54,32,40,40,67,32,40,40,67,32,40,40,67,
-32,40,40,67,32,40,40,67,32,40,40,67,32,40,40,67,32,40,40,67,
-32,40,40,67,32,40,40,80,32,40,40,40,83,39,32,83,41,32,40,40,
-66,32,85,41,32,40,40,66,32,40,95,49,54,57,48,32,40,95,49,54,
-53,57,32,34,100,97,116,97,34,41,41,41,32,95,57,51,50,41,41,41,
-32,40,40,66,32,90,41,32,40,40,66,32,90,41,32,40,40,40,67,39,
-32,66,41,32,40,40,66,32,95,49,54,57,48,41,32,40,40,40,67,39,
-32,95,49,54,57,48,41,32,40,40,66,32,40,95,49,54,57,48,32,40,
-95,49,54,53,57,32,34,100,97,116,97,34,41,41,41,32,95,57,51,50,
-41,41,32,40,95,49,54,53,57,32,40,40,79,32,35,54,49,41,32,75,
-41,41,41,41,41,32,40,40,66,32,95,49,54,54,51,41,32,40,40,66,
-32,40,95,49,54,54,55,32,40,95,49,54,53,57,32,34,32,124,34,41,
-41,41,32,40,95,52,49,50,32,95,57,51,48,41,41,41,41,41,41,41,
-41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,95,49,54,57,48,
-41,32,40,40,40,67,39,32,95,49,54,57,48,41,32,40,40,66,32,40,
-95,49,54,57,48,32,40,95,49,54,53,57,32,34,110,101,119,116,121,112,
-101,34,41,41,41,32,95,57,51,50,41,41,32,40,95,49,54,53,57,32,
-40,40,79,32,35,54,49,41,32,75,41,41,41,41,41,32,95,57,51,48,
-41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,95,49,54,
-57,48,41,32,40,40,40,67,39,32,95,49,54,57,48,41,32,40,40,66,
-32,40,95,49,54,57,48,32,40,95,49,54,53,57,32,34,116,121,112,101,
-34,41,41,41,32,95,57,51,50,41,41,32,40,95,49,54,53,57,32,40,
-40,79,32,35,54,49,41,32,75,41,41,41,41,41,32,95,57,52,57,41,
-41,41,32,40,40,40,67,39,32,95,57,50,57,41,32,95,57,56,53,41,
-32,40,95,49,54,53,57,32,40,40,79,32,35,54,49,41,32,75,41,41,
-41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,95,49,54,
-57,48,41,32,40,40,40,67,39,32,95,49,54,57,48,41,32,95,57,56,
-53,41,32,40,95,49,54,53,57,32,34,58,58,34,41,41,41,41,32,95,
-57,52,57,41,41,41,32,40,85,32,40,40,40,67,39,32,40,67,39,32,
-40,67,39,32,66,41,41,41,32,40,40,66,32,40,66,32,40,66,32,95,
-49,54,56,57,41,41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,
-41,32,40,40,66,32,40,66,32,95,49,54,56,57,41,41,32,40,40,40,
-67,39,32,66,41,32,40,40,66,32,95,49,54,57,48,41,32,40,40,66,
-32,40,95,49,54,57,48,32,40,95,49,54,53,57,32,34,105,109,112,111,
-114,116,34,41,41,41,32,40,40,80,32,95,49,54,54,48,41,32,40,95,
-49,54,53,57,32,34,113,117,97,108,105,102,105,101,100,34,41,41,41,41,
-41,32,95,57,56,53,41,41,41,32,40,40,66,32,95,49,54,53,57,41,
-32,40,40,95,52,57,50,32,75,41,32,40,40,95,50,55,50,32,40,95,
-52,56,50,32,34,32,97,115,32,34,41,41,32,95,57,56,50,41,41,41,
-41,41,41,32,40,40,80,32,95,49,54,54,48,41,32,40,85,32,40,40,
-40,67,39,32,66,41,32,40,40,66,32,95,49,54,56,57,41,32,40,40,
-66,32,95,49,54,53,57,41,32,40,40,80,32,75,41,32,34,32,104,105,
-100,105,110,103,34,41,41,41,41,32,40,40,66,32,95,49,54,54,57,41,
-32,40,40,66,32,40,95,50,55,48,32,95,49,54,54,51,41,41,32,40,
-40,66,32,40,95,49,54,54,55,32,40,95,49,54,53,57,32,34,44,32,
-34,41,41,41,32,40,95,52,49,50,32,95,57,50,53,41,41,41,41,41,
-41,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,
-32,40,40,66,32,40,66,32,95,49,54,57,48,41,41,32,40,40,40,67,
-39,32,40,67,39,32,95,49,54,57,48,41,41,32,40,40,40,67,39,32,
-66,41,32,40,40,66,32,95,49,54,57,48,41,32,40,40,66,32,95,49,
-54,53,57,41,32,40,40,66,32,40,95,52,56,50,32,34,102,111,114,101,
-105,103,110,32,105,109,112,111,114,116,32,99,99,97,108,108,32,34,41,41,
-32,40,95,49,55,49,52,32,40,95,52,48,53,32,95,49,53,48,41,41,
-41,41,41,41,32,95,57,56,53,41,41,32,40,95,49,54,53,57,32,34,
-58,58,34,41,41,41,41,32,95,57,52,57,41,41,41,32,40,40,67,32,
-66,41,32,40,40,66,32,40,40,67,39,32,40,67,39,32,95,49,54,57,
-48,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,95,49,54,
-57,48,41,32,40,40,66,32,95,49,54,53,57,41,32,40,40,66,32,40,
-95,52,56,50,32,34,105,110,102,105,120,34,41,41,32,40,40,67,32,40,
-40,80,32,40,40,79,32,35,49,48,56,41,32,75,41,41,32,40,40,79,
-32,35,49,49,52,41,32,75,41,41,41,32,75,41,41,41,41,41,32,40,
-40,66,32,95,49,54,53,57,41,32,40,95,49,55,49,52,32,95,50,57,
-55,41,41,41,41,41,32,40,40,66,32,95,49,54,54,51,41,32,40,40,
-66,32,40,95,49,54,54,55,32,40,95,49,54,53,57,32,34,44,32,34,
-41,41,41,32,40,95,52,49,50,32,95,57,56,53,41,41,41,41,41,41,
-41,32,40,40,66,32,40,66,32,40,66,32,95,57,51,54,41,41,41,32,
-40,40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,
-32,95,49,54,57,48,41,41,32,40,40,40,67,39,32,66,41,32,40,40,
-66,32,95,49,54,57,48,41,32,40,40,66,32,40,95,49,54,57,48,32,
-40,95,49,54,53,57,32,34,99,108,97,115,115,34,41,41,41,32,95,57,
-50,55,41,41,41,32,95,57,51,50,41,41,41,32,95,57,50,56,41,41,
-41,41,32,40,40,66,32,40,66,32,40,66,32,95,57,51,54,41,41,41,
-32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,
-66,32,95,49,54,57,48,41,41,32,40,40,40,67,39,32,66,41,32,40,
-40,66,32,95,49,54,57,48,41,32,40,40,66,32,40,95,49,54,57,48,
-32,40,95,49,54,53,57,32,34,105,110,115,116,97,110,99,101,34,41,41,
-41,32,95,57,52,49,41,41,41,32,95,57,50,55,41,41,41,32,95,57,
-52,57,41,41,41,41,32,40,40,66,32,40,95,49,54,57,48,32,40,95,
-49,54,53,57,32,34,100,101,102,97,117,108,116,34,41,41,41,32,40,40,
-66,32,95,49,54,54,57,41,32,40,40,66,32,95,49,54,54,51,41,32,
-40,40,66,32,40,95,49,54,54,55,32,40,95,49,54,53,57,32,34,44,
-32,34,41,41,41,32,40,95,52,49,50,32,95,57,52,57,41,41,41,41,
-41,41,41,32,40,40,65,32,58,57,50,55,32,40,40,83,32,40,85,32,
-95,49,54,54,48,41,41,32,40,90,32,40,90,32,40,40,40,67,39,32,
-95,49,54,57,48,41,32,40,40,66,32,95,57,52,57,41,32,95,56,51,
-48,41,41,32,40,95,49,54,53,57,32,34,61,62,34,41,41,41,41,41,
-41,32,40,40,65,32,58,57,50,56,32,40,40,83,32,40,85,32,95,49,
-54,54,48,41,41,32,40,90,32,40,90,32,40,40,66,32,40,95,49,54,
-57,48,32,40,95,49,54,53,57,32,40,40,79,32,35,49,50,52,41,32,
-75,41,41,41,41,32,40,40,66,32,95,49,54,54,51,41,32,40,40,66,
-32,40,95,49,54,54,55,32,40,95,49,54,53,57,32,40,40,79,32,35,
-52,52,41,32,75,41,41,41,41,32,40,95,52,49,50,32,40,85,32,40,
-40,40,67,39,32,66,41,32,40,40,66,32,95,49,54,57,48,41,32,40,
-40,40,67,39,32,95,49,54,57,48,41,32,40,40,66,32,95,49,54,54,
-51,41,32,40,95,52,49,50,32,95,57,56,53,41,41,41,32,40,95,49,
-54,53,57,32,40,40,79,32,35,52,53,41,32,75,41,41,41,41,41,32,
-40,40,66,32,95,49,54,54,51,41,32,40,95,52,49,50,32,95,57,56,
-53,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,57,
-50,57,32,40,40,66,32,40,66,32,40,95,50,55,50,32,95,49,54,54,
-52,41,41,41,32,40,40,66,32,40,66,32,95,52,49,50,41,41,32,40,
-40,66,32,40,66,32,85,41,41,32,40,40,66,32,40,66,32,40,66,32,
-40,66,32,95,49,54,57,52,41,41,41,41,32,40,40,40,67,39,32,66,
-41,32,40,40,66,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,
-32,79,41,41,32,40,40,40,67,39,32,66,41,32,95,49,54,57,48,41,
-32,40,40,66,32,95,49,54,54,51,41,32,40,95,52,49,50,32,95,57,
-52,56,41,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,79,
-41,41,32,95,57,51,53,41,32,75,41,41,41,41,41,41,41,32,40,40,
-65,32,58,57,51,48,32,40,85,32,40,40,40,67,39,32,40,67,39,32,
-40,67,39,32,66,41,41,41,32,40,40,66,32,40,66,32,40,66,32,95,
-49,54,57,48,41,41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,
-41,32,40,40,66,32,40,66,32,95,49,54,57,48,41,41,32,40,40,40,
-67,39,32,66,41,32,40,40,66,32,95,49,54,57,48,41,32,95,57,52,
-49,41,41,32,95,57,50,55,41,41,41,32,95,57,56,53,41,41,41,32,
-40,40,80,32,40,40,66,32,95,49,54,54,51,41,32,40,95,52,49,50,
-32,95,57,51,49,41,41,41,32,40,40,66,32,95,49,54,55,48,41,32,
-40,40,66,32,40,95,50,55,48,32,95,49,54,54,51,41,41,32,40,95,
-52,49,50,32,40,85,32,40,40,40,67,39,32,40,67,39,32,95,49,54,
-56,57,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,95,49,
-54,57,48,41,32,40,40,40,67,39,32,95,49,54,57,48,41,32,95,57,
-56,53,41,32,40,95,49,54,53,57,32,34,58,58,34,41,41,41,41,32,
-95,57,51,49,41,41,32,40,95,49,54,53,57,32,40,40,79,32,35,52,
-52,41,32,75,41,41,41,41,41,41,41,41,41,41,41,32,40,40,65,32,
-58,57,51,49,32,40,85,32,40,40,67,32,40,40,67,32,83,39,41,32,
-95,57,52,57,41,41,32,40,40,66,32,40,95,49,54,56,57,32,40,95,
-49,54,53,57,32,40,40,79,32,35,51,51,41,32,75,41,41,41,41,32,
-95,57,52,57,41,41,41,41,32,40,40,65,32,58,57,51,50,32,40,85,
-32,40,40,66,32,40,66,32,95,49,54,54,51,41,41,32,40,40,40,67,
-39,32,66,41,32,40,40,66,32,95,52,56,49,41,32,95,57,56,53,41,
-41,32,40,95,52,49,50,32,95,57,51,51,41,41,41,41,41,32,40,40,
-65,32,58,57,51,51,32,40,85,32,40,40,66,32,40,66,32,40,95,50,
-55,48,32,95,49,54,54,57,41,41,41,32,40,40,40,67,39,32,66,41,
-32,40,40,66,32,95,49,54,56,57,41,32,40,40,40,67,39,32,95,49,
-54,56,57,41,32,95,57,56,53,41,32,40,95,49,54,53,57,32,34,58,
-58,34,41,41,41,41,32,95,57,53,48,41,41,41,41,32,40,40,65,32,
-58,57,51,52,32,40,40,66,32,95,49,54,54,52,41,32,40,95,52,49,
-50,32,40,40,83,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,
-32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,
-41,32,40,40,40,67,39,32,83,41,32,40,40,40,83,39,32,67,41,32,
-40,40,40,83,39,32,67,41,32,40,40,40,67,39,32,83,41,32,40,40,
-40,67,39,32,83,41,32,40,40,67,32,40,40,67,32,83,39,41,32,40,
-90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,
-41,41,32,40,90,32,75,41,41,41,32,40,90,32,40,90,32,95,57,50,
-54,41,41,41,41,32,40,90,32,95,57,50,54,41,41,41,32,40,90,32,
-40,90,32,75,41,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,
-40,90,32,40,90,32,75,41,41,41,41,41,32,40,90,32,40,90,32,40,
-90,32,75,41,41,41,41,41,32,75,41,41,32,40,40,40,67,39,32,95,
-49,54,56,52,41,32,95,57,50,54,41,32,40,95,49,54,53,57,32,75,
-41,41,41,41,41,41,32,40,40,65,32,58,57,51,53,32,40,40,66,32,
-85,41,32,40,40,66,32,40,66,32,95,57,51,54,41,41,32,95,57,51,
-55,41,41,41,32,40,40,65,32,58,57,51,54,32,40,40,40,83,39,32,
-83,41,32,85,41,32,40,40,66,32,90,41,32,40,40,66,32,90,41,32,
-40,40,40,67,39,32,66,41,32,40,40,66,32,95,49,54,56,52,41,32,
-40,40,67,32,95,49,54,57,48,41,32,40,95,49,54,53,57,32,34,119,
-104,101,114,101,34,41,41,41,41,32,40,40,66,32,40,95,49,54,54,53,
-32,35,50,41,41,32,40,40,66,32,95,49,54,54,52,41,32,40,95,52,
-49,50,32,95,57,52,54,41,41,41,41,41,41,41,41,32,40,40,65,32,
-58,57,51,55,32,40,40,40,83,39,32,83,41,32,40,40,66,32,40,67,
-32,83,41,41,32,40,40,66,32,40,66,32,40,67,32,66,41,41,41,32,
-40,40,40,67,39,32,40,83,39,32,40,67,39,32,67,41,41,41,32,40,
-40,66,32,40,66,32,40,66,32,40,67,32,67,39,41,41,41,41,32,40,
-40,40,67,39,32,66,41,32,40,40,66,32,67,41,32,40,40,66,32,40,
-67,32,67,39,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,
-95,49,54,57,48,41,32,40,95,49,54,57,48,32,40,95,49,54,53,57,
-32,75,41,41,41,41,32,95,57,51,57,41,41,41,41,32,40,90,32,75,
-41,41,41,41,32,40,90,32,75,41,41,41,41,41,32,40,40,66,32,40,
-66,32,95,49,54,54,52,41,41,32,40,40,66,32,95,52,49,50,41,32,
-95,57,51,56,41,41,41,41,32,40,40,65,32,58,57,51,56,32,40,40,
-66,32,85,41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,40,
-40,66,32,40,66,32,95,49,54,57,48,41,41,32,40,40,67,39,32,95,
-49,54,57,48,41,32,40,40,66,32,40,95,49,54,57,48,32,40,95,49,
-54,53,57,32,34,32,124,34,41,41,41,32,40,40,66,32,95,49,54,54,
-51,41,32,40,40,66,32,40,95,49,54,54,55,32,40,95,49,54,53,57,
-32,40,40,79,32,35,52,52,41,32,75,41,41,41,41,32,40,95,52,49,
-50,32,95,57,52,53,41,41,41,41,41,41,41,32,95,57,51,57,41,41,
-41,32,40,40,65,32,58,57,51,57,32,40,40,67,32,40,40,67,32,40,
-40,67,32,40,40,67,32,40,40,67,32,40,40,67,32,40,40,67,32,40,
-40,67,32,40,40,67,32,40,40,67,32,40,40,67,32,40,40,67,32,40,
-40,67,32,40,40,67,32,40,40,67,32,40,40,67,32,40,40,83,32,40,
-85,32,40,40,83,32,40,40,40,67,39,32,83,41,32,40,40,66,32,40,
-40,83,39,32,95,57,57,50,41,32,95,52,52,55,41,41,32,40,40,66,
-32,40,66,32,95,49,54,53,57,41,41,32,40,40,66,32,40,67,32,40,
-40,83,32,40,40,95,52,51,55,32,95,49,51,50,41,32,34,105,110,115,
-116,36,34,41,41,32,73,41,41,41,32,95,57,56,50,41,41,41,41,32,
-40,40,66,32,95,49,54,54,57,41,32,95,49,54,53,57,41,41,41,32,
-40,40,66,32,95,57,56,50,41,32,95,57,57,48,41,41,41,41,32,40,
-90,32,40,90,32,40,95,57,52,48,32,95,52,56,48,41,41,41,41,41,
-32,40,40,66,32,40,66,32,95,57,51,57,41,41,32,40,95,52,49,54,
-32,40,40,66,32,85,41,32,40,40,66,32,40,66,32,95,56,50,52,41,
-41,32,40,40,67,39,32,95,56,50,52,41,32,95,56,50,51,41,41,41,
-41,41,41,41,32,40,40,66,32,40,95,50,55,48,32,95,49,54,54,57,
-41,41,32,40,40,66,32,40,95,49,54,56,57,32,40,95,49,54,53,57,
-32,40,40,79,32,35,57,50,41,32,75,41,41,41,41,32,40,40,95,57,
-50,57,32,95,49,54,54,48,41,32,40,95,49,54,53,57,32,34,45,62,
-34,41,41,41,41,41,41,32,40,75,32,40,40,66,32,95,49,54,53,57,
-41,32,95,57,52,52,41,41,41,41,32,40,40,40,67,39,32,66,41,32,
-40,40,66,32,95,49,54,56,51,41,32,40,40,40,67,39,32,95,49,54,
-57,48,41,32,40,40,66,32,40,95,49,54,57,48,32,40,95,49,54,53,
-57,32,34,99,97,115,101,34,41,41,41,32,95,57,51,57,41,41,32,40,
-95,49,54,53,57,32,34,111,102,34,41,41,41,41,32,40,40,66,32,40,
-95,49,54,54,53,32,35,50,41,41,32,40,40,66,32,95,49,54,54,52,
-41,32,40,95,52,49,50,32,95,57,52,55,41,41,41,41,41,41,32,40,
-40,40,67,39,32,66,41,32,40,40,66,32,95,49,54,56,51,41,32,40,
-40,66,32,40,95,49,54,56,51,32,40,95,49,54,53,57,32,34,108,101,
-116,34,41,41,41,32,40,40,66,32,40,95,49,54,54,53,32,35,50,41,
-41,32,40,40,66,32,95,49,54,54,52,41,32,40,95,52,49,50,32,95,
-57,52,54,41,41,41,41,41,41,32,40,40,66,32,40,95,49,54,57,48,
-32,40,95,49,54,53,57,32,34,105,110,34,41,41,41,32,95,57,51,57,
-41,41,41,41,32,40,40,66,32,40,95,50,55,48,32,95,49,54,54,57,
-41,41,32,40,40,66,32,40,95,50,55,48,32,95,49,54,54,51,41,41,
-32,40,40,66,32,40,95,49,54,54,55,32,40,95,49,54,53,57,32,40,
-40,79,32,35,52,52,41,32,75,41,41,41,41,32,40,95,52,49,50,32,
-95,57,51,57,41,41,41,41,41,41,32,40,40,83,32,40,40,40,67,39,
-32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,
-41,32,40,40,67,32,40,40,40,67,39,32,83,39,41,32,40,85,32,40,
-95,57,53,49,32,95,57,51,57,41,41,41,32,40,90,32,75,41,41,41,
-32,75,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,
-32,40,90,32,40,90,32,75,41,41,41,41,32,95,57,52,50,41,41,41,
-32,40,40,40,67,39,32,66,41,32,40,40,66,32,95,49,54,56,51,41,
-32,40,40,95,52,57,50,32,40,95,49,54,53,57,32,34,100,111,34,41,
-41,32,40,40,40,67,39,32,95,49,54,56,57,41,32,95,57,56,53,41,
-32,40,95,49,54,53,57,32,34,46,100,111,34,41,41,41,41,41,32,40,
-40,66,32,40,95,49,54,54,53,32,35,50,41,41,32,40,40,66,32,95,
-49,54,54,52,41,32,40,95,52,49,50,32,95,57,52,53,41,41,41,41,
-41,41,32,40,40,66,32,40,66,32,40,95,50,55,48,32,95,49,54,54,
-57,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,95,49,
-54,57,48,41,32,95,57,51,57,41,41,32,95,57,56,53,41,41,41,41,
-32,40,40,66,32,40,66,32,40,95,50,55,48,32,95,49,54,54,57,41,
-41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,95,49,54,57,
-48,41,32,95,57,56,53,41,41,32,95,57,51,57,41,41,41,41,32,40,
-40,66,32,40,66,32,40,66,32,40,95,50,55,48,32,95,49,54,54,57,
-41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,95,49,54,57,52,
-41,41,41,32,40,40,40,67,39,32,66,41,32,40,66,39,32,40,40,66,
-32,79,41,32,40,40,66,32,40,95,49,54,57,48,32,40,95,49,54,53,
-57,32,34,105,102,34,41,41,41,32,95,57,51,57,41,41,41,41,32,40,
-40,40,67,39,32,66,41,32,40,40,66,32,79,41,32,40,40,66,32,40,
-95,49,54,57,48,32,40,95,49,54,53,57,32,34,116,104,101,110,34,41,
-41,41,32,95,57,51,57,41,41,41,32,40,40,40,67,39,32,79,41,32,
-40,40,66,32,40,95,49,54,57,48,32,40,95,49,54,53,57,32,34,101,
-108,115,101,34,41,41,41,32,95,57,51,57,41,41,32,75,41,41,41,41,
-41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,95,49,54,
-57,48,41,32,40,40,40,67,39,32,95,49,54,57,48,41,32,95,57,51,
-57,41,32,40,95,49,54,53,57,32,34,58,58,34,41,41,41,41,32,95,
-57,52,57,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,
-95,49,54,56,57,41,32,40,40,40,67,39,32,95,49,54,56,57,41,32,
-95,57,56,53,41,32,40,95,49,54,53,57,32,40,40,79,32,35,54,52,
-41,32,75,41,41,41,41,41,32,95,57,51,57,41,41,41,32,40,40,66,
-32,95,49,54,53,57,41,32,40,40,66,32,40,95,52,56,50,32,40,40,
-79,32,35,57,55,41,32,75,41,41,41,32,40,95,49,55,49,52,32,95,
-50,57,55,41,41,41,41,41,32,95,57,52,51,41,41,32,40,40,40,67,
-39,32,66,41,32,40,40,66,32,95,49,54,57,48,41,32,95,57,52,49,
-41,41,32,95,57,52,57,41,41,41,32,40,40,65,32,58,57,52,48,32,
-40,40,40,83,39,32,83,41,32,40,40,40,67,39,32,40,67,39,32,83,
-41,41,32,40,40,40,67,39,32,40,67,39,32,83,41,41,32,40,40,40,
-67,39,32,40,67,39,32,83,41,41,32,40,40,40,67,39,32,40,67,39,
-32,83,41,41,32,40,40,40,67,39,32,40,67,39,32,83,41,41,32,40,
-40,40,67,39,32,40,67,39,32,83,41,41,32,40,40,40,67,39,32,40,
-67,39,32,83,41,41,32,40,40,40,67,39,32,40,67,39,32,83,41,41,
-32,40,40,40,67,39,32,40,67,39,32,83,41,41,32,40,40,40,67,39,
-32,40,67,39,32,83,41,41,32,40,40,40,67,39,32,40,67,39,32,83,
-41,41,32,40,40,40,67,39,32,40,67,39,32,83,41,41,32,40,40,40,
-67,39,32,40,67,39,32,83,41,41,32,40,40,40,67,39,32,40,67,39,
-32,83,41,41,32,40,40,40,67,39,32,40,67,39,32,83,41,41,32,40,
-40,40,67,39,32,40,67,39,32,83,41,41,32,40,40,40,83,39,32,67,
-41,32,40,40,66,32,40,67,32,67,39,41,41,32,40,40,40,67,39,32,
-40,67,39,32,66,41,41,32,40,40,40,67,39,32,40,67,39,32,83,41,
-41,32,40,40,40,83,39,32,66,41,32,40,40,66,32,40,83,39,32,83,
-41,41,32,40,40,66,32,40,66,32,40,40,67,39,32,83,41,32,95,57,
-57,50,41,41,41,32,40,40,40,67,39,32,66,41,32,83,41,32,40,40,
-66,32,40,40,83,39,32,66,41,32,80,41,41,32,40,40,40,67,39,32,
-66,41,32,40,40,66,32,40,67,39,32,40,67,39,32,80,41,41,41,32,
-40,40,66,32,40,66,32,40,66,32,40,95,50,55,48,32,95,49,54,54,
-57,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,
-40,40,66,32,40,66,32,95,49,54,57,48,41,41,32,40,40,66,32,40,
-40,67,39,32,95,49,54,57,48,41,32,95,57,51,57,41,41,32,95,49,
-54,53,57,41,41,41,32,95,57,51,57,41,41,41,41,32,40,90,32,75,
-41,41,41,41,41,41,41,32,40,40,40,83,39,32,66,41,32,40,40,66,
-32,40,83,39,32,83,41,41,32,40,40,66,32,40,66,32,40,40,67,39,
-32,83,41,32,95,57,57,50,41,41,41,32,40,40,40,67,39,32,66,41,
-32,83,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,67,39,
-32,80,41,41,32,40,40,66,32,40,66,32,40,95,50,55,48,32,95,49,
-54,54,57,41,41,41,32,40,40,66,32,40,40,67,39,32,95,49,54,57,
-48,41,32,95,57,51,57,41,41,32,95,49,54,53,57,41,41,41,41,32,
-40,90,32,75,41,41,41,41,41,41,32,40,40,40,83,39,32,40,67,39,
-32,40,67,39,32,67,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
-40,67,32,40,40,67,32,40,95,50,49,49,32,95,49,51,50,41,41,32,
-35,52,52,41,41,41,41,41,32,40,40,66,32,67,41,32,40,40,66,32,
-40,40,67,39,32,83,41,32,40,40,67,32,40,95,50,49,49,32,95,49,
-51,52,41,41,32,34,91,93,34,41,41,41,32,40,40,40,83,39,32,67,
-41,32,40,40,40,67,39,32,40,95,50,49,49,32,95,50,57,53,41,41,
-32,95,52,50,56,41,32,35,49,41,41,32,40,40,66,32,95,57,51,57,
-41,32,40,40,66,32,95,56,51,49,41,32,95,56,52,54,41,41,41,41,
-41,41,41,32,40,40,66,32,95,57,51,57,41,32,95,56,51,48,41,41,
-41,41,41,32,95,52,52,55,41,41,32,40,40,66,32,95,57,56,50,41,
-32,95,57,57,48,41,41,41,41,32,40,40,66,32,40,67,39,32,95,57,
-52,48,41,41,32,40,67,32,95,52,56,49,41,41,41,41,32,40,90,32,
-75,41,41,41,32,75,41,41,32,40,90,32,75,41,41,41,32,40,90,32,
-75,41,41,41,32,40,90,32,75,41,41,41,32,75,41,41,32,75,41,41,
-32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,
-75,41,41,41,32,40,90,32,40,90,32,75,41,41,41,41,32,40,90,32,
-75,41,41,41,32,40,90,32,75,41,41,41,32,75,41,41,32,75,41,41,
-32,40,90,32,75,41,41,41,32,40,40,66,32,40,66,32,40,95,50,55,
-48,32,95,49,54,54,57,41,41,41,32,40,40,66,32,40,66,32,95,49,
-54,54,51,41,41,32,40,40,66,32,40,66,32,40,95,52,49,50,32,95,
-57,51,57,41,41,41,32,40,67,32,95,52,56,49,41,41,41,41,41,41,
-32,40,40,65,32,58,57,52,49,32,40,40,40,67,39,32,95,49,54,57,
-48,41,32,40,40,66,32,40,95,49,54,57,48,32,40,95,49,54,53,57,
-32,34,102,111,114,97,108,108,34,41,41,41,32,40,40,66,32,95,49,54,
-54,51,41,32,40,95,52,49,50,32,95,57,51,51,41,41,41,41,32,40,
-95,49,54,53,57,32,40,40,79,32,35,52,54,41,32,75,41,41,41,41,
-32,40,40,65,32,58,57,52,50,32,40,75,32,40,95,49,54,53,57,32,
-34,60,60,76,105,115,116,105,115,104,62,62,34,41,41,41,32,40,40,65,
-32,58,57,52,51,32,40,40,67,32,40,40,80,32,40,75,32,95,57,56,
-53,41,41,32,95,57,56,53,41,41,32,40,75,32,40,40,66,32,95,49,
-54,53,57,41,32,95,57,52,52,41,41,41,41,32,40,40,65,32,58,57,
-52,52,32,40,40,67,32,40,40,67,32,40,40,67,32,40,40,67,32,40,
-40,67,32,40,40,67,32,40,40,80,32,40,40,66,32,40,95,52,56,49,
-32,35,51,53,41,41,32,40,95,49,55,49,52,32,95,50,57,55,41,41,
-41,32,40,40,66,32,40,95,52,56,49,32,35,51,53,41,41,32,40,40,
-66,32,40,95,52,56,49,32,35,51,53,41,41,32,40,95,49,55,49,52,
-32,95,51,50,49,41,41,41,41,41,32,40,40,66,32,40,95,52,56,49,
-32,35,51,56,41,41,32,40,95,49,55,49,52,32,95,49,53,54,41,41,
-41,41,32,40,40,66,32,40,95,52,56,49,32,35,51,55,41,41,32,40,
-95,49,55,49,52,32,40,95,53,53,49,32,95,51,50,49,41,41,41,41,
-41,32,40,95,49,55,49,52,32,95,49,53,48,41,41,41,32,40,95,49,
-55,49,52,32,40,95,52,48,53,32,95,49,53,48,41,41,41,41,32,73,
-41,41,32,40,95,52,56,49,32,35,57,52,41,41,41,32,40,40,65,32,
-58,57,52,53,32,40,40,67,32,40,40,80,32,40,40,40,67,39,32,66,
-41,32,40,40,66,32,95,49,54,57,48,41,32,40,40,40,67,39,32,95,
-49,54,57,48,41,32,95,57,52,56,41,32,40,95,49,54,53,57,32,34,
-60,45,34,41,41,41,41,32,95,57,51,57,41,41,32,95,57,51,57,41,
-41,32,40,40,66,32,40,95,49,54,56,51,32,40,95,49,54,53,57,32,
-34,108,101,116,34,41,41,41,32,40,40,66,32,40,95,49,54,54,53,32,
-35,50,41,41,32,40,40,66,32,95,49,54,54,52,41,32,40,95,52,49,
-50,32,95,57,52,54,41,41,41,41,41,41,32,40,40,65,32,58,57,52,
-54,32,40,40,67,32,40,40,80,32,40,40,66,32,40,66,32,95,57,50,
-54,41,41,32,95,56,49,49,41,41,32,40,40,40,67,39,32,66,41,32,
-40,40,66,32,95,49,54,57,48,41,32,40,40,40,67,39,32,95,49,54,
-57,48,41,32,95,57,52,56,41,32,40,95,49,54,53,57,32,40,40,79,
-32,35,54,49,41,32,75,41,41,41,41,41,32,95,57,51,57,41,41,41,
-32,40,40,40,67,39,32,66,41,32,40,40,66,32,95,49,54,57,48,41,
-32,40,40,40,67,39,32,95,49,54,57,48,41,32,95,57,56,53,41,32,
-40,95,49,54,53,57,32,34,58,58,34,41,41,41,41,32,95,57,52,57,
-41,41,41,32,40,40,65,32,58,57,52,55,32,40,85,32,40,40,40,67,
-39,32,66,41,32,40,40,66,32,95,49,54,56,57,41,32,95,57,52,56,
-41,41,32,40,95,57,51,53,32,40,95,49,54,53,57,32,34,45,62,34,
-41,41,41,41,41,32,40,40,65,32,58,57,52,56,32,95,57,51,57,41,
-32,40,40,65,32,58,57,52,57,32,95,57,51,57,41,32,40,40,65,32,
-58,57,53,48,32,95,57,52,57,41,32,40,40,65,32,58,57,53,49,32,
-40,40,66,32,40,66,32,40,95,50,55,48,32,95,49,54,55,49,41,41,
-41,32,40,40,66,32,40,66,32,40,95,50,55,48,32,95,49,54,54,51,
-41,41,41,32,40,40,66,32,40,66,32,40,95,49,54,54,55,32,40,95,
-49,54,53,57,32,40,40,79,32,35,52,52,41,32,75,41,41,41,41,41,
-32,95,52,49,50,41,41,41,41,32,40,40,65,32,58,57,53,50,32,40,
-40,67,32,40,40,80,32,40,90,32,40,40,67,32,79,41,32,75,41,41,
-41,32,40,90,32,95,56,55,52,41,41,41,32,40,75,32,40,75,32,95,
-52,56,48,41,41,41,41,32,40,40,65,32,58,57,53,51,32,40,95,52,
-49,49,32,95,57,53,50,41,41,32,40,40,65,32,58,57,53,52,32,80,
-41,32,40,40,65,32,58,57,53,53,32,40,40,66,32,90,41,32,85,41,
-41,32,40,40,65,32,58,57,53,54,32,40,90,32,85,41,41,32,40,40,
-65,32,58,57,53,55,32,40,40,66,32,40,66,32,40,95,52,49,50,32,
-40,40,80,32,40,85,32,40,90,32,40,90,32,95,57,53,53,41,41,41,
-41,32,40,40,66,32,95,57,53,54,41,32,40,95,52,49,49,32,40,85,
-32,40,90,32,40,90,32,40,40,67,32,79,41,32,75,41,41,41,41,41,
-41,41,41,41,41,32,95,57,53,56,41,41,32,40,40,65,32,58,57,53,
-56,32,40,40,66,32,40,83,32,40,85,32,95,52,56,48,41,41,41,32,
-40,40,66,32,90,41,32,40,40,66,32,90,41,32,40,40,66,32,40,66,
-32,40,40,40,83,39,32,40,67,32,40,40,40,67,39,32,40,83,39,32,
-95,52,49,50,41,41,32,40,40,66,32,40,66,32,40,83,32,73,41,41,
-41,32,40,40,40,83,39,32,40,67,39,32,66,41,41,32,40,40,66,32,
-40,66,32,40,67,39,32,80,41,41,41,32,40,40,40,83,39,32,40,67,
-39,32,83,41,41,32,40,40,66,32,40,40,67,39,32,83,41,32,40,40,
-66,32,40,83,32,40,95,52,53,51,32,40,95,50,49,49,32,95,50,57,
-53,41,41,41,41,32,95,51,49,49,41,41,41,32,40,66,32,95,57,53,
-53,41,41,41,32,40,40,66,32,40,66,32,95,57,53,54,41,41,32,40,
-40,67,32,40,67,39,32,79,41,41,32,75,41,41,41,41,41,32,40,40,
-66,32,90,41,32,40,40,66,32,90,41,32,40,40,66,32,40,66,32,95,
-57,53,54,41,41,32,40,40,40,67,39,32,67,41,32,40,40,66,32,89,
-41,32,40,40,66,32,40,66,32,40,67,32,66,41,41,41,32,40,40,40,
-67,39,32,66,41,32,40,66,39,32,40,40,66,32,40,67,39,32,66,41,
-41,32,40,66,32,95,52,56,49,41,41,41,41,32,95,52,49,52,41,41,
-41,41,32,95,52,56,48,41,41,41,41,41,41,41,32,95,57,55,48,41,
-41,41,32,40,85,32,75,41,41,32,40,85,32,65,41,41,41,41,32,95,
-57,54,52,41,41,41,41,41,32,40,40,65,32,58,57,53,57,32,95,51,
-49,48,41,32,40,40,65,32,58,57,54,48,32,40,40,40,83,39,32,95,
-52,49,49,41,32,40,40,66,32,40,40,83,39,32,95,52,49,49,41,32,
-40,40,40,67,39,32,40,67,39,32,79,41,41,32,80,41,32,75,41,41,
-41,32,95,51,49,49,41,41,32,95,57,53,57,41,41,32,40,40,65,32,
-58,57,54,49,32,40,40,66,32,40,95,52,49,52,32,40,85,32,40,40,
-40,67,39,32,66,41,32,40,95,51,49,50,32,95,52,56,50,41,41,32,
-40,40,67,32,79,41,32,75,41,41,41,41,41,32,40,40,66,32,95,51,
-48,55,41,32,40,40,67,32,95,52,50,57,41,32,40,95,52,54,54,32,
-95,52,56,48,41,41,41,41,41,32,40,40,65,32,58,57,54,50,32,40,
-40,40,83,39,32,95,57,54,49,41,32,95,57,53,57,41,32,95,57,54,
-51,41,41,32,40,40,65,32,58,57,54,51,32,40,40,66,32,40,95,52,
-49,49,32,40,85,32,40,40,40,67,39,32,40,67,39,32,79,41,41,32,
-40,67,32,80,41,41,32,75,41,41,41,41,32,95,57,54,48,41,41,32,
-40,40,65,32,58,57,54,52,32,40,40,40,83,39,32,83,41,32,40,40,
-40,67,39,32,40,67,39,32,40,83,39,32,80,41,41,41,32,40,40,66,
-32,40,66,32,40,66,32,95,51,48,55,41,41,41,32,40,40,40,67,39,
-32,40,67,39,32,40,83,39,32,95,52,49,49,41,41,41,32,40,40,66,
-32,40,66,32,40,66,32,85,41,41,41,32,40,40,66,32,40,66,32,40,
-66,32,40,66,32,85,41,41,41,41,32,40,40,66,32,40,66,32,40,66,
-32,90,41,41,41,32,40,40,66,32,40,66,32,40,66,32,90,41,41,41,
-32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,
-67,39,32,79,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
-40,40,67,39,32,66,41,32,80,41,41,41,41,32,40,40,66,32,40,66,
-32,40,66,32,95,52,57,54,41,41,41,32,40,40,40,67,39,32,66,41,
-32,40,40,66,32,40,67,39,32,67,41,41,32,40,40,40,67,39,32,40,
-67,39,32,40,67,39,32,89,41,41,41,32,40,40,40,67,39,32,40,67,
-39,32,40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,41,41,41,
-32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,40,83,39,32,83,
-41,32,40,95,53,50,57,32,95,50,57,54,41,41,41,41,41,41,32,40,
-40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,83,39,
-32,83,41,41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,
-32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,83,41,41,
-41,41,41,32,40,40,40,83,39,32,40,83,39,32,40,83,39,32,66,41,
-41,41,32,40,40,66,32,40,66,32,40,66,32,40,67,39,32,40,83,39,
-32,83,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,
-41,32,40,40,66,32,66,39,41,32,40,40,66,32,66,39,41,32,40,66,
-32,67,41,41,41,41,32,40,40,67,32,67,39,41,32,40,40,67,32,40,
-95,53,48,57,32,95,50,57,49,41,41,32,35,49,41,41,41,41,41,32,
-40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,83,
-39,32,67,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,66,
-41,41,32,40,40,66,32,66,39,41,32,40,40,66,32,66,39,41,32,40,
-40,66,32,40,66,32,67,41,41,32,67,41,41,41,41,32,40,40,67,32,
-40,67,39,32,66,41,41,32,40,40,67,32,40,95,53,49,48,32,95,50,
-57,49,41,41,32,35,49,41,41,41,41,32,95,52,57,57,41,41,41,41,
-32,40,40,66,32,95,51,49,49,41,32,40,40,66,32,95,51,48,55,41,
-32,40,95,52,49,49,32,40,85,32,40,40,66,32,85,41,32,40,90,32,
-40,40,66,32,90,41,32,40,40,40,67,39,32,40,67,39,32,79,41,41,
-32,80,41,32,75,41,41,41,41,41,41,41,41,41,41,32,40,40,40,83,
-39,32,66,41,32,40,95,53,48,57,32,95,50,57,49,41,41,32,40,40,
-40,67,39,32,40,67,39,32,40,95,51,56,48,32,95,50,57,50,41,41,
-41,32,40,67,32,40,95,53,49,48,32,95,50,57,49,41,41,41,32,40,
-40,95,53,49,53,32,95,50,57,49,41,32,40,95,51,55,51,32,35,50,
-41,41,41,41,41,41,41,32,95,52,57,56,41,41,32,35,48,41,41,41,
-32,40,40,40,67,39,32,40,95,53,49,48,32,95,50,57,49,41,41,32,
-95,52,50,56,41,32,35,49,41,41,41,41,41,32,75,41,41,41,41,41,
-41,32,73,41,41,41,32,40,40,66,32,95,51,49,49,41,32,95,51,48,
-55,41,41,41,32,40,40,66,32,40,66,32,40,95,52,50,57,32,40,40,
-95,49,57,51,32,95,50,48,55,41,32,40,40,95,53,49,53,32,95,50,
-57,49,41,32,40,95,51,55,51,32,35,48,41,41,41,41,41,41,32,40,
-40,66,32,95,52,55,51,41,32,40,40,66,32,40,67,32,66,41,41,32,
-40,40,66,32,90,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,
-66,32,40,67,32,66,41,41,32,40,40,66,32,90,41,32,40,66,32,90,
-41,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,57,54,53,32,
-40,40,83,32,95,57,54,54,41,32,95,57,53,57,41,41,32,40,40,65,
-32,58,57,54,54,32,40,40,66,32,40,66,32,40,95,50,55,48,32,95,
-53,57,57,41,41,41,32,40,40,40,67,39,32,89,41,32,40,40,66,32,
-40,66,32,40,40,83,39,32,80,41,32,40,40,67,32,80,41,32,95,52,
-56,48,41,41,41,41,32,40,40,40,67,39,32,40,83,39,32,40,83,39,
-32,67,41,41,41,32,40,40,66,32,40,66,32,40,40,83,39,32,40,83,
-39,32,83,39,41,41,32,40,67,32,95,51,49,53,41,41,41,41,32,40,
-40,66,32,40,40,83,39,32,66,41,32,40,40,66,32,83,41,32,40,40,
-66,32,40,40,67,39,32,67,39,41,32,40,40,66,32,40,83,39,32,40,
-40,83,39,32,80,41,32,40,85,32,75,41,41,41,41,32,40,40,40,67,
-39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,95,52,56,
-49,41,41,32,40,40,40,67,39,32,66,41,32,95,57,53,52,41,32,40,
-85,32,65,41,41,41,41,32,40,85,32,65,41,41,41,41,41,32,40,40,
-67,32,67,39,41,32,40,85,32,75,41,41,41,41,41,41,32,40,40,66,
-32,40,67,32,40,40,40,67,39,32,67,39,41,32,83,39,41,32,40,67,
-32,95,51,49,54,41,41,41,41,32,95,51,49,49,41,41,41,41,32,73,
-41,41,41,32,95,51,49,52,41,41,41,32,40,40,65,32,58,57,54,55,
-32,40,85,32,40,40,66,32,40,40,67,39,32,95,50,55,50,41,32,95,
-57,54,56,41,41,32,95,52,56,49,41,41,41,32,40,40,65,32,58,57,
-54,56,32,40,40,66,32,40,95,50,55,48,32,40,40,95,52,49,52,32,
-95,50,55,50,41,32,95,50,55,51,41,41,41,32,40,95,52,49,50,32,
-95,57,54,55,41,41,41,32,40,40,65,32,58,57,54,57,32,40,40,40,
-67,39,32,95,57,54,56,41,32,95,57,54,53,41,32,95,52,56,48,41,
-41,32,40,40,65,32,58,57,55,48,32,40,40,83,32,95,57,54,54,41,
-32,40,40,66,32,95,52,52,50,41,32,40,40,66,32,95,57,54,57,41,
-32,95,57,54,50,41,41,41,41,32,40,40,65,32,58,57,55,49,32,40,
-40,40,83,39,32,66,41,32,40,66,39,32,115,101,113,41,41,32,40,40,
-66,32,40,40,83,39,32,66,41,32,115,101,113,41,41,32,40,40,66,32,
-40,66,32,40,83,32,115,101,113,41,41,41,32,40,40,66,32,40,66,32,
-67,41,41,32,80,41,41,41,41,41,32,40,40,65,32,58,57,55,50,32,
-40,40,40,95,49,55,49,50,32,40,95,49,55,49,54,32,95,57,55,50,
-41,41,32,40,85,32,40,40,40,67,39,32,66,41,32,40,66,39,32,40,
-40,66,32,95,52,56,50,41,32,40,95,49,55,49,52,32,40,95,52,48,
-53,32,95,49,53,48,41,41,41,41,41,32,40,40,66,32,40,66,32,40,
-95,52,56,50,32,40,40,79,32,35,52,52,41,32,75,41,41,41,41,32,
-40,40,40,67,39,32,66,41,32,40,40,66,32,95,52,56,50,41,32,40,
-95,49,55,49,52,32,95,50,57,55,41,41,41,32,40,40,66,32,40,95,
-52,56,50,32,40,40,79,32,35,53,56,41,32,75,41,41,41,32,40,95,
-49,55,49,52,32,95,50,57,55,41,41,41,41,41,41,41,32,40,95,49,
-55,49,56,32,95,57,55,50,41,41,41,32,40,40,65,32,58,57,55,51,
-32,40,40,40,83,39,32,66,41,32,115,101,113,41,32,80,41,41,32,40,
-40,65,32,58,57,55,52,32,40,40,95,50,49,48,32,40,40,67,32,66,
-41,32,40,90,32,40,40,67,32,66,41,32,40,90,32,40,95,50,49,49,
-32,95,49,51,52,41,41,41,41,41,41,32,40,95,50,49,52,32,95,57,
-55,52,41,41,41,32,40,40,65,32,58,57,55,53,32,40,40,40,40,40,
-40,40,40,95,53,50,52,32,95,57,55,52,41,32,40,40,67,32,66,41,
-32,40,90,32,40,40,67,32,66,41,32,40,90,32,40,95,53,50,54,32,
-95,49,51,53,41,41,41,41,41,41,32,40,40,67,32,66,41,32,40,90,
-32,40,40,67,32,66,41,32,40,90,32,40,95,53,50,55,32,95,49,51,
-53,41,41,41,41,41,41,32,40,40,67,32,66,41,32,40,90,32,40,40,
-67,32,66,41,32,40,90,32,40,95,53,50,56,32,95,49,51,53,41,41,
-41,41,41,41,32,40,40,67,32,66,41,32,40,90,32,40,40,67,32,66,
-41,32,40,90,32,40,95,53,50,57,32,95,49,51,53,41,41,41,41,41,
-41,32,40,40,67,32,66,41,32,40,90,32,40,40,67,32,66,41,32,40,
-90,32,40,95,53,51,48,32,95,49,51,53,41,41,41,41,41,41,32,40,
-95,53,51,56,32,95,57,55,53,41,41,32,40,95,53,51,57,32,95,57,
-55,53,41,41,41,32,40,40,65,32,58,57,55,54,32,40,40,40,95,49,
-55,49,50,32,40,95,49,55,49,54,32,95,57,55,54,41,41,32,95,57,
-56,52,41,32,40,95,49,55,49,56,32,95,57,55,54,41,41,41,32,40,
-40,65,32,58,57,55,55,32,40,40,40,95,57,55,49,32,75,41,32,35,
-48,41,32,35,48,41,41,32,40,40,65,32,58,57,55,56,32,40,85,32,
-40,75,32,40,40,40,67,39,32,66,41,32,40,40,67,32,40,40,67,32,
-61,61,41,32,35,48,41,41,32,95,49,50,53,41,41,32,40,40,67,32,
-40,40,67,32,40,40,67,32,61,61,41,32,35,48,41,41,32,95,49,50,
-53,41,41,32,95,49,50,54,41,41,41,41,41,32,40,40,65,32,58,57,
-55,57,32,40,95,57,55,51,32,95,57,55,55,41,41,32,40,40,65,32,
-58,57,56,48,32,95,57,55,51,41,32,40,40,65,32,58,57,56,49,32,
-40,40,66,32,40,67,32,66,41,41,32,40,40,66,32,40,67,39,32,40,
-67,39,32,95,57,55,51,41,41,41,32,95,57,55,49,41,41,41,32,40,
-40,65,32,58,57,56,50,32,40,85,32,65,41,41,32,40,40,65,32,58,
-57,56,51,32,40,40,66,32,85,41,32,40,90,32,95,57,55,51,41,41,
-41,32,40,40,65,32,58,57,56,52,32,40,85,32,65,41,41,32,40,40,
-65,32,58,57,56,53,32,40,85,32,40,75,32,95,49,54,53,57,41,41,
-41,32,40,40,65,32,58,57,56,54,32,40,40,66,32,85,41,32,40,90,
-32,40,95,50,49,49,32,95,49,51,52,41,41,41,41,32,40,40,65,32,
-58,57,56,55,32,40,75,32,40,40,67,32,66,41,32,40,90,32,40,40,
-67,32,66,41,32,40,40,66,32,40,40,67,39,32,66,41,32,95,57,55,
-51,41,41,32,40,40,40,67,39,32,66,41,32,95,52,56,50,41,32,40,
-95,52,56,50,32,40,40,79,32,35,52,54,41,32,75,41,41,41,41,41,
-41,41,41,41,32,40,40,65,32,58,57,56,56,32,40,40,67,32,66,41,
-32,40,40,66,32,40,40,67,39,32,66,41,32,95,57,55,51,41,41,32,
-40,67,32,95,52,56,50,41,41,41,41,32,40,40,65,32,58,57,56,57,
-32,40,75,32,40,89,32,40,40,66,32,40,83,32,40,85,32,75,41,41,
-41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,40,83,
-39,32,67,41,32,40,67,32,95,57,57,51,41,41,41,32,40,40,66,32,
-40,67,32,40,40,83,32,40,95,52,52,52,32,40,40,67,32,40,95,50,
-49,50,32,95,49,51,50,41,41,32,35,52,54,41,41,41,32,73,41,41,
-41,32,40,40,67,39,32,66,41,32,40,40,67,32,40,40,67,32,61,61,
-41,32,35,52,54,41,41,32,95,50,54,41,41,41,41,41,41,41,41,41,
-32,40,40,65,32,58,57,57,48,32,40,85,32,40,40,40,67,39,32,66,
-41,32,95,57,55,51,41,32,40,95,57,56,57,32,95,54,55,51,41,41,
-41,41,32,40,40,65,32,58,57,57,49,32,40,85,32,40,75,32,40,40,
-40,83,39,32,40,40,83,39,32,95,49,50,49,41,32,95,49,52,48,41,
-41,32,40,40,66,32,40,40,83,39,32,95,49,50,49,41,32,40,40,67,
-32,40,95,50,49,49,32,95,49,51,50,41,41,32,35,53,56,41,41,41,
-32,40,40,66,32,40,40,67,39,32,95,49,50,49,41,32,40,40,67,32,
-40,95,50,49,49,32,95,49,51,50,41,41,32,35,52,52,41,41,41,32,
-40,40,40,83,39,32,95,49,50,49,41,32,40,40,67,32,40,95,50,49,
-49,32,95,49,51,52,41,41,32,34,91,93,34,41,41,32,40,40,67,32,
-40,95,50,49,49,32,95,49,51,52,41,41,32,34,40,41,34,41,41,41,
-41,41,32,95,52,52,55,41,41,41,41,32,40,40,65,32,58,57,57,50,
-32,40,40,67,32,40,95,52,53,49,32,95,49,51,50,41,41,32,34,64,
-92,57,50,38,61,43,45,58,60,62,46,33,35,36,37,94,38,42,47,124,
-126,63,34,41,41,32,40,40,65,32,58,57,57,51,32,40,40,40,83,39,
-32,95,49,50,49,41,32,95,57,57,52,41,32,40,40,40,83,39,32,95,
-49,50,49,41,32,95,49,52,48,41,32,40,40,40,83,39,32,95,49,50,
-49,41,32,95,49,52,50,41,32,40,40,67,32,40,95,50,49,49,32,95,
-49,51,50,41,41,32,35,51,57,41,41,41,41,41,32,40,40,65,32,58,
-57,57,52,32,40,40,40,83,39,32,95,49,50,49,41,32,95,49,51,57,
-41,32,40,40,67,32,40,95,50,49,49,32,95,49,51,50,41,41,32,35,
-57,53,41,41,41,32,40,40,65,32,58,57,57,53,32,40,95,57,55,57,
-32,40,40,79,32,35,57,53,41,32,75,41,41,41,32,40,40,65,32,58,
-57,57,54,32,40,85,32,40,75,32,40,40,80,32,95,49,50,53,41,32,
-40,40,40,67,39,32,66,41,32,40,40,67,32,40,40,67,32,61,61,41,
-32,35,57,53,41,41,32,95,49,50,53,41,41,32,40,40,80,32,95,49,
-50,54,41,32,40,75,32,40,75,32,95,49,50,53,41,41,41,41,41,41,
-41,41,32,40,40,65,32,58,57,57,55,32,40,85,32,40,40,67,32,40,
-40,40,83,39,32,67,39,41,32,40,40,66,32,67,39,41,32,95,52,48,
-57,41,41,32,40,40,40,67,39,32,66,41,32,40,66,39,32,40,40,66,
-32,95,52,56,50,41,32,40,95,49,55,49,52,32,40,95,52,48,53,32,
-95,49,53,48,41,41,41,41,41,32,40,40,40,67,39,32,67,41,32,40,
-40,83,32,40,40,40,67,39,32,83,39,41,32,40,40,66,32,95,49,50,
-50,41,32,40,40,67,32,40,95,50,49,49,32,95,50,57,53,41,41,32,
-35,48,41,41,41,32,40,40,67,32,40,95,50,49,49,32,95,50,57,53,
-41,41,32,35,48,41,41,41,32,40,40,66,32,40,66,32,40,95,52,56,
-50,32,34,58,32,108,105,110,101,32,34,41,41,41,32,40,40,40,67,39,
-32,66,41,32,40,40,66,32,95,52,56,50,41,32,40,95,49,55,49,52,
-32,95,50,57,55,41,41,41,32,40,40,66,32,40,95,52,56,50,32,34,
-44,32,99,111,108,32,34,41,41,32,40,95,49,55,49,52,32,95,50,57,
-55,41,41,41,41,41,41,32,75,41,41,41,41,32,34,110,111,32,108,111,
-99,97,116,105,111,110,34,41,41,41,32,40,40,65,32,58,57,57,56,32,
-40,90,32,75,41,41,32,40,40,65,32,58,57,57,57,32,40,40,66,32,
-90,41,32,40,40,66,32,40,66,32,90,41,41,32,80,41,41,41,32,40,
-40,65,32,58,49,48,48,48,32,40,40,66,32,40,66,32,40,66,32,40,
-66,32,90,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,
-32,90,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,
-67,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,67,41,41,41,
-32,40,40,66,32,40,66,32,67,41,41,32,80,41,41,41,41,41,41,32,
-40,40,65,32,58,49,48,48,49,32,95,57,57,56,41,32,40,40,65,32,
-58,49,48,48,50,32,95,57,57,57,41,32,40,40,65,32,58,49,48,48,
-51,32,40,40,95,50,55,50,32,40,95,52,49,50,32,95,53,57,57,41,
-41,32,95,49,48,48,53,41,41,32,40,40,65,32,58,49,48,48,52,32,
-40,40,95,50,55,50,32,40,95,52,49,50,32,95,53,57,56,41,41,32,
-95,49,48,48,53,41,41,32,40,40,65,32,58,49,48,48,53,32,40,40,
-67,32,40,89,32,40,40,66,32,40,40,67,39,32,83,41,32,40,40,67,
-32,83,41,32,40,40,67,39,32,40,67,39,32,95,52,56,49,41,41,32,
-80,41,41,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,40,
-83,39,32,66,41,32,40,40,66,32,40,67,39,32,66,41,41,32,40,40,
-66,32,66,39,41,32,66,39,41,41,41,32,40,40,66,32,40,66,32,40,
-40,67,39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,95,
-52,56,49,41,41,32,80,41,41,41,41,32,67,41,41,41,41,41,41,32,
-95,52,56,48,41,41,32,40,40,65,32,58,49,48,48,54,32,40,95,49,
-48,48,55,32,95,50,55,52,41,41,32,40,40,65,32,58,49,48,48,55,
-32,40,40,40,67,39,32,95,52,49,52,41,32,40,40,66,32,95,50,55,
-55,41,32,95,49,48,49,50,41,41,32,95,49,48,48,49,41,41,32,40,
-40,65,32,58,49,48,48,56,32,40,40,67,32,40,40,80,32,35,48,41,
-32,40,75,32,40,75,32,35,49,41,41,41,41,32,40,75,32,40,90,32,
-40,90,32,75,41,41,41,41,41,32,40,40,65,32,58,49,48,48,57,32,
-40,40,40,83,39,32,40,83,39,32,40,83,39,32,83,41,41,41,32,40,
-40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,83,41,41,
-41,41,32,40,40,67,32,40,40,40,67,39,32,67,39,41,32,40,40,66,
-32,67,39,41,32,40,40,66,32,67,39,41,32,83,39,41,41,41,32,40,
-40,40,67,39,32,40,67,39,32,67,41,41,32,40,40,40,67,39,32,40,
-67,39,32,40,67,39,32,83,39,41,41,41,32,40,40,66,32,40,66,32,
-85,41,41,32,95,57,57,57,41,41,32,40,90,32,75,41,41,41,32,40,
-90,32,40,90,32,40,90,32,40,90,32,75,41,41,41,41,41,41,41,32,
-40,90,32,75,41,41,41,32,40,90,32,40,90,32,40,90,32,40,90,32,
-75,41,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,
-39,32,83,41,41,41,32,40,40,66,32,40,66,32,67,41,41,32,40,40,
-40,83,39,32,67,39,41,32,95,49,48,48,48,41,32,40,40,40,67,39,
-32,66,41,32,40,40,66,32,40,95,53,48,57,32,95,50,57,49,41,41,
-32,40,40,40,67,39,32,40,95,53,48,57,32,95,50,57,49,41,41,32,
-95,49,48,48,56,41,32,35,49,41,41,41,32,95,49,48,48,56,41,41,
-41,41,32,73,41,41,41,32,40,40,65,32,58,49,48,49,48,32,40,40,
-66,32,89,41,32,40,40,40,83,39,32,66,41,32,40,40,66,32,67,41,
-32,40,40,66,32,40,80,32,95,52,57,56,41,41,32,40,40,40,67,39,
-32,67,41,32,40,40,40,67,39,32,40,67,39,32,67,39,41,41,32,40,
-40,40,67,39,32,67,41,32,40,95,53,50,54,32,95,57,55,53,41,41,
-32,95,52,57,56,41,41,32,95,52,57,57,41,41,32,95,52,57,56,41,
-41,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,40,67,39,
-32,40,83,39,32,40,67,39,32,40,67,39,32,40,67,39,32,66,41,41,
-41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,
-39,32,66,41,41,41,41,32,40,66,39,32,40,40,66,32,67,41,32,40,
-95,53,50,54,32,95,57,55,53,41,41,41,41,32,95,52,57,57,41,41,
-32,73,41,41,41,41,41,32,40,40,65,32,58,49,48,49,49,32,40,95,
-49,48,49,50,32,95,50,55,52,41,41,32,40,40,65,32,58,49,48,49,
-50,32,40,40,66,32,40,66,32,40,66,32,89,41,41,41,32,40,40,66,
-32,40,40,83,39,32,40,83,39,32,40,83,39,32,67,41,41,41,32,40,
-40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,
-80,41,41,32,95,57,57,57,41,41,32,40,40,40,67,39,32,66,41,32,
-66,41,32,40,40,40,67,39,32,67,41,32,40,40,95,49,48,48,48,32,
-95,57,57,56,41,32,35,49,41,41,32,95,57,57,56,41,41,41,41,41,
-32,40,40,66,32,40,66,32,40,66,32,40,66,32,90,41,41,41,41,32,
-40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,83,39,32,40,83,
-39,32,40,83,39,32,40,83,39,32,83,41,41,41,41,41,41,41,32,40,
-40,66,32,40,40,83,39,32,66,41,32,40,40,66,32,40,67,39,32,40,
-83,39,32,67,41,41,41,32,40,40,40,67,39,32,66,41,32,40,66,39,
-32,40,40,66,32,40,83,39,32,83,39,41,41,32,40,40,66,32,40,66,
-32,83,39,41,41,32,40,95,53,50,54,32,95,57,55,53,41,41,41,41,
-41,32,40,66,32,95,49,48,49,57,41,41,41,41,41,32,40,40,67,39,
-32,66,41,32,40,40,66,32,40,67,39,32,66,41,41,32,40,67,32,95,
-49,48,48,57,41,41,41,41,41,32,40,40,67,39,32,40,67,39,32,40,
-67,39,32,66,41,41,41,32,95,49,48,49,57,41,41,41,41,41,41,32,
-40,40,65,32,58,49,48,49,51,32,40,40,66,32,89,41,32,40,40,40,
-83,39,32,66,41,32,40,40,66,32,67,41,32,40,40,66,32,40,83,32,
-40,85,32,95,57,57,56,41,41,41,32,40,40,66,32,40,66,32,90,41,
-41,32,40,40,40,67,39,32,40,67,39,32,67,41,41,32,40,40,66,32,
-67,41,32,40,40,40,67,39,32,40,67,39,32,40,95,50,49,49,32,95,
-53,52,48,41,41,41,32,40,95,53,50,54,32,95,57,55,53,41,41,32,
-95,53,52,53,41,41,41,32,95,57,57,56,41,41,41,41,41,32,40,40,
-66,32,40,66,32,90,41,41,32,40,40,40,67,39,32,40,83,39,32,40,
-83,39,32,40,83,39,32,40,83,39,32,83,41,41,41,41,41,32,40,40,
-40,67,39,32,40,67,39,32,40,83,39,32,67,41,41,41,32,40,40,40,
-67,39,32,66,41,32,40,66,39,32,40,40,66,32,40,83,39,32,67,39,
-41,41,32,40,40,66,32,40,66,32,83,39,41,41,32,40,95,53,50,54,
-32,95,57,55,53,41,41,41,41,41,32,40,66,32,95,49,48,49,57,41,
-41,41,32,40,40,40,83,39,32,83,41,32,40,40,40,67,39,32,67,41,
-32,40,40,67,32,40,67,39,32,83,39,41,41,32,40,90,32,75,41,41,
-41,32,40,90,32,40,90,32,40,90,32,40,90,32,75,41,41,41,41,41,
-41,32,40,40,40,83,39,32,83,41,32,40,40,40,67,39,32,67,41,32,
-40,40,40,67,39,32,40,67,39,32,83,39,41,41,32,85,41,32,40,90,
-32,75,41,41,41,32,40,90,32,40,90,32,40,90,32,40,90,32,75,41,
-41,41,41,41,41,32,40,40,40,83,39,32,83,41,32,40,40,83,32,40,
-40,40,67,39,32,83,39,41,32,40,40,66,32,40,95,53,50,57,32,95,
-50,57,54,41,41,32,95,49,48,48,56,41,41,32,95,49,48,48,56,41,
-41,32,40,40,40,67,39,32,66,41,32,40,40,40,67,39,32,83,41,32,
-40,40,67,32,40,40,40,67,39,32,83,39,41,32,95,49,48,48,57,41,
-32,40,85,32,40,90,32,75,41,41,41,41,32,40,85,32,40,75,32,75,
-41,41,41,41,32,40,85,32,40,75,32,65,41,41,41,41,32,95,49,48,
-49,52,41,41,41,32,40,40,66,32,40,67,32,40,67,32,40,40,83,32,
-40,40,40,83,39,32,95,49,48,48,57,41,32,40,85,32,40,75,32,65,
-41,41,41,32,40,85,32,40,90,32,75,41,41,41,41,32,40,85,32,40,
-75,32,75,41,41,41,41,41,41,32,95,49,48,49,53,41,41,41,41,41,
-41,32,40,40,67,39,32,40,67,39,32,40,67,39,32,66,41,41,41,32,
-95,49,48,49,57,41,41,41,41,41,41,32,40,40,65,32,58,49,48,49,
-52,32,40,40,67,32,40,40,80,32,95,50,54,41,32,40,40,40,67,39,
-32,40,67,39,32,67,41,41,32,80,41,32,95,57,57,56,41,41,41,32,
-40,90,32,40,40,40,83,39,32,40,83,39,32,40,83,39,32,83,41,41,
-41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,41,
-32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,83,
-39,41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,66,39,32,66,
-41,41,32,40,40,66,32,40,66,32,67,41,41,32,80,41,41,41,32,40,
-90,32,75,41,41,41,32,40,90,32,40,90,32,40,90,32,40,90,32,75,
-41,41,41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,66,39,32,
-40,66,39,32,95,49,48,49,52,41,41,41,32,40,40,66,32,40,66,32,
-40,66,32,40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,66,32,
-40,66,32,67,41,41,32,80,41,41,41,41,41,32,40,40,66,32,40,66,
-32,67,41,41,32,40,40,66,32,67,41,32,40,67,32,95,49,48,49,57,
-41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,49,48,49,53,32,
-40,40,67,32,40,40,80,32,95,50,54,41,32,40,40,40,67,39,32,40,
-67,39,32,67,41,41,32,80,41,32,95,57,57,56,41,41,41,32,40,90,
-32,40,40,40,83,39,32,40,83,39,32,40,83,39,32,83,41,41,41,32,
-40,40,40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,41,32,40,
-40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,83,39,41,
-41,41,41,32,40,40,66,32,40,66,32,40,66,32,85,41,41,41,32,40,
-40,67,39,32,40,67,39,32,67,41,41,32,80,41,41,41,32,40,90,32,
-75,41,41,41,32,40,90,32,40,90,32,40,90,32,40,90,32,75,41,41,
-41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,67,32,95,49,
-48,49,53,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,40,
-67,39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,67,41,
-41,32,80,41,41,41,41,41,32,95,49,48,49,57,41,41,41,41,41,41,
-32,40,40,65,32,58,49,48,49,54,32,35,51,41,32,40,40,65,32,58,
-49,48,49,55,32,35,50,41,32,40,40,65,32,58,49,48,49,56,32,35,
-48,41,32,40,40,65,32,58,49,48,49,57,32,40,40,66,32,89,41,32,
-40,40,40,83,39,32,40,67,39,32,40,83,39,32,40,83,39,32,83,41,
-41,41,41,32,40,40,40,83,39,32,66,41,32,40,66,39,32,40,66,39,
-32,40,40,66,32,83,41,32,40,40,40,67,39,32,40,67,39,32,40,95,
-53,50,56,32,95,50,57,54,41,41,41,32,40,40,40,67,39,32,66,41,
-32,40,40,66,32,40,95,53,48,57,32,95,50,57,49,41,41,32,95,49,
-48,48,56,41,41,32,95,49,48,48,56,41,41,32,35,49,41,41,41,41,
-41,32,40,40,40,83,39,32,66,41,32,40,40,66,32,40,83,39,32,40,
-83,39,32,83,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,
-39,32,40,67,39,32,83,41,41,41,41,32,40,40,40,67,39,32,66,41,
-32,40,66,39,32,40,66,39,32,67,41,41,41,32,40,40,66,32,40,66,
-32,40,67,39,32,67,41,41,41,32,40,40,66,32,40,67,39,32,67,41,
-41,32,40,40,67,39,32,40,67,39,32,95,49,48,49,57,41,41,32,40,
-40,40,67,39,32,67,41,32,40,40,95,49,48,48,48,32,95,57,57,56,
-41,32,35,49,41,41,32,95,57,57,56,41,41,41,41,41,41,32,40,90,
-32,40,90,32,40,90,32,40,90,32,75,41,41,41,41,41,41,41,32,40,
-40,66,32,40,40,67,39,32,40,83,39,32,40,83,39,32,83,41,41,41,
-32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,83,
-41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,82,41,41,41,32,
-40,40,40,67,39,32,40,67,39,32,40,67,39,32,66,41,41,41,32,40,
-66,32,66,39,41,41,32,40,40,40,67,39,32,67,41,32,40,40,95,49,
-48,48,48,32,95,57,57,56,41,32,35,49,41,41,32,95,57,57,56,41,
-41,41,41,32,40,90,32,40,90,32,40,90,32,40,90,32,75,41,41,41,
-41,41,41,41,32,40,40,40,83,39,32,40,83,39,32,40,83,39,32,83,
-41,41,41,32,40,40,40,83,39,32,66,41,32,40,66,39,32,40,40,66,
-32,83,41,32,40,40,66,32,40,40,67,39,32,40,95,53,50,57,32,95,
-50,57,54,41,41,32,95,49,48,48,56,41,41,32,40,40,40,67,39,32,
-40,95,53,48,57,32,95,50,57,49,41,41,32,40,40,66,32,40,40,95,
-53,49,49,32,95,50,57,49,41,32,95,49,48,49,54,41,41,32,95,49,
-48,48,56,41,41,32,95,49,48,49,56,41,41,41,41,41,32,40,40,40,
-83,39,32,40,83,39,32,40,83,39,32,83,41,41,41,32,40,40,40,83,
-39,32,66,41,32,40,66,39,32,40,40,40,67,39,32,83,39,41,32,40,
-40,66,32,40,95,53,50,57,32,95,50,57,54,41,41,32,95,49,48,48,
-56,41,41,32,40,40,40,67,39,32,40,95,53,48,57,32,95,50,57,49,
-41,41,32,40,40,66,32,40,40,95,53,49,49,32,95,50,57,49,41,32,
-95,49,48,49,54,41,41,32,95,49,48,48,56,41,41,32,95,49,48,49,
-56,41,41,41,41,32,95,49,48,48,57,41,41,32,40,40,40,83,39,32,
-66,41,32,40,66,39,32,40,66,39,32,40,40,80,32,95,50,54,41,32,
-40,75,32,40,75,32,95,50,54,41,41,41,41,41,41,32,40,40,66,32,
-40,66,32,40,66,32,40,66,32,90,41,41,41,41,32,40,40,66,32,40,
-66,32,40,66,32,40,66,32,90,41,41,41,41,32,40,40,66,32,40,66,
-32,40,66,32,40,66,32,90,41,41,41,41,32,40,40,40,83,39,32,40,
-83,39,32,40,83,39,32,40,83,39,32,40,67,39,32,67,41,41,41,41,
-41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,40,67,39,32,
-67,41,32,40,40,66,32,40,40,67,39,32,40,95,53,50,55,32,95,50,
-57,54,41,41,32,95,49,48,48,56,41,41,32,40,40,66,32,40,40,95,
-53,49,49,32,95,50,57,49,41,32,95,49,48,49,55,41,41,32,95,49,
-48,48,56,41,41,41,41,41,41,41,32,95,49,48,50,51,41,41,32,95,
-49,48,50,49,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,
-40,66,32,40,83,32,40,40,80,32,95,50,54,41,32,40,75,32,40,75,
-32,95,50,54,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,
-66,32,40,66,32,90,41,41,41,41,32,40,40,66,32,40,66,32,40,66,
-32,40,66,32,90,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
-40,66,32,90,41,41,41,41,32,40,40,40,83,39,32,40,83,39,32,40,
-83,39,32,40,83,39,32,40,67,39,32,67,41,41,41,41,41,32,40,40,
-66,32,40,66,32,40,66,32,40,66,32,40,67,32,40,40,40,67,39,32,
-67,39,41,32,40,40,66,32,40,95,53,50,55,32,95,50,57,54,41,41,
-32,95,49,48,48,56,41,41,32,40,40,66,32,40,40,95,53,49,49,32,
-95,50,57,49,41,32,95,49,48,49,55,41,41,32,95,49,48,48,56,41,
-41,41,41,41,41,41,32,95,49,48,50,50,41,41,32,95,49,48,50,48,
-41,41,41,41,41,41,41,41,41,41,32,95,49,48,48,57,41,41,41,32,
-40,40,65,32,58,49,48,50,48,32,40,40,66,32,40,66,32,40,66,32,
-40,67,32,40,40,80,32,95,50,54,41,32,40,75,32,40,75,32,95,50,
-54,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,90,
-41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,95,49,48,
-48,57,41,41,41,41,32,95,49,48,48,57,41,41,41,41,32,40,40,65,
-32,58,49,48,50,49,32,40,40,40,67,39,32,66,41,32,40,66,39,32,
-40,66,39,32,40,40,80,32,95,50,54,41,32,40,75,32,40,75,32,95,
-50,54,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,90,
-41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,40,67,39,32,40,
-67,39,32,40,67,39,32,66,41,41,41,32,95,49,48,48,57,41,41,41,
-41,32,40,40,66,32,40,66,32,67,41,41,32,40,40,66,32,67,41,32,
-40,67,32,95,49,48,48,57,41,41,41,41,41,41,41,32,40,40,65,32,
-58,49,48,50,50,32,40,40,66,32,40,66,32,40,66,32,40,67,32,40,
-40,80,32,95,50,54,41,32,40,75,32,40,75,32,95,50,54,41,41,41,
-41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,90,41,41,41,32,
-40,40,40,83,39,32,40,83,39,32,40,83,39,32,67,41,41,41,32,40,
-40,66,32,40,66,32,40,66,32,40,40,67,39,32,83,39,41,32,40,40,
-66,32,83,39,41,32,40,40,66,32,83,39,41,32,40,85,32,95,50,54,
-41,41,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,
-39,32,66,41,41,41,32,40,40,66,32,40,66,32,66,39,41,41,32,40,
-40,66,32,40,66,32,66,39,41,41,32,40,40,66,32,40,66,32,40,66,
-32,40,67,39,32,67,41,41,41,41,32,40,40,66,32,40,66,32,40,66,
-32,95,49,48,48,57,41,41,41,32,40,40,40,67,39,32,40,67,39,32,
-67,41,41,32,95,49,48,48,57,41,32,95,57,57,56,41,41,41,41,41,
-41,32,40,95,49,48,48,57,32,95,57,57,56,41,41,41,41,32,40,40,
-66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,90,41,41,
-41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,66,
-41,41,41,32,40,40,66,32,40,66,32,66,39,41,41,32,40,40,66,32,
-40,66,32,66,39,41,41,32,40,40,66,32,40,66,32,40,66,32,40,67,
-39,32,40,67,39,32,40,67,39,32,66,41,41,41,41,41,41,32,40,40,
-66,32,40,66,32,40,66,32,40,66,32,95,49,48,48,57,41,41,41,41,
-32,95,49,48,48,57,41,41,41,41,41,32,40,40,66,32,40,66,32,67,
-41,41,32,40,40,66,32,67,41,32,40,67,32,95,49,48,48,57,41,41,
-41,41,41,41,41,41,41,32,40,40,65,32,58,49,48,50,51,32,40,40,
-40,67,39,32,66,41,32,40,66,39,32,40,66,39,32,40,40,80,32,95,
-50,54,41,32,40,75,32,40,75,32,95,50,54,41,41,41,41,41,41,32,
-40,40,66,32,40,66,32,40,66,32,90,41,41,41,32,40,40,40,83,39,
-32,40,83,39,32,40,83,39,32,40,83,39,32,40,83,39,32,40,83,39,
-32,67,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,
-66,32,40,66,32,40,66,32,40,80,32,95,50,54,41,41,41,41,41,41,
-41,32,40,40,66,32,40,66,32,40,66,32,40,40,67,39,32,40,67,39,
-32,40,67,39,32,40,67,39,32,67,41,41,41,41,32,40,40,66,32,40,
-66,32,40,66,32,95,49,48,48,57,41,41,41,32,40,40,40,67,39,32,
-40,67,39,32,67,41,41,32,95,49,48,48,57,41,32,95,57,57,56,41,
-41,41,41,41,41,32,40,95,49,48,48,57,32,95,57,57,56,41,41,41,
-41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
-32,90,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,
-40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,
-40,67,39,32,66,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,
-66,32,40,66,32,95,49,48,48,57,41,41,41,41,32,95,49,48,48,57,
-41,41,41,41,41,32,40,40,66,32,40,66,32,67,41,41,32,40,40,66,
-32,67,41,32,40,67,32,95,49,48,48,57,41,41,41,41,41,41,41,41,
-41,32,40,40,65,32,58,49,48,50,52,32,40,85,32,40,40,66,32,40,
-66,32,40,66,32,90,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
-40,66,32,40,66,32,40,40,95,51,52,32,95,49,53,54,56,41,32,40,
-40,95,50,55,48,32,40,40,95,52,54,32,95,49,53,54,56,41,32,40,
-95,49,50,51,32,95,49,52,52,56,41,41,41,32,40,95,50,53,32,34,
-73,110,116,101,114,97,99,116,105,118,101,32,109,104,115,32,110,111,116,32,
-97,118,97,105,108,97,98,108,101,32,119,104,101,110,32,99,111,109,112,105,
-108,101,100,32,119,105,116,104,32,103,104,99,34,41,41,41,41,41,41,41,
-41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,40,
-95,51,52,32,95,49,53,54,56,41,32,40,95,49,53,56,56,32,34,87,
-101,108,99,111,109,101,32,116,111,32,105,110,116,101,114,97,99,116,105,118,
-101,32,77,105,99,114,111,72,115,33,34,41,41,41,41,41,41,41,32,40,
-40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,40,40,83,39,
-32,40,95,51,51,32,95,49,53,54,56,41,41,32,95,55,49,50,41,32,
-40,40,40,67,39,32,40,67,39,32,40,95,51,51,32,95,49,53,54,56,
-41,41,41,32,40,40,66,32,40,66,32,40,95,49,49,55,49,32,95,49,
-48,50,54,41,41,41,32,40,40,66,32,67,41,32,40,80,32,95,49,48,
-50,53,41,41,41,41,32,40,75,32,40,40,95,51,53,32,95,49,53,54,
-56,41,32,95,49,52,53,48,41,41,41,41,41,41,41,41,41,32,40,40,
-40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,41,32,95,55,48,
-52,41,32,95,49,50,54,41,41,41,41,41,41,41,32,40,40,65,32,58,
-49,48,50,53,32,40,40,95,52,56,50,32,34,109,111,100,117,108,101,32,
-34,41,32,40,40,95,52,56,50,32,95,49,48,51,51,41,32,40,40,95,
-52,56,50,32,34,40,109,111,100,117,108,101,32,34,41,32,40,40,95,52,
-56,50,32,95,49,48,51,51,41,32,34,41,32,119,104,101,114,101,92,49,
-48,38,105,109,112,111,114,116,32,80,114,101,108,117,100,101,92,49,48,38,
-100,101,102,97,117,108,116,32,40,73,110,116,101,103,101,114,44,32,68,111,
-117,98,108,101,41,92,49,48,38,34,41,41,41,41,41,32,40,40,65,32,
-58,49,48,50,54,32,40,40,40,95,51,52,32,95,49,49,55,53,41,32,
-95,49,48,51,48,41,32,40,40,40,95,51,52,32,95,49,49,55,53,41,
-32,40,40,95,50,55,48,32,95,49,49,56,49,41,32,40,95,49,53,56,
-56,32,34,84,121,112,101,32,39,58,113,117,105,116,39,32,116,111,32,113,
-117,105,116,44,32,39,58,104,101,108,112,39,32,102,111,114,32,104,101,108,
-112,34,41,41,41,32,95,49,48,50,55,41,41,41,32,40,40,65,32,58,
-49,48,50,55,32,40,40,40,95,51,51,32,95,49,49,55,53,41,32,40,
-40,95,50,55,48,32,95,49,49,56,49,41,32,40,40,95,49,53,51,54,
-32,34,46,109,104,115,105,34,41,32,34,62,32,34,41,41,41,32,40,40,
-80,32,95,49,48,50,55,41,32,40,40,83,32,40,85,32,95,49,48,50,
-55,41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,
-66,32,40,67,32,40,40,67,32,61,61,41,32,35,53,56,41,41,41,32,
-40,40,40,67,39,32,40,95,51,52,32,95,49,49,55,53,41,41,32,95,
-49,48,51,55,41,32,95,49,48,50,55,41,41,41,32,40,40,40,67,39,
-32,40,95,51,51,32,95,49,49,55,53,41,41,32,95,49,48,50,56,41,
-32,40,40,80,32,40,40,95,50,55,48,32,95,49,49,56,49,41,32,40,
-95,49,53,56,56,32,34,66,121,101,34,41,41,41,32,95,49,48,50,55,
-41,41,41,41,41,41,41,32,40,40,65,32,58,49,48,50,56,32,40,40,
-67,32,40,40,67,32,95,49,55,51,50,41,32,40,40,95,51,53,32,95,
-49,49,55,53,41,32,95,49,50,54,41,41,41,32,40,40,66,32,40,40,
-67,39,32,40,83,32,40,85,32,40,40,40,95,51,52,32,95,49,49,55,
-53,41,32,40,40,95,50,55,48,32,95,49,49,56,49,41,32,40,95,49,
-53,56,56,32,34,85,110,114,101,99,111,103,110,105,122,101,100,32,99,111,
-109,109,97,110,100,34,41,41,41,32,40,40,95,51,53,32,95,49,49,55,
-53,41,32,95,49,50,54,41,41,41,41,41,32,40,40,66,32,40,66,32,
-40,67,32,66,41,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,
-40,40,67,39,32,66,41,32,40,40,66,32,67,41,32,40,40,66,32,40,
-67,32,67,39,41,41,32,40,40,66,32,85,41,32,95,49,55,51,51,41,
-41,41,41,32,40,90,32,40,90,32,40,40,40,67,39,32,40,95,51,52,
-32,95,49,49,55,53,41,41,32,40,40,66,32,40,95,50,55,48,32,95,
-49,49,56,49,41,41,32,40,40,66,32,40,95,50,55,48,32,95,49,53,
-56,56,41,41,32,40,40,66,32,40,95,52,56,50,32,34,65,109,98,105,
-103,117,111,117,115,32,99,111,109,109,97,110,100,58,32,34,41,41,32,40,
-40,66,32,95,49,55,51,51,41,32,40,95,52,49,50,32,95,53,57,56,
-41,41,41,41,41,41,32,40,40,95,51,53,32,95,49,49,55,53,41,32,
-95,49,50,54,41,41,41,41,41,41,41,41,41,32,40,40,40,67,39,32,
-95,52,49,51,41,32,40,40,40,67,39,32,95,50,55,50,41,32,40,95,
-52,51,55,32,95,49,51,50,41,41,32,95,53,57,56,41,41,32,95,49,
-48,50,57,41,41,41,41,32,40,40,65,32,58,49,48,50,57,32,40,40,
-79,32,40,40,80,32,34,113,117,105,116,34,41,32,40,40,95,50,55,48,
-32,95,50,55,52,41,32,40,40,95,51,53,32,95,49,49,55,53,41,32,
-95,49,50,53,41,41,41,41,32,40,40,79,32,40,40,80,32,34,99,108,
-101,97,114,34,41,32,40,40,95,50,55,48,32,95,50,55,52,41,32,40,
-40,40,95,51,52,32,95,49,49,55,53,41,32,40,95,49,48,51,50,32,
-40,95,50,55,52,32,95,49,48,50,53,41,41,41,32,40,40,40,95,51,
-52,32,95,49,49,55,53,41,32,40,40,95,50,55,48,32,95,49,49,55,
-56,41,32,40,85,32,40,40,66,32,90,41,32,40,40,40,67,39,32,40,
-67,39,32,67,41,41,32,80,41,32,95,55,50,55,41,41,41,41,41,32,
-40,40,95,51,53,32,95,49,49,55,53,41,32,95,49,50,54,41,41,41,
-41,41,41,32,40,40,79,32,40,40,80,32,34,114,101,108,111,97,100,34,
-41,32,40,40,95,50,55,48,32,95,50,55,52,41,32,40,40,40,95,51,
-51,32,95,49,49,55,53,41,32,95,49,49,56,48,41,32,40,85,32,40,
-40,66,32,40,40,83,39,32,40,67,39,32,40,95,51,51,32,95,49,49,
-55,53,41,41,41,32,40,40,66,32,40,66,32,40,95,50,55,48,32,95,
-49,49,56,49,41,41,41,32,95,55,49,54,41,41,41,32,40,40,40,67,
-39,32,40,67,39,32,40,67,39,32,40,95,51,52,32,95,49,49,55,53,
-41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,95,49,49,55,57,
-41,41,41,32,40,40,66,32,40,66,32,67,41,41,32,80,41,41,41,32,
-40,40,40,95,51,52,32,95,49,49,55,53,41,32,95,49,48,51,48,41,
-32,40,40,95,51,53,32,95,49,49,55,53,41,32,95,49,50,54,41,41,
-41,41,41,41,41,41,41,32,40,40,79,32,40,40,80,32,34,100,101,108,
-101,116,101,34,41,32,40,40,40,67,39,32,40,95,51,52,32,95,49,49,
-55,53,41,41,32,40,40,66,32,95,49,48,51,50,41,32,40,40,66,32,
-40,95,50,55,50,32,95,49,55,51,49,41,41,32,40,40,40,67,39,32,
-95,50,55,50,41,32,40,40,66,32,95,52,49,51,41,32,40,40,66,32,
-40,95,50,55,50,32,95,49,50,51,41,41,32,40,95,52,51,55,32,95,
-49,51,50,41,41,41,41,32,95,49,55,51,48,41,41,41,41,32,40,40,
-95,51,53,32,95,49,49,55,53,41,32,95,49,50,54,41,41,41,41,32,
-40,40,79,32,40,40,80,32,34,104,101,108,112,34,41,32,40,75,32,40,
-40,40,95,51,52,32,95,49,49,55,53,41,32,40,40,95,50,55,48,32,
-95,49,49,56,49,41,32,40,95,49,53,56,56,32,95,49,48,51,49,41,
-41,41,32,40,40,95,51,53,32,95,49,49,55,53,41,32,95,49,50,54,
-41,41,41,41,41,32,75,41,41,41,41,41,41,32,40,40,65,32,58,49,
-48,51,48,32,40,40,40,95,51,51,32,95,49,49,55,53,41,32,95,49,
-49,56,48,41,32,40,85,32,40,90,32,40,90,32,40,40,40,67,39,32,
-40,95,51,51,32,95,49,49,55,53,41,41,32,95,49,48,51,56,41,32,
-40,40,80,32,40,40,66,32,40,95,50,55,48,32,95,49,49,56,49,41,
-41,32,95,49,48,51,54,41,41,32,40,75,32,40,40,95,51,53,32,95,
-49,49,55,53,41,32,95,49,52,53,48,41,41,41,41,41,41,41,41,41,
-32,40,40,65,32,58,49,48,51,49,32,34,67,111,109,109,97,110,100,115,
-58,92,49,48,38,32,32,58,113,117,105,116,32,32,32,32,32,32,113,117,
-105,116,32,77,105,99,114,111,72,115,92,49,48,38,32,32,58,114,101,108,
-111,97,100,32,32,32,32,114,101,108,111,97,100,32,109,111,100,117,108,101,
-115,92,49,48,38,32,32,58,99,108,101,97,114,32,32,32,32,32,99,108,
-101,97,114,32,97,108,108,32,100,101,102,105,110,105,116,105,111,110,115,92,
-49,48,38,32,32,58,100,101,108,101,116,101,32,100,32,32,100,101,108,101,
-116,101,32,100,101,102,105,110,105,116,105,111,110,40,115,41,32,100,92,49,
-48,38,32,32,58,104,101,108,112,32,32,32,32,32,32,116,104,105,115,32,
-116,101,120,116,92,49,48,38,32,32,101,120,112,114,32,32,32,32,32,32,
-32,101,118,97,108,117,97,116,101,32,101,120,112,114,101,115,115,105,111,110,
-92,49,48,38,32,32,100,101,102,110,32,32,32,32,32,32,32,97,100,100,
-32,116,111,112,32,108,101,118,101,108,32,100,101,102,105,110,105,116,105,111,
-110,92,49,48,38,34,41,32,40,40,65,32,58,49,48,51,50,32,40,40,
-66,32,40,95,50,55,48,32,95,49,49,55,56,41,41,32,40,40,66,32,
-85,41,32,40,40,66,32,40,66,32,40,66,32,67,41,41,41,32,40,66,
-32,80,41,41,41,41,41,32,40,40,65,32,58,49,48,51,51,32,34,73,
-110,116,101,114,97,99,116,105,118,101,34,41,32,40,40,65,32,58,49,48,
-51,52,32,34,95,105,116,34,41,32,40,40,65,32,58,49,48,51,53,32,
-40,40,66,32,40,95,52,56,50,32,95,49,48,51,52,41,41,32,40,40,
-66,32,40,95,52,56,50,32,34,32,58,58,32,73,79,32,40,41,92,49,
-48,38,34,41,41,32,40,40,66,32,40,95,52,56,50,32,95,49,48,51,
-52,41,41,32,40,40,66,32,40,95,52,56,50,32,34,32,61,32,112,114,
-105,110,116,79,114,82,117,110,32,40,34,41,41,32,40,40,67,32,95,52,
-56,50,41,32,34,41,92,49,48,38,34,41,41,41,41,41,41,32,40,40,
-65,32,58,49,48,51,54,32,40,40,66,32,40,95,50,55,48,32,95,49,
-53,56,56,41,41,32,40,95,52,56,50,32,34,69,114,114,111,114,58,32,
-34,41,41,41,32,40,40,65,32,58,49,48,51,55,32,40,40,66,32,40,
-40,95,51,51,32,95,49,49,55,53,41,32,95,49,49,56,48,41,41,32,
-40,40,66,32,85,41,32,40,40,66,32,90,41,32,40,40,66,32,90,41,
-32,40,40,40,83,39,32,83,41,32,40,40,40,67,39,32,40,67,39,32,
-83,41,41,32,40,40,66,32,40,66,32,40,67,32,40,40,40,95,49,48,
-55,56,32,95,57,49,55,41,32,95,49,48,56,48,41,32,75,41,41,41,
-41,32,40,40,66,32,90,41,32,40,40,40,83,39,32,66,41,32,40,40,
-67,32,40,40,40,95,49,48,55,56,32,95,57,49,56,41,32,95,49,48,
-56,49,41,32,75,41,41,32,40,40,66,32,40,95,50,55,48,32,95,49,
-49,56,49,41,41,32,40,40,66,32,95,49,48,51,54,41,32,95,50,55,
-41,41,41,41,32,40,40,66,32,90,41,32,40,40,40,67,39,32,40,67,
-39,32,40,95,51,51,32,95,49,49,55,53,41,41,41,32,40,40,66,32,
-40,66,32,95,49,48,51,56,41,41,32,40,40,66,32,40,67,32,95,52,
-56,50,41,41,32,40,40,66,32,40,95,52,56,50,32,40,40,79,32,35,
-49,48,41,32,75,41,41,41,32,95,49,48,51,53,41,41,41,41,32,40,
-40,80,32,40,40,66,32,40,95,50,55,48,32,95,49,49,56,49,41,41,
-32,95,49,48,51,54,41,41,32,95,49,48,51,57,41,41,41,41,41,41,
-41,32,40,90,32,40,40,40,83,39,32,40,95,51,51,32,95,49,49,55,
-53,41,41,32,95,49,48,51,56,41,32,40,40,66,32,40,80,32,40,40,
-66,32,40,95,50,55,48,32,95,49,49,56,49,41,41,32,95,49,48,51,
-54,41,41,41,32,40,90,32,40,40,66,32,95,49,48,51,50,41,32,95,
-50,55,52,41,41,41,41,41,41,41,32,40,40,66,32,40,67,32,95,52,
-56,50,41,41,32,40,40,67,32,95,52,56,50,41,32,40,40,79,32,35,
-49,48,41,32,75,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,
-49,48,51,56,32,40,40,66,32,40,40,95,51,51,32,95,49,49,55,53,
-41,32,95,49,49,56,48,41,41,32,40,40,66,32,85,41,32,40,40,67,
-32,40,40,40,67,39,32,67,39,41,32,40,40,66,32,67,39,41,32,40,
-40,66,32,67,39,41,32,40,66,39,32,40,40,66,32,40,95,51,52,32,
-95,49,49,55,53,41,41,32,40,40,66,32,40,95,50,55,48,32,95,49,
-49,56,49,41,41,32,40,95,49,53,57,48,32,40,40,95,52,56,50,32,
-95,49,48,51,51,41,32,34,46,104,115,34,41,41,41,41,41,41,41,41,
-32,40,40,66,32,40,40,83,39,32,40,67,39,32,40,83,39,32,40,95,
-51,51,32,95,49,49,55,53,41,41,41,41,32,40,40,66,32,40,66,32,
-40,66,32,40,95,50,55,48,32,95,49,49,56,49,41,41,41,41,32,40,
-40,66,32,40,66,32,40,66,32,40,95,50,55,48,32,95,50,57,41,41,
-41,41,32,40,40,66,32,67,41,32,95,55,49,49,41,41,41,41,41,32,
-40,40,66,32,40,66,32,40,66,32,40,80,32,40,40,66,32,40,95,51,
-53,32,95,49,49,55,53,41,41,32,95,49,56,51,41,41,41,41,41,32,
-40,40,66,32,40,66,32,40,66,32,85,41,41,41,32,40,40,40,67,39,
-32,40,67,39,32,40,67,39,32,66,41,41,41,32,40,40,66,32,40,66,
-32,40,66,32,40,67,39,32,40,95,51,52,32,95,49,49,55,53,41,41,
-41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,95,49,49,
-55,57,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,
-32,40,40,66,32,66,39,41,32,40,40,66,32,40,66,32,67,41,41,32,
-80,41,41,41,32,95,55,50,56,41,41,41,41,32,40,40,66,32,40,95,
-51,53,32,95,49,49,55,53,41,41,32,95,49,56,52,41,41,41,41,41,
-41,41,32,40,95,57,55,57,32,95,49,48,51,51,41,41,41,41,41,32,
-40,40,65,32,58,49,48,51,57,32,40,40,66,32,40,40,40,67,39,32,
-40,95,51,51,32,95,49,49,55,53,41,41,32,40,40,66,32,40,95,50,
-55,48,32,95,49,49,56,49,41,41,32,40,40,66,32,95,50,57,41,32,
-40,40,83,32,95,49,53,57,56,41,32,40,95,51,53,32,95,49,53,54,
-56,41,41,41,41,41,32,40,40,66,32,40,95,50,55,48,32,95,49,49,
-56,49,41,41,32,40,40,80,32,95,49,48,51,54,41,32,40,40,40,67,
-39,32,40,95,51,51,32,95,49,53,54,56,41,41,32,95,50,57,41,32,
-40,40,80,32,95,49,48,51,54,41,32,40,75,32,40,40,95,51,53,32,
-95,49,53,54,56,41,32,95,49,52,53,48,41,41,41,41,41,41,41,41,
-32,40,40,66,32,95,49,55,51,55,41,32,40,40,66,32,95,49,49,56,
-54,41,32,40,80,32,40,95,57,55,57,32,40,40,95,52,56,50,32,95,
-49,48,51,51,41,32,40,40,95,52,56,50,32,40,40,79,32,35,52,54,
-41,32,75,41,41,32,95,49,48,51,52,41,41,41,41,41,41,41,41,32,
-40,40,65,32,58,49,48,52,48,32,40,40,66,32,40,66,32,40,66,32,
-90,41,41,41,32,40,40,66,32,40,66,32,40,66,32,90,41,41,41,32,
-40,40,66,32,40,66,32,40,66,32,90,41,41,41,32,40,40,66,32,40,
-66,32,40,66,32,90,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
-90,41,41,41,32,40,40,66,32,40,66,32,40,66,32,90,41,41,41,32,
-40,40,66,32,40,66,32,40,66,32,90,41,41,41,32,40,40,66,32,40,
-66,32,40,66,32,90,41,41,41,32,40,40,66,32,40,66,32,67,41,41,
-32,80,41,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,49,48,
-52,49,32,40,40,66,32,90,41,32,40,40,66,32,40,66,32,90,41,41,
-32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,90,
-41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,66,
-32,90,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,
-40,66,32,90,41,41,32,80,41,41,41,41,41,41,41,41,41,32,40,40,
-65,32,58,49,48,52,50,32,40,40,66,32,90,41,32,40,40,66,32,90,
-41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,
-90,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,
-66,32,90,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,
-32,40,66,32,90,41,41,32,80,41,41,41,41,41,41,41,41,41,32,40,
-40,65,32,58,49,48,52,51,32,40,40,66,32,90,41,32,40,40,66,32,
-90,41,32,40,40,66,32,90,41,32,40,40,66,32,40,66,32,90,41,41,
-32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,90,
-41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,66,
-32,90,41,41,32,80,41,41,41,41,41,41,41,41,41,32,40,40,65,32,
-58,49,48,52,52,32,40,40,66,32,90,41,32,40,40,66,32,90,41,32,
-40,40,66,32,90,41,32,40,40,66,32,90,41,32,40,40,66,32,40,66,
-32,90,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,
-40,66,32,90,41,41,32,40,40,66,32,40,66,32,90,41,41,32,80,41,
-41,41,41,41,41,41,41,41,32,40,40,65,32,58,49,48,52,53,32,40,
-40,66,32,90,41,32,40,40,66,32,90,41,32,40,40,66,32,90,41,32,
-40,40,66,32,90,41,32,40,40,66,32,90,41,32,40,40,66,32,40,66,
-32,90,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,
-40,66,32,90,41,41,32,80,41,41,41,41,41,41,41,41,41,32,40,40,
-65,32,58,49,48,52,54,32,40,40,66,32,90,41,32,40,40,66,32,90,
-41,32,40,40,66,32,90,41,32,40,40,66,32,90,41,32,40,40,66,32,
-90,41,32,40,40,66,32,90,41,32,40,40,66,32,40,66,32,90,41,41,
-32,40,40,66,32,40,66,32,90,41,41,32,80,41,41,41,41,41,41,41,
-41,41,32,40,40,65,32,58,49,48,52,55,32,40,90,32,40,90,32,40,
-90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,40,66,32,90,41,
-32,85,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,49,48,52,
-56,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,
-40,90,32,40,90,32,85,41,41,41,41,41,41,41,41,41,32,40,40,65,
-32,58,49,48,52,57,32,40,40,67,32,40,40,67,32,40,40,67,32,40,
-40,67,32,40,40,67,32,40,40,67,32,40,40,67,32,40,40,80,32,40,
-75,32,40,40,66,32,40,66,32,40,95,52,53,48,32,40,40,79,32,35,
-52,54,41,32,75,41,41,41,41,32,40,40,40,67,39,32,66,41,32,95,
-52,56,50,41,32,40,40,67,32,79,41,32,75,41,41,41,41,41,32,40,
-75,32,40,95,49,55,49,52,32,40,95,52,48,53,32,95,49,53,48,41,
-41,41,41,41,32,40,75,32,40,95,49,55,49,52,32,95,49,53,48,41,
-41,41,41,32,40,75,32,40,95,49,55,49,52,32,95,51,50,49,41,41,
-41,41,32,40,75,32,40,95,49,55,49,52,32,40,95,53,53,49,32,95,
-51,50,49,41,41,41,41,41,32,40,75,32,40,40,67,32,79,41,32,75,
-41,41,41,41,32,40,75,32,40,95,52,56,50,32,34,69,82,82,79,82,
-32,34,41,41,41,41,32,40,75,32,34,84,66,114,97,99,101,34,41,41,
-41,32,40,75,32,34,84,73,110,100,101,110,116,34,41,41,41,32,40,40,
-65,32,58,49,48,53,48,32,40,85,32,40,90,32,40,40,40,67,39,32,
-80,41,32,40,40,67,32,40,95,53,48,57,32,95,50,57,49,41,41,32,
-35,49,41,41,32,40,40,95,53,49,53,32,95,50,57,49,41,32,40,95,
-51,55,51,32,35,49,41,41,41,41,41,41,32,40,40,65,32,58,49,48,
-53,49,32,40,40,67,32,66,41,32,40,40,66,32,40,40,67,39,32,66,
-41,32,80,41,41,32,40,67,32,40,95,53,48,57,32,95,50,57,49,41,
-41,41,41,41,32,40,40,65,32,58,49,48,53,50,32,80,41,32,40,40,
-65,32,58,49,48,53,51,32,40,85,32,65,41,41,32,40,40,65,32,58,
-49,48,53,52,32,40,40,95,50,55,50,32,40,95,49,48,54,55,32,95,
-52,56,48,41,41,32,40,95,49,48,53,53,32,40,40,95,49,48,53,50,
-32,35,49,41,32,35,49,41,41,41,41,32,40,40,65,32,58,49,48,53,
-53,32,40,40,66,32,89,41,32,40,40,40,83,39,32,66,41,32,40,40,
-66,32,83,41,32,40,40,66,32,40,67,32,83,41,41,32,40,40,66,32,
-40,40,67,39,32,40,67,39,32,66,41,41,32,40,67,32,40,40,67,32,
-61,61,41,32,35,51,50,41,41,41,41,32,40,40,66,32,95,49,48,53,
-53,41,32,40,40,67,32,95,49,48,53,49,41,32,35,49,41,41,41,41,
-41,41,32,40,40,40,83,39,32,66,41,32,40,40,66,32,83,41,32,40,
-40,66,32,40,67,32,83,41,41,32,40,40,66,32,40,40,67,39,32,40,
-67,39,32,66,41,41,32,40,67,32,40,40,67,32,61,61,41,32,35,49,
-48,41,41,41,41,32,40,40,66,32,40,66,32,95,49,48,54,48,41,41,
-32,40,40,66,32,95,49,48,53,53,41,32,95,49,48,53,48,41,41,41,
-41,41,41,32,40,40,66,32,40,40,67,39,32,83,41,32,40,40,66,32,
-40,67,32,83,41,41,32,40,40,67,39,32,40,67,39,32,66,41,41,32,
-40,67,32,40,40,67,32,61,61,41,32,35,49,51,41,41,41,41,41,41,
-32,40,40,40,83,39,32,83,41,32,40,40,66,32,40,67,32,83,41,41,
-32,40,40,66,32,40,40,83,39,32,40,67,39,32,66,41,41,32,40,67,
-32,40,40,67,32,61,61,41,32,35,49,50,51,41,41,41,41,32,40,40,
-66,32,40,83,32,80,41,41,32,40,40,66,32,40,40,67,39,32,40,67,
-39,32,66,41,41,32,40,67,32,40,40,67,32,61,61,41,32,35,52,53,
-41,41,41,41,32,40,40,40,67,39,32,95,49,48,53,56,41,32,40,40,
-67,32,95,49,48,53,49,41,32,35,50,41,41,32,35,49,41,41,41,41,
-41,41,32,40,40,40,83,39,32,83,41,32,40,40,66,32,40,67,32,83,
-41,41,32,40,40,66,32,40,40,83,39,32,40,67,39,32,66,41,41,32,
-40,67,32,40,40,67,32,61,61,41,32,35,52,53,41,41,41,41,32,40,
-40,66,32,40,83,32,80,41,41,32,40,40,66,32,40,40,83,39,32,40,
-67,39,32,66,41,41,32,40,67,32,40,40,67,32,61,61,41,32,35,52,
-53,41,41,41,41,32,40,40,40,67,39,32,67,41,32,40,40,66,32,40,
-40,67,39,32,83,39,41,32,40,40,66,32,83,41,32,40,40,67,39,32,
-40,40,80,32,95,49,50,54,41,32,40,90,32,40,40,66,32,95,49,50,
-51,41,32,95,57,57,50,41,41,41,41,32,40,85,32,65,41,41,41,41,
-41,32,40,40,66,32,40,67,39,32,95,49,48,53,57,41,41,32,40,40,
-40,67,39,32,66,41,32,40,40,66,32,95,50,55,48,41,32,95,49,48,
-53,49,41,41,32,40,40,66,32,40,40,95,53,48,57,32,95,50,57,49,
-41,32,40,40,95,53,49,53,32,95,50,57,49,41,32,40,95,51,55,51,
-32,35,50,41,41,41,41,32,40,40,66,32,95,52,50,56,41,32,40,85,
-32,75,41,41,41,41,41,41,41,32,40,95,52,52,53,32,40,40,67,32,
-40,95,50,49,49,32,95,49,51,50,41,41,32,35,52,53,41,41,41,41,
-41,41,41,41,32,40,40,40,83,39,32,83,41,32,40,40,66,32,40,67,
-32,83,41,41,32,40,40,66,32,40,40,67,39,32,40,83,39,32,66,41,
-41,32,40,67,32,95,57,57,52,41,41,41,32,40,40,66,32,40,66,32,
-40,67,32,40,95,52,52,53,32,95,57,57,51,41,41,41,41,32,40,40,
-40,83,39,32,40,67,39,32,40,83,39,32,66,41,41,41,32,40,40,40,
-67,39,32,66,41,32,40,66,39,32,40,40,67,32,95,49,48,54,53,41,
-32,95,52,56,48,41,41,41,32,95,52,56,49,41,41,32,40,40,66,32,
-40,66,32,95,49,48,53,53,41,41,32,40,40,40,67,39,32,66,41,32,
-40,40,66,32,95,50,55,48,41,32,95,49,48,53,49,41,41,32,40,40,
-66,32,40,40,95,53,48,57,32,95,50,57,49,41,32,40,40,95,53,49,
-53,32,95,50,57,49,41,32,40,95,51,55,51,32,35,49,41,41,41,41,
-32,95,52,50,56,41,41,41,41,41,41,41,41,32,40,40,40,83,39,32,
-83,41,32,40,40,66,32,40,83,32,83,41,41,32,40,40,66,32,40,66,
-32,40,66,32,90,41,41,41,32,40,40,66,32,40,66,32,40,40,67,39,
-32,67,41,32,40,67,32,95,49,52,48,41,41,41,41,32,40,40,67,32,
-40,40,83,32,95,49,48,54,52,41,32,73,41,41,32,95,52,56,48,41,
-41,41,41,41,32,40,40,40,83,39,32,83,41,32,40,40,66,32,40,67,
-32,83,41,41,32,40,40,66,32,40,40,83,39,32,40,67,39,32,66,41,
-41,32,40,67,32,40,40,67,32,61,61,41,32,35,52,56,41,41,41,41,
-32,40,40,66,32,40,83,32,80,41,41,32,40,40,66,32,40,40,67,39,
-32,40,67,39,32,66,41,41,32,40,67,32,40,40,40,67,39,32,40,95,
-50,49,49,32,95,49,51,50,41,41,32,95,49,52,56,41,32,35,49,50,
-48,41,41,41,41,32,95,49,48,53,54,41,41,41,41,41,32,40,40,40,
-83,39,32,83,41,32,40,40,66,32,40,67,32,83,41,41,32,40,40,66,
-32,40,40,83,39,32,40,67,39,32,66,41,41,32,40,67,32,40,40,67,
-32,61,61,41,32,35,52,53,41,41,41,41,32,40,40,66,32,40,40,83,
-39,32,83,41,32,85,41,41,32,40,40,66,32,40,66,32,40,66,32,90,
-41,41,41,32,40,40,66,32,40,40,67,39,32,66,41,32,40,40,66,32,
-67,41,32,40,67,32,95,49,52,50,41,41,41,41,32,40,40,67,32,95,
-49,48,53,55,41,32,40,40,79,32,35,52,53,41,32,75,41,41,41,41,
-41,41,41,41,32,40,40,40,83,39,32,83,41,32,40,40,66,32,40,83,
-32,83,41,41,32,40,40,66,32,40,66,32,40,66,32,90,41,41,41,32,
-40,40,66,32,40,66,32,40,40,67,39,32,67,41,32,40,67,32,95,49,
-52,50,41,41,41,41,32,40,40,67,32,95,49,48,53,55,41,32,75,41,
-41,41,41,41,32,40,40,40,83,39,32,83,41,32,40,40,66,32,40,67,
-32,83,41,41,32,40,40,66,32,40,40,67,39,32,40,83,39,32,66,41,
-41,32,40,67,32,95,57,57,50,41,41,41,32,40,40,66,32,40,66,32,
-40,67,32,40,95,52,52,53,32,95,57,57,50,41,41,41,41,32,40,40,
-40,83,39,32,40,67,39,32,40,83,39,32,66,41,41,41,32,40,40,66,
-32,40,66,32,40,66,32,95,52,56,49,41,41,41,32,40,40,40,67,39,
-32,66,41,32,40,66,39,32,40,40,67,32,95,49,48,52,48,41,32,95,
-52,56,48,41,41,41,32,95,52,56,49,41,41,41,32,40,40,66,32,40,
-66,32,95,49,48,53,53,41,41,32,40,40,40,67,39,32,66,41,32,40,
-40,66,32,95,50,55,48,41,32,95,49,48,53,49,41,41,32,40,40,66,
-32,40,40,95,53,48,57,32,95,50,57,49,41,32,40,40,95,53,49,53,
-32,95,50,57,49,41,32,40,95,51,55,51,32,35,49,41,41,41,41,32,
-95,52,50,56,41,41,41,41,41,41,41,41,32,40,40,40,83,39,32,83,
-41,32,40,40,66,32,40,67,32,83,41,41,32,40,40,66,32,40,40,67,
-39,32,40,83,39,32,66,41,41,32,40,67,32,95,49,48,54,51,41,41,
-41,32,40,40,40,83,39,32,40,67,39,32,66,41,41,32,40,40,66,32,
-40,66,32,95,52,56,49,41,41,32,95,49,48,52,53,41,41,32,40,40,
-66,32,95,49,48,53,53,41,32,40,40,67,32,95,49,48,53,49,41,32,
-35,49,41,41,41,41,41,41,32,40,40,40,83,39,32,83,41,32,40,40,
-66,32,40,67,32,83,41,41,32,40,40,66,32,40,40,67,39,32,40,67,
-39,32,66,41,41,32,40,67,32,40,40,67,32,61,61,41,32,35,51,52,
-41,41,41,41,32,40,40,40,83,39,32,67,41,32,40,40,67,32,40,40,
-67,32,40,40,67,32,40,40,83,32,95,49,48,54,49,41,32,95,49,48,
-52,49,41,41,32,35,51,52,41,41,32,35,48,41,41,32,95,52,56,48,
-41,41,32,40,40,66,32,40,40,67,39,32,66,41,32,40,66,39,32,95,
-52,56,49,41,41,41,32,40,40,66,32,40,66,32,95,49,48,53,53,41,
-41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,95,50,55,48,41,
-32,95,49,48,53,49,41,41,32,40,40,95,53,48,57,32,95,50,57,49,
-41,32,40,40,95,53,49,53,32,95,50,57,49,41,32,40,95,51,55,51,
-32,35,50,41,41,41,41,41,41,41,41,41,41,32,40,40,40,83,39,32,
-83,41,32,40,40,66,32,40,67,32,83,41,41,32,40,40,66,32,40,40,
-67,39,32,40,67,39,32,66,41,41,32,40,67,32,40,40,67,32,61,61,
-41,32,35,51,57,41,41,41,41,32,40,40,40,83,39,32,67,41,32,40,
-40,67,32,40,40,67,32,40,40,67,32,40,40,83,32,95,49,48,54,49,
-41,32,40,40,40,83,39,32,67,41,32,40,40,66,32,40,67,32,83,41,
-41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,67,39,32,80,
-41,41,32,95,49,48,52,50,41,41,32,40,90,32,75,41,41,41,41,32,
-40,40,67,32,95,49,48,52,54,41,32,34,73,108,108,101,103,97,108,32,
-67,104,97,114,32,108,105,116,101,114,97,108,34,41,41,41,41,32,35,51,
-57,41,41,32,35,48,41,41,32,95,52,56,48,41,41,32,40,40,66,32,
-40,40,67,39,32,66,41,32,40,66,39,32,95,52,56,49,41,41,41,32,
-40,40,66,32,40,66,32,95,49,48,53,53,41,41,32,40,40,40,67,39,
-32,66,41,32,40,40,66,32,95,50,55,48,41,32,95,49,48,53,49,41,
-41,32,40,40,95,53,48,57,32,95,50,57,49,41,32,40,40,95,53,49,
-53,32,95,50,57,49,41,32,40,95,51,55,51,32,35,50,41,41,41,41,
-41,41,41,41,41,41,32,40,40,66,32,40,80,32,95,52,56,48,41,41,
-32,40,40,66,32,90,41,32,40,40,40,67,39,32,40,67,39,32,79,41,
-41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,95,50,55,48,41,
-32,95,49,48,52,54,41,41,32,40,40,66,32,40,95,52,56,50,32,34,
-85,110,114,101,99,111,103,110,105,122,101,100,32,105,110,112,117,116,58,32,
-34,41,41,32,40,95,49,55,49,52,32,95,49,53,48,41,41,41,41,32,
-75,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-32,40,40,65,32,58,49,48,53,54,32,40,40,66,32,40,67,32,40,95,
-52,52,53,32,95,49,52,51,41,41,41,32,40,40,40,83,39,32,40,83,
-39,32,66,41,41,32,40,40,66,32,40,66,32,95,52,56,49,41,41,32,
-40,40,40,67,39,32,66,41,32,95,49,48,52,51,41,32,95,49,48,54,
-56,41,41,41,32,40,40,66,32,40,66,32,95,49,48,53,53,41,41,32,
-40,40,40,67,39,32,66,41,32,40,40,66,32,95,50,55,48,41,32,95,
-49,48,53,49,41,41,32,40,40,40,67,39,32,40,95,53,48,57,32,95,
-50,57,49,41,41,32,95,52,50,56,41,32,35,50,41,41,41,41,41,41,
-32,40,40,65,32,58,49,48,53,55,32,40,40,66,32,40,66,32,40,67,
-32,40,95,52,52,53,32,95,49,52,50,41,41,41,41,32,40,40,40,83,
-39,32,40,83,39,32,40,83,39,32,83,41,41,41,32,40,40,66,32,40,
-66,32,40,66,32,40,83,32,40,40,40,83,39,32,95,49,50,49,41,32,
-95,52,48,57,41,32,40,40,40,83,39,32,95,49,50,49,41,32,40,40,
-66,32,95,49,50,51,41,32,40,40,40,67,39,32,40,95,50,49,49,32,
-95,49,51,50,41,41,32,95,52,52,55,41,32,35,52,54,41,41,41,32,
-40,40,40,67,39,32,40,95,50,49,49,32,95,49,51,52,41,41,32,40,
-95,52,50,54,32,35,50,41,41,32,34,46,46,34,41,41,41,41,41,41,
-41,32,40,40,66,32,40,66,32,40,66,32,40,40,67,39,32,40,95,52,
-52,53,32,95,49,52,50,41,41,32,95,52,52,56,41,41,41,41,32,40,
-40,40,67,39,32,66,41,32,40,66,39,32,40,66,39,32,40,40,66,32,
-67,41,32,40,40,66,32,40,40,67,39,32,67,41,32,40,40,67,32,40,
-40,40,83,39,32,83,39,41,32,40,40,66,32,83,39,41,32,40,40,80,
-32,95,52,57,56,41,32,40,40,40,83,39,32,83,41,32,40,40,66,32,
-40,67,32,83,41,41,32,40,40,66,32,40,40,83,39,32,40,67,39,32,
-66,41,41,32,40,67,32,40,40,67,32,61,61,41,32,35,52,53,41,41,
-41,41,32,40,40,66,32,40,40,83,39,32,83,41,32,85,41,41,32,40,
-40,66,32,40,66,32,40,66,32,90,41,41,41,32,40,40,40,67,39,32,
-40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,67,41,41,32,40,
-40,40,67,39,32,40,67,39,32,40,67,39,32,66,41,41,41,32,40,40,
-40,67,39,32,67,39,41,32,40,40,66,32,95,49,50,50,41,32,40,40,
-40,67,39,32,40,95,50,49,49,32,95,49,51,50,41,41,32,95,49,52,
-56,41,32,35,49,48,49,41,41,41,32,95,49,52,50,41,41,32,40,40,
-66,32,95,52,57,57,41,32,40,40,40,83,39,32,80,41,32,40,40,66,
-32,40,95,52,56,49,32,35,49,48,49,41,41,32,40,40,66,32,40,95,
-52,56,49,32,35,52,53,41,41,32,40,85,32,75,41,41,41,41,32,40,
-85,32,65,41,41,41,41,41,41,32,40,95,52,52,53,32,95,49,52,50,
-41,41,41,41,41,41,41,32,40,40,40,83,39,32,83,41,32,40,40,66,
-32,40,67,32,83,41,41,32,40,40,66,32,40,40,83,39,32,40,67,39,
-32,66,41,41,32,40,67,32,40,40,67,32,61,61,41,32,35,52,51,41,
-41,41,41,32,40,40,66,32,40,40,83,39,32,83,41,32,85,41,41,32,
-40,40,66,32,40,66,32,40,66,32,90,41,41,41,32,40,40,40,67,39,
-32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,67,41,41,32,
-40,40,40,67,39,32,40,67,39,32,40,67,39,32,66,41,41,41,32,40,
-40,40,67,39,32,67,39,41,32,40,40,66,32,95,49,50,50,41,32,40,
-40,40,67,39,32,40,95,50,49,49,32,95,49,51,50,41,41,32,95,49,
-52,56,41,32,35,49,48,49,41,41,41,32,95,49,52,50,41,41,32,40,
-40,66,32,95,52,57,57,41,32,40,40,40,83,39,32,80,41,32,40,40,
-66,32,40,95,52,56,49,32,35,49,48,49,41,41,32,40,40,66,32,40,
-95,52,56,49,32,35,52,51,41,41,32,40,85,32,75,41,41,41,41,32,
-40,85,32,65,41,41,41,41,41,41,32,40,95,52,52,53,32,95,49,52,
-50,41,41,41,41,41,41,41,32,40,40,66,32,40,83,32,40,85,32,95,
-52,57,56,41,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,
-40,67,39,32,66,41,32,40,40,66,32,67,41,32,40,40,40,67,39,32,
-40,67,39,32,66,41,41,32,40,40,67,32,40,40,40,67,39,32,67,39,
-41,32,40,40,66,32,95,49,50,50,41,32,40,40,40,67,39,32,40,95,
-50,49,49,32,95,49,51,50,41,41,32,95,49,52,56,41,32,35,49,48,
-49,41,41,41,32,95,49,52,50,41,41,32,95,52,57,56,41,41,32,40,
-40,66,32,95,52,57,57,41,32,40,40,40,83,39,32,80,41,32,40,40,
-66,32,40,95,52,56,49,32,35,49,48,49,41,41,32,40,85,32,75,41,
-41,41,32,40,85,32,65,41,41,41,41,41,41,32,40,95,52,52,53,32,
-95,49,52,50,41,41,41,41,41,41,41,41,41,32,40,67,32,80,41,41,
-41,32,40,40,66,32,40,66,32,85,41,41,32,40,40,66,32,40,67,32,
-66,41,41,32,95,52,56,50,41,41,41,41,41,32,40,40,40,83,39,32,
-40,83,39,32,66,41,41,32,40,40,66,32,40,66,32,95,52,56,49,41,
-41,32,40,40,40,67,39,32,66,41,32,95,49,48,52,52,41,32,95,49,
-55,51,54,41,41,41,32,40,40,66,32,40,66,32,95,49,48,53,53,41,
-41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,95,50,55,48,41,
-32,95,49,48,53,49,41,41,32,95,52,50,56,41,41,41,41,41,41,41,
-41,32,40,40,40,67,39,32,66,41,32,40,66,39,32,95,52,56,50,41,
-41,32,40,40,40,67,39,32,66,41,32,95,52,56,50,41,32,40,95,52,
-56,49,32,35,52,54,41,41,41,41,41,41,41,32,40,40,40,67,39,32,
-66,41,32,40,66,39,32,40,40,40,83,39,32,67,39,41,32,40,40,66,
-32,40,83,39,32,95,52,56,49,41,41,32,40,40,40,67,39,32,66,41,
-32,95,49,48,52,51,41,32,95,51,53,57,41,41,41,32,40,40,66,32,
-40,67,39,32,95,49,48,53,53,41,41,32,40,40,40,67,39,32,66,41,
-32,40,40,66,32,95,50,55,48,41,32,95,49,48,53,49,41,41,32,95,
-52,50,56,41,41,41,41,41,32,95,52,56,50,41,41,41,41,32,40,40,
-65,32,58,49,48,53,56,32,40,40,66,32,89,41,32,40,40,40,83,39,
-32,40,67,39,32,67,41,41,32,40,40,66,32,40,66,32,40,40,83,39,
-32,83,39,41,32,40,40,67,32,61,61,41,32,35,48,41,41,41,41,32,
-40,40,40,83,39,32,66,41,32,40,40,66,32,40,83,39,32,83,41,41,
-32,40,40,66,32,40,66,32,40,67,32,83,41,41,41,32,40,40,66,32,
-40,66,32,40,40,83,39,32,40,67,39,32,66,41,41,32,40,67,32,40,
-40,67,32,61,61,41,32,35,49,50,51,41,41,41,41,41,32,40,40,66,
-32,40,66,32,40,83,32,80,41,41,41,32,40,40,66,32,40,66,32,40,
-40,67,39,32,40,67,39,32,66,41,41,32,40,67,32,40,40,67,32,61,
-61,41,32,35,52,53,41,41,41,41,41,32,40,40,40,67,39,32,66,41,
-32,40,40,66,32,95,49,48,53,56,41,32,40,40,67,32,95,49,48,53,
-49,41,32,35,50,41,41,41,32,40,40,67,32,40,95,53,48,57,32,95,
-50,57,49,41,41,32,35,49,41,41,41,41,41,41,41,41,32,40,40,40,
-83,39,32,66,41,32,40,40,66,32,40,83,39,32,83,41,41,32,40,40,
-66,32,40,66,32,40,67,32,83,41,41,41,32,40,40,66,32,40,66,32,
-40,40,83,39,32,40,67,39,32,66,41,41,32,40,67,32,40,40,67,32,
-61,61,41,32,35,52,53,41,41,41,41,41,32,40,40,66,32,40,66,32,
-40,83,32,80,41,41,41,32,40,40,66,32,40,66,32,40,40,67,39,32,
-40,67,39,32,66,41,41,32,40,67,32,40,40,67,32,61,61,41,32,35,
-49,50,53,41,41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,
-66,32,95,49,48,53,56,41,32,40,40,67,32,95,49,48,53,49,41,32,
-35,50,41,41,41,32,40,40,67,32,40,95,53,49,48,32,95,50,57,49,
-41,41,32,35,49,41,41,41,41,41,41,41,41,32,40,40,40,83,39,32,
-66,41,32,40,40,66,32,40,83,39,32,83,41,41,32,40,40,66,32,40,
-66,32,40,67,32,83,41,41,41,32,40,40,66,32,40,66,32,40,40,67,
-39,32,40,67,39,32,66,41,41,32,40,67,32,40,40,67,32,61,61,41,
-32,35,49,48,41,41,41,41,41,32,40,40,66,32,95,49,48,53,56,41,
-32,95,49,48,53,48,41,41,41,41,41,32,40,40,66,32,40,40,67,39,
-32,40,83,39,32,83,41,41,32,40,40,66,32,40,66,32,40,67,32,83,
-41,41,41,32,40,66,32,40,40,67,39,32,40,67,39,32,66,41,41,32,
-40,67,32,40,40,67,32,61,61,41,32,35,49,51,41,41,41,41,41,41,
-41,32,40,40,40,83,39,32,66,41,32,40,40,66,32,80,41,32,40,40,
-40,67,39,32,79,41,32,40,40,67,32,95,49,48,52,54,41,32,34,85,
-110,99,108,111,115,101,100,32,123,45,32,99,111,109,109,101,110,116,34,41,
-41,32,75,41,41,41,32,40,40,66,32,90,41,32,40,40,66,32,95,49,
-48,53,56,41,32,40,40,67,32,95,49,48,53,49,41,32,35,49,41,41,
-41,41,41,41,41,41,41,41,32,95,49,48,53,53,41,41,41,32,40,40,
-65,32,58,49,48,53,57,32,40,40,66,32,89,41,32,40,40,40,67,39,
-32,66,41,32,40,40,66,32,83,41,32,40,40,66,32,40,83,32,83,41,
-41,32,40,40,66,32,40,66,32,40,66,32,90,41,41,41,32,40,40,66,
-32,40,66,32,40,40,67,39,32,67,41,32,40,67,32,40,40,67,32,61,
-61,41,32,35,49,48,41,41,41,41,41,32,95,49,48,53,53,41,41,41,
-41,41,32,40,40,66,32,40,80,32,95,52,56,48,41,41,32,75,41,41,
-41,41,32,40,40,65,32,58,49,48,54,48,32,40,40,83,32,40,40,83,
-32,83,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,
-40,67,39,32,67,41,32,40,40,40,83,39,32,67,41,32,40,40,40,83,
-39,32,67,41,32,40,40,40,83,39,32,67,41,32,40,40,40,83,39,32,
-67,41,32,40,40,40,83,39,32,67,41,32,40,40,40,83,39,32,67,41,
-32,40,40,40,83,39,32,80,41,32,40,90,32,40,90,32,75,41,41,41,
-32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,
-75,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,
-32,40,90,32,75,41,41,41,32,75,41,41,41,32,75,41,41,41,41,32,
-40,40,40,83,39,32,95,52,56,49,41,32,40,40,66,32,95,49,48,52,
-56,41,32,95,49,48,54,54,41,41,32,73,41,41,41,32,40,40,65,32,
-58,49,48,54,49,32,40,40,66,32,89,41,32,40,40,40,67,39,32,66,
-41,32,40,66,39,32,40,40,66,32,40,83,39,32,40,83,39,32,66,41,
-41,41,32,40,40,66,32,40,66,32,40,66,32,83,41,41,41,32,40,40,
-66,32,40,66,32,40,66,32,85,41,41,41,32,40,40,40,67,39,32,40,
-67,39,32,40,67,39,32,67,41,41,41,32,40,40,66,32,40,66,32,80,
-41,41,32,40,40,40,67,39,32,66,41,32,95,49,48,52,54,41,32,40,
-40,66,32,40,95,52,56,50,32,34,85,110,109,97,116,99,104,101,100,32,
-34,41,41,32,40,40,67,32,79,41,32,75,41,41,41,41,41,32,95,52,
-56,48,41,41,41,41,41,41,32,40,40,40,83,39,32,40,83,39,32,40,
-83,39,32,40,83,39,32,40,83,39,32,40,67,39,32,40,67,39,32,66,
-41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,
-32,40,66,32,40,66,32,40,67,32,40,40,67,32,61,61,41,32,35,57,
-50,41,41,41,41,41,41,41,41,32,40,40,66,32,40,40,83,39,32,40,
-83,39,32,40,83,39,32,40,83,39,32,83,41,41,41,41,32,40,40,66,
-32,40,66,32,40,66,32,40,66,32,40,67,32,83,41,41,41,41,41,32,
-40,40,66,32,40,40,67,39,32,66,41,32,40,66,39,32,40,40,66,32,
-40,67,39,32,40,67,39,32,66,41,41,41,32,40,40,66,32,67,41,32,
-40,95,50,49,49,32,95,49,51,50,41,41,41,41,41,41,32,40,40,66,
-32,40,66,32,40,66,32,67,41,41,41,32,40,40,66,32,40,67,39,32,
-80,41,41,32,40,40,67,32,66,41,32,95,52,52,50,41,41,41,41,41,
-41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
-80,32,40,40,40,110,111,77,97,116,99,104,32,34,115,114,99,47,77,105,
-99,114,111,72,115,47,76,101,120,46,104,115,34,41,32,35,49,53,56,41,
-32,35,49,41,41,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,
-32,40,67,39,32,40,67,39,32,66,41,41,41,41,32,40,40,66,32,40,
-66,32,40,66,32,66,39,41,41,41,32,40,40,67,32,40,67,39,32,40,
-67,39,32,66,41,41,41,32,40,40,67,32,40,95,53,48,57,32,95,50,
-57,49,41,41,32,35,49,41,41,41,41,32,40,67,32,95,52,56,49,41,
-41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,40,67,39,
-32,66,41,32,40,40,66,32,67,41,32,40,40,66,32,95,49,48,54,50,
-41,32,40,40,67,32,40,95,53,48,57,32,95,50,57,49,41,41,32,35,
-49,41,41,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,
-67,39,32,66,41,41,41,32,40,40,66,32,40,66,32,66,39,41,41,32,
-40,66,32,40,66,32,67,41,41,41,41,32,40,67,32,95,52,56,49,41,
-41,41,41,41,41,41,32,40,40,65,32,58,49,48,54,50,32,40,40,40,
-83,39,32,83,41,32,40,40,66,32,40,67,32,83,41,41,32,40,40,66,
-32,40,40,67,39,32,40,67,39,32,66,41,41,32,40,67,32,40,40,67,
-32,61,61,41,32,35,49,49,48,41,41,41,41,32,40,40,66,32,67,41,
-32,40,40,66,32,40,80,32,35,49,48,41,41,32,40,40,67,32,40,95,
-53,48,57,32,95,50,57,49,41,41,32,35,49,41,41,41,41,41,41,32,
-40,40,40,83,39,32,83,41,32,40,40,66,32,40,67,32,83,41,41,32,
-40,40,66,32,40,40,67,39,32,40,67,39,32,66,41,41,32,40,67,32,
-40,40,67,32,61,61,41,32,35,49,49,52,41,41,41,41,32,40,40,66,
-32,67,41,32,40,40,66,32,40,80,32,35,49,51,41,41,32,40,40,67,
-32,40,95,53,48,57,32,95,50,57,49,41,41,32,35,49,41,41,41,41,
-41,41,32,40,40,40,83,39,32,83,41,32,40,40,66,32,40,67,32,83,
-41,41,32,40,40,66,32,40,40,67,39,32,40,67,39,32,66,41,41,32,
-40,67,32,40,40,67,32,61,61,41,32,35,49,49,54,41,41,41,41,32,
-40,40,66,32,67,41,32,40,40,66,32,40,80,32,35,57,41,41,32,40,
-40,67,32,40,95,53,48,57,32,95,50,57,49,41,41,32,35,49,41,41,
-41,41,41,41,32,40,40,40,83,39,32,83,41,32,40,40,66,32,40,67,
-32,83,41,41,32,40,40,66,32,40,40,67,39,32,40,67,39,32,66,41,
-41,32,40,67,32,40,40,67,32,61,61,41,32,35,57,56,41,41,41,41,
-32,40,40,66,32,67,41,32,40,40,66,32,40,80,32,35,56,41,41,32,
-40,40,67,32,40,95,53,48,57,32,95,50,57,49,41,41,32,35,49,41,
-41,41,41,41,41,32,40,40,40,83,39,32,80,41,32,40,40,40,67,39,
-32,67,41,32,40,80,32,35,56,56,41,41,32,95,52,56,48,41,41,32,
-40,40,66,32,40,66,32,67,41,41,32,40,40,66,32,40,67,32,80,41,
-41,32,40,40,67,32,40,95,53,48,57,32,95,50,57,49,41,41,32,35,
-49,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,49,48,54,51,
-32,40,40,67,32,40,95,52,53,49,32,95,49,51,50,41,41,32,34,40,
-41,91,93,44,123,125,96,59,34,41,41,32,40,40,65,32,58,49,48,54,
-52,32,40,40,66,32,40,66,32,40,66,32,40,67,32,40,95,52,52,53,
-32,95,57,57,51,41,41,41,41,41,32,40,40,40,83,39,32,40,83,39,
-32,40,83,39,32,40,83,39,32,83,41,41,41,41,32,40,40,66,32,40,
-66,32,40,66,32,40,66,32,40,67,32,83,41,41,41,41,41,32,40,40,
-66,32,40,66,32,40,66,32,40,66,32,40,40,83,39,32,40,67,39,32,
-66,41,41,32,40,67,32,40,40,67,32,61,61,41,32,35,52,54,41,41,
-41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,
-40,83,39,32,83,41,32,85,41,41,41,41,41,32,40,40,66,32,40,66,
-32,40,66,32,40,66,32,40,66,32,40,66,32,90,41,41,41,41,41,41,
-32,40,40,40,83,39,32,40,83,39,32,40,83,39,32,40,83,39,32,40,
-67,39,32,40,83,39,32,67,41,41,41,41,41,41,32,40,40,66,32,40,
-66,32,40,66,32,40,66,32,40,40,67,39,32,66,41,32,40,40,66,32,
-67,41,32,40,40,66,32,40,40,83,39,32,67,39,41,32,95,49,52,48,
-41,41,32,40,40,40,67,39,32,67,41,32,40,40,66,32,40,40,83,39,
-32,83,39,41,32,95,49,51,57,41,41,32,40,40,40,67,39,32,40,67,
-39,32,66,41,41,32,40,67,32,95,57,57,50,41,41,32,40,85,32,95,
-57,57,50,41,41,41,41,32,40,85,32,95,57,57,51,41,41,41,41,41,
-41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,40,
-40,66,32,40,66,32,83,41,41,32,40,40,66,32,40,67,39,32,95,49,
-48,54,52,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,95,
-50,55,48,41,32,95,49,48,53,49,41,41,32,40,40,66,32,40,40,95,
-53,48,57,32,95,50,57,49,41,32,40,40,95,53,49,53,32,95,50,57,
-49,41,32,40,95,51,55,51,32,35,49,41,41,41,41,32,95,52,50,56,
-41,41,41,41,41,32,40,67,32,95,52,56,49,41,41,41,41,32,40,40,
-66,32,40,66,32,40,66,32,40,66,32,40,40,67,39,32,67,41,32,40,
-67,32,95,52,52,53,41,41,41,41,41,41,32,40,40,66,32,40,40,67,
-39,32,40,67,39,32,40,83,39,32,40,83,39,32,66,41,41,41,41,32,
-40,40,40,67,39,32,66,41,32,40,66,39,32,95,49,48,54,53,41,41,
-32,40,40,66,32,40,66,32,95,52,52,50,41,41,32,40,67,32,95,52,
-56,49,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,95,49,
-48,53,53,41,41,41,32,40,40,40,67,39,32,66,41,32,40,66,39,32,
-40,40,66,32,95,50,55,48,41,32,95,49,48,53,49,41,41,41,32,40,
-40,40,67,39,32,66,41,32,40,40,66,32,40,95,53,48,57,32,95,50,
-57,49,41,41,32,40,40,66,32,40,40,95,53,48,57,32,95,50,57,49,
-41,32,40,40,95,53,49,53,32,95,50,57,49,41,32,40,95,51,55,51,
-32,35,49,41,41,41,41,32,95,52,50,56,41,41,41,32,95,52,50,56,
-41,41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,40,67,39,
-32,40,67,39,32,40,83,39,32,66,41,41,41,32,40,40,66,32,40,66,
-32,40,66,32,95,52,56,49,41,41,41,32,40,40,40,67,39,32,66,41,
-32,95,49,48,52,48,41,32,95,52,52,50,41,41,41,41,32,40,40,66,
-32,40,66,32,95,49,48,53,53,41,41,32,40,40,40,67,39,32,66,41,
-32,40,40,66,32,95,50,55,48,41,32,95,49,48,53,49,41,41,32,95,
-52,50,56,41,41,41,41,41,41,32,40,40,65,32,58,49,48,54,53,32,
-40,40,66,32,40,66,32,40,40,83,39,32,67,41,32,40,40,67,32,40,
-40,40,67,39,32,83,39,41,32,40,40,66,32,83,39,41,32,40,40,67,
-32,40,95,52,53,49,32,95,49,51,52,41,41,32,40,40,79,32,34,108,
-101,116,34,41,32,40,40,79,32,34,119,104,101,114,101,34,41,32,40,40,
-79,32,34,100,111,34,41,32,40,40,79,32,34,111,102,34,41,32,75,41,
-41,41,41,41,41,41,32,40,67,32,95,52,56,49,41,41,41,32,40,40,
-66,32,40,67,32,95,52,56,49,41,41,32,40,40,83,32,40,40,83,32,
-83,41,32,40,40,40,83,39,32,40,67,39,32,40,67,39,32,66,41,41,
-41,32,40,40,40,67,39,32,40,83,39,32,67,41,41,32,40,40,40,67,
-39,32,40,83,39,32,67,41,41,32,40,40,66,32,40,40,83,39,32,67,
-41,32,40,40,40,83,39,32,67,41,32,40,40,40,83,39,32,67,41,32,
-40,40,40,83,39,32,67,41,32,40,40,40,83,39,32,80,41,32,40,90,
-32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,
-75,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,
-41,32,40,40,66,32,90,41,32,40,40,67,39,32,67,41,32,40,67,32,
-40,40,67,32,61,61,41,32,35,49,50,51,41,41,41,41,41,41,32,40,
-90,32,75,41,41,41,32,75,41,41,32,40,40,66,32,90,41,32,40,40,
-40,67,39,32,83,41,32,40,40,66,32,40,67,32,83,41,41,32,40,40,
-66,32,40,66,32,90,41,41,32,40,40,40,67,39,32,40,83,39,32,67,
-41,41,32,40,40,40,67,39,32,40,83,39,32,67,41,41,32,40,40,40,
-67,39,32,40,83,39,32,67,41,41,32,40,40,66,32,40,40,83,39,32,
-67,41,32,40,40,40,83,39,32,67,41,32,40,40,40,83,39,32,67,41,
-32,40,40,40,83,39,32,67,41,32,40,40,40,83,39,32,80,41,32,40,
-90,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,40,90,
-32,75,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,
-41,41,32,40,40,66,32,90,41,32,40,40,67,39,32,67,41,32,40,67,
-32,40,40,67,32,61,61,41,32,35,49,50,51,41,41,41,41,41,41,32,
-40,90,32,75,41,41,41,32,75,41,41,32,75,41,41,41,41,32,40,40,
-40,83,39,32,95,52,56,49,41,32,40,40,66,32,95,49,48,52,55,41,
-32,95,49,48,54,54,41,41,32,73,41,41,41,41,41,41,32,40,40,40,
-83,39,32,95,52,56,49,41,32,40,40,66,32,95,49,48,52,55,41,32,
-95,49,48,54,54,41,41,32,73,41,41,41,41,41,41,41,32,95,49,48,
-52,48,41,41,32,40,40,65,32,58,49,48,54,54,32,40,40,80,32,40,
-40,95,49,48,53,50,32,35,48,41,32,35,49,41,41,32,40,90,32,40,
-40,67,32,40,40,67,32,40,40,67,32,40,40,67,32,40,40,67,32,40,
-40,67,32,40,40,67,32,40,40,80,32,40,90,32,75,41,41,32,75,41,
-41,32,75,41,41,32,75,41,41,32,75,41,41,32,75,41,41,32,75,41,
-41,32,73,41,41,32,73,41,41,41,41,32,40,40,65,32,58,49,48,54,
-55,32,40,40,66,32,89,41,32,40,40,40,83,39,32,40,83,39,32,83,
-41,41,32,40,40,40,67,39,32,40,83,39,32,40,83,39,32,66,41,41,
-41,32,40,40,40,67,39,32,66,41,32,40,66,39,32,83,41,41,32,40,
-40,66,32,40,40,83,39,32,40,83,39,32,66,41,41,32,66,39,41,41,
-32,40,40,66,32,40,66,32,40,40,83,39,32,66,41,32,40,66,39,32,
-40,40,66,32,40,67,39,32,66,41,41,32,40,40,40,83,39,32,67,41,
-32,40,40,40,83,39,32,67,41,32,40,40,40,83,39,32,67,41,32,40,
-40,40,83,39,32,67,41,32,40,40,40,83,39,32,67,41,32,40,40,40,
-83,39,32,67,41,32,40,40,40,83,39,32,80,41,32,40,90,32,40,90,
-32,75,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,
-41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,40,90,
-32,75,41,41,41,32,40,90,32,75,41,41,41,32,75,41,41,41,41,41,
-41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,
-40,67,39,32,40,67,39,32,66,41,41,41,41,41,41,32,40,40,66,32,
-40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,83,39,
-32,67,41,41,41,41,41,32,40,40,66,32,40,66,32,40,40,83,39,32,
-66,41,32,40,66,39,32,40,40,66,32,83,41,32,40,67,32,40,95,50,
-49,49,32,95,50,57,53,41,41,41,41,41,41,41,32,40,40,66,32,40,
-40,67,39,32,40,67,39,32,66,41,41,32,40,40,66,32,66,39,41,32,
-40,40,66,32,40,66,32,67,41,41,32,40,40,67,39,32,67,41,32,40,
-67,32,40,95,53,50,55,32,95,50,57,54,41,41,41,41,41,41,41,32,
-40,40,66,32,40,66,32,40,40,67,39,32,95,52,56,49,41,32,40,40,
-40,67,39,32,95,49,48,52,53,41,32,95,49,48,54,54,41,32,35,49,
-50,53,41,41,41,41,32,40,67,32,95,49,48,54,55,41,41,41,41,41,
-41,32,40,40,83,39,32,95,52,56,49,41,32,40,40,40,67,39,32,95,
-49,48,52,53,41,32,95,49,48,54,54,41,32,35,53,57,41,41,41,41,
-32,95,49,48,53,51,41,41,41,41,41,32,40,40,66,32,40,67,32,83,
-41,41,32,40,40,66,32,40,40,67,39,32,40,67,39,32,66,41,41,32,
-40,40,40,83,39,32,67,41,32,40,40,40,83,39,32,67,41,32,40,40,
-40,83,39,32,67,41,32,40,40,40,83,39,32,67,41,32,40,40,40,83,
-39,32,67,41,32,40,40,40,83,39,32,67,41,32,40,40,40,83,39,32,
-80,41,32,40,90,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,
-41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,40,90,
-32,75,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,
-41,32,75,41,41,41,32,90,41,41,41,41,32,40,40,40,83,39,32,66,
-41,32,40,40,66,32,83,41,32,40,40,40,67,39,32,40,83,39,32,66,
-41,41,32,40,40,83,32,40,40,40,67,39,32,83,39,41,32,83,39,41,
-32,40,40,67,32,83,41,32,40,40,40,83,39,32,67,41,32,40,40,40,
-83,39,32,40,67,39,32,67,39,41,41,32,40,40,40,83,39,32,67,41,
-32,40,40,40,83,39,32,67,41,32,40,40,40,83,39,32,67,41,32,40,
-40,40,83,39,32,67,41,32,40,40,40,83,39,32,67,41,32,40,40,40,
-83,39,32,80,41,32,40,90,32,40,90,32,75,41,41,41,32,40,90,32,
-75,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,
-32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,
-75,41,41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,40,
-40,40,67,39,32,66,41,32,40,40,66,32,83,41,32,40,67,32,40,40,
-67,32,40,95,53,50,57,32,95,50,57,54,41,41,32,35,48,41,41,41,
-41,32,40,40,40,83,39,32,66,41,32,40,40,66,32,95,52,56,49,41,
-32,40,40,40,67,39,32,95,49,48,52,53,41,32,95,49,48,54,54,41,
-32,35,49,50,51,41,41,41,32,40,40,67,39,32,95,49,48,54,55,41,
-32,40,40,67,32,79,41,32,75,41,41,41,41,41,32,95,49,48,53,51,
-41,41,41,32,75,41,41,41,41,32,40,40,40,67,39,32,40,83,39,32,
-66,41,41,32,40,40,66,32,40,66,32,40,83,39,32,66,41,41,41,32,
-40,40,66,32,40,40,67,39,32,66,41,32,83,41,41,32,40,40,40,67,
-39,32,40,67,39,32,40,83,39,32,67,41,41,41,32,40,40,66,32,40,
-66,32,40,40,83,39,32,40,67,39,32,67,39,41,41,32,40,40,40,83,
-39,32,67,41,32,40,40,40,83,39,32,67,41,32,40,40,40,83,39,32,
-67,41,32,40,40,40,83,39,32,67,41,32,40,40,40,83,39,32,67,41,
-32,40,40,40,83,39,32,80,41,32,40,90,32,40,90,32,75,41,41,41,
-32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,
-75,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,
-32,40,90,32,75,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,
-32,40,67,39,32,40,67,39,32,66,41,41,41,41,32,40,40,66,32,40,
-40,67,39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,83,
-41,41,32,40,40,66,32,67,41,32,40,67,32,40,95,53,50,57,32,95,
-50,57,54,41,41,41,41,41,41,32,40,40,66,32,40,40,83,39,32,66,
-41,32,40,40,66,32,95,52,56,49,41,32,40,40,40,67,39,32,95,49,
-48,52,53,41,32,95,49,48,54,54,41,32,35,49,50,51,41,41,41,41,
-32,40,40,66,32,40,67,39,32,95,49,48,54,55,41,41,32,40,67,32,
-95,52,56,49,41,41,41,41,41,32,95,49,48,53,51,41,41,41,32,75,
-41,41,41,41,32,40,40,66,32,40,40,83,39,32,40,67,39,32,66,41,
-41,32,40,67,32,40,40,67,32,61,61,41,32,35,48,41,41,41,41,32,
-40,40,67,32,40,83,39,32,66,41,41,32,40,40,40,83,39,32,40,67,
-39,32,40,67,39,32,67,41,41,41,32,40,40,40,83,39,32,40,67,39,
-32,40,67,39,32,67,41,41,41,32,40,40,40,83,39,32,40,67,39,32,
-67,41,41,32,40,40,40,83,39,32,66,41,32,40,40,66,32,40,83,39,
-32,67,39,41,41,32,40,40,40,83,39,32,67,41,32,40,40,40,83,39,
-32,67,41,32,40,40,40,83,39,32,67,41,32,40,40,40,83,39,32,80,
-41,32,40,90,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,
-32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,
-75,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,90,41,41,41,
-32,40,40,40,67,39,32,66,41,32,40,66,39,32,40,66,39,32,40,40,
-66,32,67,41,32,40,67,32,40,40,67,32,61,61,41,32,35,49,50,53,
-41,41,41,41,41,41,32,40,40,66,32,40,40,67,39,32,66,41,32,95,
-52,56,49,41,41,32,95,49,48,54,55,41,41,41,41,41,32,40,90,32,
-75,41,41,41,32,75,41,41,32,75,41,41,41,41,41,41,32,40,40,67,
-32,83,41,32,40,40,66,32,90,41,32,40,40,40,83,39,32,67,41,32,
-40,40,40,83,39,32,67,41,32,40,40,40,83,39,32,67,41,32,40,40,
-40,83,39,32,67,41,32,40,40,40,83,39,32,67,41,32,40,40,40,83,
-39,32,67,41,32,40,40,40,83,39,32,67,41,32,40,40,40,83,39,32,
-80,41,32,40,90,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,
-41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,40,90,
-32,75,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,67,
-41,32,40,67,32,40,40,67,32,61,61,41,32,35,49,50,53,41,41,41,
-41,32,40,40,40,67,39,32,95,52,56,49,41,32,40,40,67,32,95,49,
-48,52,54,41,32,34,108,97,121,111,117,116,32,101,114,114,111,114,32,125,
-34,41,41,32,95,52,56,48,41,41,41,41,32,40,90,32,75,41,41,41,
-32,75,41,41,32,75,41,41,41,41,41,41,32,40,40,40,83,39,32,66,
-41,32,40,40,66,32,83,41,32,40,40,66,32,40,67,32,83,41,41,32,
-40,40,40,67,39,32,40,83,39,32,40,67,39,32,67,41,41,41,32,40,
-40,40,67,39,32,40,83,39,32,40,67,39,32,67,41,41,41,32,40,40,
-40,67,39,32,40,83,39,32,67,41,41,32,40,40,66,32,40,40,83,39,
-32,40,83,39,32,67,39,41,41,32,40,40,40,83,39,32,67,41,32,40,
-40,40,83,39,32,67,41,32,40,40,40,83,39,32,67,41,32,40,40,40,
-83,39,32,80,41,32,40,90,32,40,90,32,75,41,41,41,32,40,90,32,
-75,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,
-32,40,90,32,75,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
-90,41,41,41,32,40,40,66,32,40,40,67,39,32,66,41,32,40,66,39,
-32,40,40,66,32,67,41,32,40,67,32,40,40,67,32,61,61,41,32,35,
-49,50,51,41,41,41,41,41,41,32,40,40,66,32,40,40,67,39,32,66,
-41,32,95,52,56,49,41,41,32,40,40,66,32,95,49,48,54,55,41,32,
-40,95,52,56,49,32,40,40,95,53,49,53,32,95,50,57,49,41,32,40,
-95,51,55,51,32,35,48,41,41,41,41,41,41,41,41,41,32,40,90,32,
-75,41,41,41,32,75,41,41,32,75,41,41,41,41,32,40,40,40,67,39,
-32,66,41,32,40,40,66,32,67,41,32,40,40,66,32,40,83,32,73,41,
-41,32,40,40,40,67,39,32,67,41,32,40,40,67,32,40,40,40,67,39,
-32,83,39,41,32,83,39,41,32,40,40,40,67,39,32,66,41,32,40,85,
-32,95,52,56,48,41,41,32,40,90,32,75,41,41,41,41,32,40,40,66,
-32,90,41,32,40,40,40,67,39,32,66,41,32,40,40,67,32,67,39,41,
-32,40,40,66,32,40,95,52,56,49,32,40,40,95,49,48,52,53,32,40,
-40,95,49,48,53,50,32,35,48,41,32,35,48,41,41,32,35,49,50,53,
-41,41,41,32,40,40,67,32,95,49,48,54,55,41,32,95,52,56,48,41,
-41,41,41,32,40,90,32,75,41,41,41,41,41,32,40,40,40,110,111,77,
-97,116,99,104,32,34,115,114,99,47,77,105,99,114,111,72,115,47,76,101,
-120,46,104,115,34,41,32,35,50,49,57,41,32,35,49,41,41,41,41,41,
-32,40,40,67,39,32,66,41,32,95,52,56,49,41,41,41,41,41,41,41,
-32,40,40,65,32,58,49,48,54,56,32,40,40,95,52,49,54,32,40,40,
-40,67,39,32,66,41,32,40,40,66,32,40,95,53,48,57,32,95,51,50,
-50,41,41,32,40,40,67,32,40,95,53,49,49,32,95,51,50,50,41,41,
-32,40,40,95,53,49,53,32,95,51,50,50,41,32,40,95,51,55,51,32,
-35,49,54,41,41,41,41,41,32,40,40,66,32,40,95,51,56,54,32,95,
-50,57,50,41,41,32,95,49,52,55,41,41,41,32,40,95,51,55,51,32,
-35,48,41,41,41,32,40,40,65,32,58,49,48,54,57,32,34,118,53,46,
-49,92,49,48,38,34,41,32,40,40,65,32,58,49,48,55,48,32,34,48,
-46,56,46,52,46,48,34,41,32,40,40,65,32,58,49,48,55,49,32,40,
-40,40,95,51,51,32,95,49,53,54,56,41,32,95,49,53,52,49,41,32,
-40,40,66,32,40,40,95,51,51,32,95,49,53,54,56,41,32,40,95,49,
-53,52,52,32,34,77,72,83,68,73,82,34,41,41,41,32,40,40,40,67,
-39,32,66,41,32,40,40,66,32,40,67,32,40,40,40,83,39,32,83,41,
-32,40,40,40,67,39,32,67,41,32,40,40,66,32,40,40,83,39,32,67,
-39,41,32,40,40,95,52,53,49,32,95,49,51,52,41,32,34,45,45,118,
-101,114,115,105,111,110,34,41,41,41,32,40,40,66,32,40,67,32,40,40,
-40,67,39,32,83,39,41,32,40,95,52,49,51,32,40,40,95,50,55,50,
-32,40,40,67,32,40,95,50,49,50,32,95,49,51,52,41,41,32,40,40,
-79,32,35,52,53,41,32,75,41,41,41,32,40,95,52,50,54,32,35,49,
-41,41,41,41,32,95,49,48,50,52,41,41,41,32,40,40,40,67,39,32,
-40,67,39,32,40,67,39,32,80,41,41,41,32,40,40,40,67,39,32,40,
-67,39,32,66,41,41,32,95,49,48,55,50,41,32,40,95,57,56,48,32,
-40,40,40,95,57,55,49,32,34,99,111,109,109,97,110,100,45,108,105,110,
-101,34,41,32,35,48,41,32,35,48,41,41,41,41,32,40,75,32,40,75,
-32,40,95,50,53,32,34,85,115,97,103,101,58,32,109,104,115,32,91,45,
-118,93,32,91,45,108,93,32,91,45,114,93,32,91,45,99,93,32,91,45,
-105,80,65,84,72,93,32,91,45,111,70,73,76,69,93,32,91,77,111,100,
-117,108,101,78,97,109,101,93,34,41,41,41,41,41,41,41,32,40,40,95,
-50,55,48,32,95,49,53,56,56,41,32,40,40,95,52,56,50,32,34,77,
-105,99,114,111,72,115,44,32,118,101,114,115,105,111,110,32,34,41,32,40,
-40,95,52,56,50,32,95,49,48,55,48,41,32,40,40,95,52,56,50,32,
-34,44,32,99,111,109,98,105,110,97,116,111,114,32,102,105,108,101,32,118,
-101,114,115,105,111,110,32,34,41,32,95,49,48,54,57,41,41,41,41,41,
-41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,
-40,40,40,67,39,32,83,41,32,40,40,66,32,40,83,32,40,40,40,83,
-39,32,95,55,48,52,41,32,40,40,66,32,95,52,50,56,41,32,40,95,
-52,49,51,32,40,40,67,32,40,95,50,49,49,32,95,49,51,52,41,41,
-32,34,45,118,34,41,41,41,41,32,40,40,95,52,53,49,32,95,49,51,
-52,41,32,34,45,114,34,41,41,41,41,32,40,40,66,32,40,66,32,40,
-95,52,56,49,32,40,40,79,32,35,52,54,41,32,75,41,41,41,41,32,
-40,40,40,67,39,32,66,41,32,40,40,66,32,95,52,56,49,41,32,40,
-40,67,32,95,52,56,50,41,32,34,47,108,105,98,34,41,41,41,32,40,
-40,66,32,95,52,57,52,41,32,40,95,52,49,50,32,40,40,95,52,51,
-53,32,95,49,51,50,41,32,34,45,105,34,41,41,41,41,41,41,41,32,
-40,40,66,32,40,95,50,55,48,32,95,52,52,55,41,41,32,40,40,40,
-67,39,32,95,52,56,50,41,32,40,40,66,32,95,52,57,52,41,32,40,
-95,52,49,50,32,40,40,95,52,51,53,32,95,49,51,50,41,32,34,45,
-111,34,41,41,41,41,32,40,40,79,32,34,111,117,116,46,99,111,109,98,
-34,41,32,75,41,41,41,41,41,32,40,40,95,52,53,49,32,95,49,51,
-52,41,32,34,45,108,34,41,41,41,32,40,40,40,67,39,32,95,49,50,
-50,41,32,40,40,95,52,53,49,32,95,49,51,52,41,32,34,45,99,34,
-41,41,32,95,49,52,52,56,41,41,41,41,41,32,40,95,52,52,51,32,
-40,40,67,32,40,95,50,49,50,32,95,49,51,52,41,41,32,34,45,45,
-34,41,41,41,41,32,40,95,52,57,51,32,40,40,79,32,35,52,54,41,
-32,75,41,41,41,41,41,41,32,40,40,65,32,58,49,48,55,50,32,40,
-40,66,32,40,40,83,39,32,40,83,39,32,40,95,51,51,32,95,49,53,
-54,56,41,41,41,32,40,40,83,32,40,40,40,83,39,32,83,39,41,32,
-95,55,49,48,41,32,40,40,66,32,40,66,32,40,40,95,50,56,53,32,
-95,49,53,54,54,41,32,95,53,57,56,41,41,41,32,40,40,40,67,39,
-32,67,41,32,95,55,49,49,41,32,95,55,50,55,41,41,41,41,32,40,
-40,40,83,39,32,66,41,32,40,40,66,32,40,95,51,51,32,95,49,53,
-54,56,41,41,32,95,55,49,50,41,41,32,40,40,40,83,39,32,40,67,
-39,32,40,67,39,32,40,95,51,51,32,95,49,53,54,56,41,41,41,41,
-32,95,55,49,49,41,32,40,40,66,32,85,41,32,40,40,40,67,39,32,
-66,41,32,40,66,39,32,40,40,66,32,40,95,51,52,32,95,49,53,54,
-56,41,41,32,40,40,40,67,39,32,95,50,55,48,41,32,40,40,66,32,
-40,95,52,54,32,95,49,53,54,56,41,41,32,40,40,40,67,39,32,40,
-95,53,50,57,32,95,50,57,54,41,41,32,95,55,48,53,41,32,35,48,
-41,41,41,32,40,40,95,50,55,48,32,95,49,53,56,56,41,32,40,40,
-95,52,56,50,32,34,83,97,118,105,110,103,32,99,97,99,104,101,32,34,
-41,32,40,40,95,49,55,49,52,32,40,95,52,48,53,32,95,49,53,48,
-41,41,32,95,55,48,51,41,41,41,41,41,41,41,32,40,40,66,32,40,
-40,83,39,32,40,95,51,51,32,95,49,53,54,56,41,41,32,40,40,40,
-67,39,32,95,49,53,57,56,41,32,95,50,50,41,32,40,40,95,51,53,
-32,95,49,53,54,56,41,32,95,49,52,53,48,41,41,41,41,32,40,40,
-66,32,40,66,32,85,41,41,32,40,40,66,32,40,66,32,40,40,95,51,
-51,32,95,49,53,54,56,41,32,40,40,95,49,53,56,48,32,95,55,48,
-51,41,32,95,49,53,54,51,41,41,41,41,32,40,40,66,32,40,40,67,
-39,32,40,83,39,32,40,95,51,52,32,95,49,53,54,56,41,41,41,32,
-40,67,32,95,49,53,55,48,41,41,41,32,40,40,66,32,40,40,67,39,
-32,40,95,51,52,32,95,49,53,54,56,41,41,32,95,49,53,55,53,41,
-41,32,40,95,51,53,32,95,49,53,54,56,41,41,41,41,41,41,41,41,
-41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,
-40,95,51,51,32,95,49,53,54,56,41,32,95,49,53,57,54,41,41,41,
-41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,66,
-32,40,66,32,40,67,39,32,67,41,41,41,32,40,40,40,67,39,32,40,
-67,39,32,40,83,39,32,40,67,39,32,67,41,41,41,41,32,40,40,40,
-67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,41,41,
-32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,
-67,39,32,83,39,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,
-32,40,66,32,40,66,32,67,41,41,41,41,41,32,40,40,66,32,40,40,
-83,39,32,66,41,32,40,66,39,32,40,66,39,32,40,40,66,32,40,83,
-39,32,66,41,41,32,40,40,66,32,40,66,32,40,95,51,52,32,95,49,
-53,54,56,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,
-95,50,55,48,41,32,40,40,66,32,40,95,52,54,32,95,49,53,54,56,
-41,41,32,40,40,40,67,39,32,40,95,53,50,57,32,95,50,57,54,41,
-41,32,95,55,48,53,41,32,35,48,41,41,41,41,32,40,40,66,32,40,
-95,50,55,48,32,95,49,53,56,56,41,41,32,40,40,66,32,40,95,52,
-56,50,32,34,116,111,112,32,108,101,118,101,108,32,100,101,102,110,115,58,
-32,34,41,41,32,40,95,49,55,49,52,32,95,50,57,55,41,41,41,41,
-41,41,41,41,41,41,32,40,40,66,32,40,40,83,39,32,40,83,39,32,
-66,41,41,32,40,40,66,32,66,39,41,32,40,40,66,32,66,39,41,32,
-40,40,66,32,66,39,41,32,40,40,66,32,40,66,32,40,95,51,52,32,
-95,49,53,54,56,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,
-66,32,95,50,55,48,41,32,40,40,66,32,40,95,52,54,32,95,49,53,
-54,56,41,41,32,40,40,40,67,39,32,40,95,53,50,57,32,95,50,57,
-54,41,41,32,95,55,48,53,41,32,35,49,41,41,41,41,32,40,40,95,
-52,53,32,95,49,53,54,56,41,32,40,85,32,40,40,66,32,40,66,32,
-40,95,50,55,48,32,95,49,53,56,56,41,41,41,32,40,40,40,67,39,
-32,66,41,32,40,40,66,32,95,52,56,50,41,32,95,57,56,52,41,41,
-32,40,40,66,32,40,95,52,56,50,32,34,32,61,32,34,41,41,32,40,
-40,67,32,95,55,57,52,41,32,75,41,41,41,41,41,41,41,41,41,41,
-41,41,41,32,40,40,40,67,39,32,67,41,32,40,40,66,32,40,40,83,
-39,32,83,39,41,32,40,40,66,32,67,39,41,32,40,40,66,32,83,39,
-41,32,40,40,66,32,67,39,41,32,40,40,66,32,67,39,41,32,95,55,
-48,54,41,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,66,
-41,41,32,40,40,66,32,40,66,32,40,67,39,32,66,41,41,41,32,40,
-40,66,32,40,66,32,66,39,41,41,32,40,40,66,32,40,66,32,66,39,
-41,41,32,40,40,66,32,40,66,32,40,66,32,40,40,83,39,32,40,95,
-51,52,32,95,49,53,54,56,41,41,32,40,40,40,67,39,32,95,49,53,
-57,56,41,32,95,52,50,56,41,32,40,40,95,51,53,32,95,49,53,54,
-56,41,32,95,49,52,53,48,41,41,41,41,41,41,32,40,40,66,32,40,
-66,32,40,66,32,40,66,32,40,40,95,51,51,32,95,49,53,54,56,41,
-32,95,49,53,57,54,41,41,41,41,41,32,40,40,66,32,40,40,83,39,
-32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,40,67,39,32,
-40,95,51,52,32,95,49,53,54,56,41,41,41,41,32,40,40,40,67,39,
-32,66,41,32,40,66,39,32,40,40,66,32,95,50,55,48,41,32,40,40,
-66,32,40,95,52,54,32,95,49,53,54,56,41,41,32,40,40,40,67,39,
-32,40,95,53,50,57,32,95,50,57,54,41,41,32,95,55,48,53,41,32,
-35,48,41,41,41,41,41,32,40,40,66,32,40,66,32,40,95,50,55,48,
-32,95,49,53,56,56,41,41,41,32,40,40,66,32,40,66,32,40,95,52,
-56,50,32,34,102,105,110,97,108,32,112,97,115,115,32,32,32,32,32,32,
-32,32,32,32,32,32,34,41,41,41,32,40,40,40,67,39,32,40,67,39,
-32,95,52,56,50,41,41,32,40,40,66,32,40,66,32,40,95,49,55,51,
-52,32,35,54,41,41,41,32,40,40,66,32,40,66,32,40,95,49,55,49,
-52,32,95,50,57,55,41,41,41,32,40,67,32,40,95,53,49,48,32,95,
-50,57,49,41,41,41,41,41,32,34,109,115,34,41,41,41,41,41,41,41,
-32,40,40,40,67,39,32,40,83,39,32,67,41,41,32,40,40,40,67,39,
-32,40,67,39,32,40,83,39,32,83,41,41,41,32,40,40,66,32,40,66,
-32,40,66,32,40,83,32,40,40,95,52,51,57,32,95,49,51,50,41,32,
-34,46,99,111,109,98,34,41,41,41,41,41,32,40,40,40,67,39,32,40,
-67,39,32,40,83,39,32,83,41,41,41,32,40,40,66,32,40,66,32,40,
-66,32,40,83,32,40,40,95,52,51,57,32,95,49,51,50,41,32,34,46,
-99,34,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,
-32,40,40,95,51,51,32,95,49,53,54,56,41,32,40,95,49,54,48,49,
-32,34,109,104,115,99,46,99,34,41,41,41,41,41,41,32,40,40,66,32,
-40,66,32,40,66,32,40,66,32,85,41,41,41,41,32,40,40,66,32,40,
-66,32,40,40,67,39,32,66,41,32,40,66,39,32,40,40,66,32,40,83,
-39,32,40,95,51,52,32,95,49,53,54,56,41,41,41,32,40,40,66,32,
-40,40,67,39,32,95,50,55,48,41,32,95,49,53,56,55,41,41,32,95,
-49,48,55,53,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,
-32,40,66,32,40,40,67,39,32,40,95,51,52,32,95,49,53,54,56,41,
-41,32,95,49,53,55,53,41,41,41,41,41,32,40,40,66,32,40,66,32,
-40,66,32,40,66,32,40,40,95,51,51,32,95,49,53,54,56,41,32,95,
-49,53,57,54,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
-40,66,32,40,66,32,40,40,95,51,51,32,95,49,53,54,56,41,32,40,
-95,49,53,52,52,32,34,77,72,83,67,67,34,41,41,41,41,41,41,41,
-32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
-40,40,95,51,51,32,95,49,53,54,56,41,32,40,40,40,95,50,56,53,
-32,95,49,53,54,54,41,32,40,95,52,57,51,32,34,99,99,34,41,41,
-32,40,95,49,53,52,52,32,34,67,67,34,41,41,41,41,41,41,41,41,
-41,32,40,40,66,32,40,40,67,39,32,66,41,32,40,40,66,32,40,83,
-39,32,40,67,39,32,66,41,41,41,32,40,40,66,32,40,66,32,66,39,
-41,41,32,40,40,40,83,39,32,66,41,32,40,66,39,32,40,40,66,32,
-40,83,39,32,40,95,51,52,32,95,49,53,54,56,41,41,41,32,40,40,
-40,67,39,32,66,41,32,40,40,66,32,95,50,55,48,41,32,40,40,66,
-32,40,95,52,54,32,95,49,53,54,56,41,41,32,40,40,40,67,39,32,
-40,95,53,50,57,32,95,50,57,54,41,41,32,95,55,48,53,41,32,35,
-48,41,41,41,41,32,40,40,66,32,40,95,50,55,48,32,95,49,53,56,
-56,41,41,32,40,40,66,32,40,95,52,56,50,32,34,69,120,101,99,117,
-116,101,58,32,34,41,41,32,40,95,49,55,49,52,32,40,95,52,48,53,
-32,95,49,53,48,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,
-32,40,66,32,40,40,67,39,32,40,95,51,52,32,95,49,53,54,56,41,
-41,32,95,49,54,49,53,41,41,41,41,32,40,40,66,32,40,40,67,39,
-32,66,41,32,40,40,66,32,40,95,51,52,32,95,49,53,54,56,41,41,
-32,95,49,53,52,48,41,41,41,32,40,40,66,32,40,66,32,40,40,95,
-51,51,32,95,49,53,54,56,41,32,95,49,53,57,54,41,41,41,32,40,
-40,40,67,39,32,66,41,32,40,66,39,32,40,40,66,32,95,50,55,48,
-41,32,40,40,66,32,40,95,52,54,32,95,49,53,54,56,41,41,32,40,
-40,40,67,39,32,40,95,53,50,57,32,95,50,57,54,41,41,32,95,55,
-48,53,41,32,35,48,41,41,41,41,41,32,40,40,66,32,40,66,32,40,
-95,50,55,48,32,95,49,53,56,56,41,41,41,32,40,40,66,32,40,66,
-32,40,95,52,56,50,32,34,67,32,99,111,109,112,105,108,97,116,105,111,
-110,32,32,32,32,32,32,32,32,32,34,41,41,41,32,40,40,40,67,39,
-32,40,67,39,32,95,52,56,50,41,41,32,40,40,66,32,40,66,32,40,
-95,49,55,51,52,32,35,54,41,41,41,32,40,40,66,32,40,66,32,40,
-95,49,55,49,52,32,95,50,57,55,41,41,41,32,40,67,32,40,95,53,
-49,48,32,95,50,57,49,41,41,41,41,41,32,34,109,115,34,41,41,41,
-41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,40,67,
-39,32,66,41,32,40,66,39,32,40,40,66,32,95,50,55,48,41,32,40,
-40,95,52,55,57,32,95,49,51,50,41,32,34,36,73,78,34,41,41,41,
-41,41,41,32,40,40,66,32,40,40,67,39,32,66,41,32,40,66,39,32,
-40,40,95,52,55,57,32,95,49,51,50,41,32,34,36,79,85,84,34,41,
-41,41,41,32,40,40,66,32,40,67,39,32,95,52,57,51,41,41,32,40,
-40,66,32,40,67,32,95,52,56,50,41,41,32,40,40,66,32,40,95,52,
-56,50,32,34,32,45,119,32,45,87,97,108,108,32,45,79,51,32,34,41,
-41,32,40,40,67,32,95,52,56,50,41,32,40,40,95,52,56,50,32,34,
-47,115,114,99,47,114,117,110,116,105,109,101,47,101,118,97,108,45,34,41,
-32,40,40,95,52,56,50,32,40,40,95,52,56,50,32,34,117,110,105,120,
-45,34,41,32,40,40,95,49,55,49,52,32,95,50,57,55,41,32,95,49,
-53,51,49,41,41,41,32,40,40,95,52,56,50,32,34,46,99,32,34,41,
-32,34,32,36,73,78,32,45,108,109,32,45,111,32,36,79,85,84,34,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,
-40,66,32,40,40,67,39,32,95,50,55,48,41,32,95,49,53,57,48,41,
-41,32,95,49,48,55,53,41,41,41,41,32,40,67,32,95,49,53,57,48,
-41,41,41,32,95,55,48,56,41,41,41,41,41,41,41,41,32,40,40,66,
-32,40,66,32,40,66,32,40,66,32,40,95,52,56,50,32,95,49,48,54,
-57,41,41,41,41,41,32,40,40,66,32,40,66,32,40,40,67,39,32,66,
-41,32,40,40,66,32,95,52,56,50,41,32,40,95,49,55,49,52,32,95,
-50,57,55,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,
-95,52,56,50,32,40,40,79,32,35,49,48,41,32,75,41,41,41,41,41,
-32,40,40,40,67,39,32,40,67,39,32,67,41,41,32,40,40,66,32,40,
-40,67,39,32,67,41,32,40,40,66,32,40,40,83,39,32,95,52,49,52,
-41,32,40,40,66,32,40,67,32,66,41,41,32,40,40,66,32,40,66,32,
-40,67,32,66,41,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,
-40,66,32,40,66,32,40,40,67,39,32,66,41,32,40,40,66,32,95,50,
-55,50,41,32,40,40,66,32,95,52,56,50,41,32,40,40,66,32,40,95,
-52,56,50,32,34,40,40,65,32,58,34,41,41,32,40,40,40,67,39,32,
-95,52,56,50,41,32,40,95,49,55,49,52,32,95,50,57,55,41,41,32,
-40,40,79,32,35,51,50,41,32,75,41,41,41,41,41,41,41,41,32,40,
-40,40,67,39,32,66,41,32,40,40,66,32,40,67,39,32,95,50,55,50,
-41,41,32,40,40,66,32,40,66,32,95,55,57,52,41,41,32,40,40,66,
-32,89,41,32,40,40,40,67,39,32,40,67,39,32,83,41,41,32,40,40,
-40,67,39,32,40,67,39,32,83,41,41,32,40,40,40,67,39,32,66,41,
-32,80,41,32,40,40,40,83,39,32,40,67,39,32,66,41,41,32,40,66,
-32,95,55,56,53,41,41,32,73,41,41,41,32,40,90,32,75,41,41,41,
-32,75,41,41,41,41,41,32,40,40,66,32,40,95,50,55,50,32,40,95,
-52,56,50,32,34,41,32,34,41,41,41,32,40,40,67,32,95,50,55,50,
-41,32,40,95,52,56,50,32,40,40,79,32,35,52,49,41,32,75,41,41,
-41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,95,55,57,
-52,41,41,32,85,41,41,41,41,32,40,40,67,32,95,52,50,57,41,32,
-40,40,95,49,57,51,32,95,50,48,55,41,32,40,40,95,53,49,53,32,
-95,50,57,49,41,32,40,95,51,55,51,32,35,48,41,41,41,41,41,41,
-32,75,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,95,49,49,
-56,53,41,41,32,40,67,32,80,41,41,41,41,41,41,41,32,40,40,66,
-32,40,40,83,39,32,95,50,55,48,41,32,40,40,66,32,95,52,57,51,
-41,32,40,40,66,32,40,95,50,55,48,32,95,50,53,41,41,32,40,40,
-66,32,40,95,52,56,50,32,34,109,97,105,110,58,32,102,105,110,100,73,
-100,101,110,116,58,32,34,41,41,32,95,57,56,52,41,41,41,41,41,32,
-40,67,32,95,49,48,49,48,41,41,41,41,32,95,49,48,48,56,41,41,
-32,40,40,66,32,95,49,48,48,54,41,32,40,40,66,32,40,95,52,49,
-49,32,40,85,32,40,40,67,32,66,41,32,40,40,66,32,90,41,32,40,
-40,40,67,39,32,40,67,39,32,79,41,41,32,40,40,66,32,40,67,32,
-80,41,41,32,40,40,66,32,40,95,50,55,48,32,95,55,56,52,41,41,
-32,40,40,66,32,40,95,50,55,48,32,95,57,55,57,41,41,32,40,40,
-66,32,40,95,52,56,50,32,40,40,79,32,35,57,53,41,32,75,41,41,
-41,32,40,95,49,55,49,52,32,95,50,57,55,41,41,41,41,41,41,32,
-75,41,41,41,41,41,41,32,40,40,67,32,95,52,50,57,41,32,40,40,
-95,49,57,51,32,95,50,48,55,41,32,35,48,41,41,41,41,41,41,41,
-32,40,40,67,32,40,95,57,56,55,32,95,54,55,51,41,41,32,40,95,
-57,55,57,32,34,109,97,105,110,34,41,41,41,41,41,41,32,40,40,65,
-32,58,49,48,55,51,32,40,40,66,32,89,41,32,40,40,66,32,40,66,
-32,40,83,32,40,85,32,95,52,56,48,41,41,41,41,32,40,40,66,32,
-40,66,32,90,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,
-66,32,40,40,67,39,32,66,41,32,40,40,66,32,40,40,83,39,32,95,
-52,56,49,41,32,40,85,32,75,41,41,41,32,40,40,67,32,66,41,32,
-40,85,32,65,41,41,41,41,41,32,95,52,52,49,41,41,41,41,41,41,
-32,40,40,65,32,58,49,48,55,52,32,40,95,52,49,49,32,40,40,40,
-67,39,32,95,52,56,50,41,32,40,40,66,32,40,95,49,55,49,52,32,
-95,50,57,55,41,41,32,95,49,51,56,41,41,32,40,40,79,32,35,52,
-52,41,32,75,41,41,41,41,32,40,40,65,32,58,49,48,55,53,32,40,
-40,66,32,40,95,50,55,48,32,95,49,55,51,49,41,41,32,40,40,66,
-32,40,95,52,56,50,32,40,40,79,32,34,115,116,97,116,105,99,32,117,
-110,115,105,103,110,101,100,32,99,104,97,114,32,100,97,116,97,91,93,32,
-61,32,123,34,41,32,75,41,41,41,32,40,40,40,83,39,32,95,52,56,
-50,41,32,40,40,66,32,40,95,52,49,50,32,95,49,48,55,52,41,41,
-32,40,95,49,48,55,51,32,35,50,48,41,41,41,32,40,40,66,32,40,
-79,32,34,125,59,34,41,41,32,40,40,66,32,40,79,32,34,117,110,115,
-105,103,110,101,100,32,99,104,97,114,32,42,99,111,109,98,101,120,112,114,
-32,61,32,100,97,116,97,59,34,41,41,32,40,40,40,67,39,32,79,41,
-32,40,40,66,32,40,95,52,56,50,32,34,105,110,116,32,99,111,109,98,
-101,120,112,114,108,101,110,32,61,32,34,41,41,32,40,40,40,67,39,32,
-95,52,56,50,41,32,40,40,66,32,40,95,49,55,49,52,32,95,50,57,
-55,41,41,32,95,52,50,56,41,41,32,40,40,79,32,35,53,57,41,32,
-75,41,41,41,41,32,75,41,41,41,41,41,41,41,32,40,40,65,32,58,
-49,48,55,54,32,95,49,54,50,57,41,32,40,40,65,32,58,49,48,55,
-55,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,41,
-32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,41,32,
-95,49,48,55,56,41,32,95,50,53,41,41,32,73,41,41,32,40,40,65,
-32,58,49,48,55,56,32,40,40,40,67,39,32,40,67,39,32,40,67,39,
-32,66,41,41,41,32,40,40,66,32,40,40,67,39,32,40,67,39,32,67,
-41,41,32,40,40,40,67,39,32,40,83,39,32,83,41,41,32,40,67,32,
-95,49,54,51,55,41,41,32,40,40,66,32,40,66,32,40,66,32,40,95,
-50,55,48,32,95,49,56,51,41,41,41,41,32,95,49,49,54,57,41,41,
-41,41,32,40,40,66,32,40,83,32,40,40,67,32,83,41,32,40,40,66,
-32,40,67,32,66,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,
-40,66,32,40,67,32,40,40,67,32,67,39,41,32,95,49,56,52,41,41,
-41,32,40,90,32,75,41,41,41,41,41,41,41,32,40,40,66,32,40,66,
-32,40,95,50,55,48,32,95,49,56,51,41,41,41,32,40,40,66,32,40,
-66,32,40,95,52,56,50,32,34,65,109,98,105,103,117,111,117,115,58,34,
-41,41,41,32,40,40,66,32,40,66,32,95,49,55,51,49,41,41,32,40,
-40,66,32,95,52,49,50,41,32,40,40,40,67,39,32,95,50,55,50,41,
-32,95,49,55,49,52,41,32,95,53,57,56,41,41,41,41,41,41,41,41,
-32,95,49,48,53,52,41,41,32,40,40,65,32,58,49,48,55,57,32,40,
-40,40,95,51,51,32,95,49,54,50,54,41,32,95,49,54,52,52,41,32,
-40,40,66,32,40,95,49,52,32,95,49,54,50,53,41,41,32,40,40,66,
-32,95,49,48,54,54,41,32,40,40,67,32,79,41,32,75,41,41,41,41,
-41,32,40,40,65,32,58,49,48,56,48,32,40,40,40,95,49,55,32,95,
-49,54,50,53,41,32,95,49,48,56,50,41,32,95,49,54,52,49,41,41,
-32,40,40,65,32,58,49,48,56,49,32,40,40,40,95,49,55,32,95,49,
-54,50,53,41,32,95,49,49,52,57,41,32,95,49,54,52,49,41,41,32,
-40,40,65,32,58,49,48,56,50,32,40,40,40,95,49,53,32,95,49,54,
-50,53,41,32,40,40,40,95,49,53,32,95,49,54,50,53,41,32,40,40,
-40,95,50,56,53,32,95,49,54,50,52,41,32,95,56,48,51,41,32,40,
-40,40,95,49,54,32,95,49,54,50,53,41,32,40,95,49,49,49,52,32,
-34,109,111,100,117,108,101,34,41,41,32,95,49,48,56,56,41,41,41,32,
-40,40,40,95,49,55,32,95,49,54,50,53,41,32,40,40,40,95,49,54,
-32,95,49,54,50,53,41,32,40,95,49,48,57,52,32,35,52,48,41,41,
-32,40,40,95,49,54,52,57,32,95,49,49,49,51,41,32,40,95,49,48,
-57,52,32,35,52,52,41,41,41,41,32,40,95,49,48,57,52,32,35,52,
-49,41,41,41,41,32,40,40,40,95,49,54,32,95,49,54,50,53,41,32,
-40,95,49,49,49,52,32,34,119,104,101,114,101,34,41,41,32,40,95,49,
-49,49,53,32,95,49,49,49,54,41,41,41,41,32,40,40,65,32,58,49,
-48,56,51,32,40,40,40,95,51,51,32,95,49,54,50,54,41,32,95,49,
-48,55,54,41,32,40,40,66,32,40,95,49,54,52,48,32,34,81,73,100,
-101,110,116,34,41,41,32,40,40,40,67,39,32,67,41,32,40,40,40,67,
-39,32,67,41,32,40,40,40,67,39,32,67,41,32,40,40,40,67,39,32,
-67,41,32,40,40,40,67,39,32,67,41,32,40,40,40,67,39,32,67,41,
-32,40,40,40,67,39,32,67,41,32,40,40,40,67,39,32,80,41,32,40,
-40,66,32,40,66,32,40,66,32,40,83,32,40,40,40,67,39,32,95,49,
-49,54,55,41,32,95,52,52,55,41,32,95,52,57,56,41,41,41,41,41,
-32,40,40,66,32,40,66,32,40,66,32,40,66,32,95,52,57,57,41,41,
-41,41,32,95,49,49,54,56,41,41,41,32,40,75,32,40,75,32,95,52,
-57,56,41,41,41,41,32,40,75,32,40,75,32,95,52,57,56,41,41,41,
-41,32,40,75,32,40,75,32,95,52,57,56,41,41,41,41,32,40,75,32,
-40,75,32,95,52,57,56,41,41,41,41,32,40,75,32,40,75,32,95,52,
-57,56,41,41,41,41,32,40,75,32,40,75,32,95,52,57,56,41,41,41,
-41,32,40,75,32,95,52,57,56,41,41,41,32,40,75,32,95,52,57,56,
-41,41,41,41,41,32,40,40,65,32,58,49,48,56,52,32,40,40,40,95,
-51,51,32,95,49,54,50,54,41,32,95,49,48,55,54,41,32,40,40,66,
-32,40,95,49,54,52,48,32,34,85,73,100,101,110,116,34,41,41,32,40,
-40,40,67,39,32,67,41,32,40,40,40,67,39,32,67,41,32,40,40,40,
-67,39,32,67,41,32,40,40,40,67,39,32,67,41,32,40,40,40,67,39,
-32,67,41,32,40,40,40,67,39,32,67,41,32,40,40,40,67,39,32,67,
-41,32,40,40,40,67,39,32,80,41,32,40,40,40,67,39,32,40,67,39,
-32,67,41,41,32,40,40,66,32,40,66,32,40,67,32,67,39,41,41,41,
-32,40,40,66,32,40,66,32,40,83,32,40,40,40,67,39,32,95,49,52,
-48,41,32,95,52,52,55,41,32,95,52,57,56,41,41,41,41,32,40,40,
-66,32,40,66,32,40,66,32,95,52,57,57,41,41,41,32,95,57,56,49,
-41,41,41,41,32,40,75,32,40,75,32,95,52,57,56,41,41,41,41,32,
-40,75,32,40,75,32,95,52,57,56,41,41,41,41,32,40,75,32,40,75,
-32,95,52,57,56,41,41,41,41,32,40,75,32,40,75,32,95,52,57,56,
-41,41,41,41,32,40,75,32,40,75,32,95,52,57,56,41,41,41,41,32,
-40,75,32,40,75,32,95,52,57,56,41,41,41,41,32,40,75,32,40,75,
-32,95,52,57,56,41,41,41,41,32,40,75,32,95,52,57,56,41,41,41,
-32,40,75,32,95,52,57,56,41,41,41,41,41,32,40,40,65,32,58,49,
-48,56,53,32,40,40,95,49,54,51,50,32,95,49,48,56,52,41,32,95,
-49,48,56,55,41,41,32,40,40,65,32,58,49,48,56,54,32,40,40,95,
-49,54,51,50,32,95,49,48,56,53,41,32,40,95,49,49,49,48,32,95,
-49,49,48,49,41,41,41,32,40,40,65,32,58,49,48,56,55,32,40,40,
-40,95,51,51,32,95,49,54,50,54,41,32,95,49,48,55,54,41,32,40,
-40,66,32,40,40,95,51,51,32,95,49,54,50,54,41,32,95,49,48,55,
-57,41,41,32,40,40,66,32,40,66,32,40,40,40,83,39,32,95,49,54,
-51,50,41,32,40,40,40,83,39,32,95,49,54,51,50,41,32,40,40,40,
-67,39,32,40,95,50,56,53,32,95,49,54,50,52,41,41,32,40,40,67,
-32,95,50,55,50,41,32,40,95,52,49,50,32,40,95,50,55,52,32,35,
-52,52,41,41,41,41,32,40,40,40,95,49,55,32,95,49,54,50,53,41,
-32,40,40,40,95,49,54,32,95,49,54,50,53,41,32,40,95,49,48,57,
-52,32,35,52,48,41,41,32,40,95,49,54,51,53,32,40,95,49,48,57,
-52,32,35,52,52,41,41,41,41,32,40,95,49,48,57,52,32,35,52,49,
-41,41,41,41,32,40,40,40,67,39,32,40,95,50,56,50,32,95,49,54,
-50,52,41,41,32,40,85,32,34,40,41,34,41,41,32,40,40,40,95,49,
-54,32,95,49,54,50,53,41,32,40,95,49,48,57,52,32,35,52,48,41,
-41,32,40,95,49,48,57,52,32,35,52,49,41,41,41,41,41,32,40,40,
-40,67,39,32,40,95,50,56,50,32,95,49,54,50,52,41,41,32,40,85,
-32,34,91,93,34,41,41,32,40,40,40,95,49,54,32,95,49,54,50,53,
-41,32,40,95,49,48,57,52,32,35,57,49,41,41,32,40,95,49,48,57,
-52,32,35,57,51,41,41,41,41,41,41,32,95,57,56,49,41,41,41,41,
-32,40,40,65,32,58,49,48,56,56,32,40,40,40,95,51,51,32,95,49,
-54,50,54,41,32,95,49,48,55,54,41,32,40,40,66,32,40,95,49,54,
-52,48,32,34,85,81,73,100,101,110,116,34,41,41,32,40,40,40,67,39,
-32,67,41,32,40,40,40,67,39,32,67,41,32,40,40,40,67,39,32,67,
-41,32,40,40,40,67,39,32,67,41,32,40,40,40,67,39,32,67,41,32,
-40,40,40,67,39,32,67,41,32,40,40,40,67,39,32,67,41,32,40,40,
-40,67,39,32,80,41,32,40,40,66,32,40,66,32,40,66,32,40,83,32,
-40,40,40,67,39,32,95,49,52,48,41,32,95,52,52,55,41,32,95,52,
-57,56,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,
-32,95,52,57,57,41,41,41,41,32,95,49,49,54,56,41,41,41,32,40,
-75,32,40,75,32,95,52,57,56,41,41,41,41,32,40,75,32,40,75,32,
-95,52,57,56,41,41,41,41,32,40,75,32,40,75,32,95,52,57,56,41,
-41,41,41,32,40,75,32,40,75,32,95,52,57,56,41,41,41,41,32,40,
-75,32,40,75,32,95,52,57,56,41,41,41,41,32,40,75,32,40,75,32,
-95,52,57,56,41,41,41,41,32,40,75,32,95,52,57,56,41,41,41,32,
-40,75,32,95,52,57,56,41,41,41,41,41,32,40,40,65,32,58,49,48,
-56,57,32,40,40,95,49,54,51,50,32,95,49,48,56,56,41,32,95,49,
-48,56,55,41,41,32,40,40,65,32,58,49,48,57,48,32,40,40,40,95,
-51,51,32,95,49,54,50,54,41,32,95,49,48,55,54,41,32,40,40,66,
-32,40,95,49,54,52,48,32,34,76,73,100,101,110,116,34,41,41,32,40,
-40,40,67,39,32,67,41,32,40,40,40,67,39,32,67,41,32,40,40,40,
-67,39,32,67,41,32,40,40,40,67,39,32,67,41,32,40,40,40,67,39,
-32,67,41,32,40,40,40,67,39,32,67,41,32,40,40,40,67,39,32,67,
-41,32,40,40,40,67,39,32,80,41,32,40,40,40,67,39,32,40,67,39,
-32,67,41,41,32,40,40,66,32,40,66,32,40,67,32,67,39,41,41,41,
-32,40,40,66,32,40,66,32,40,83,32,40,40,67,32,40,40,40,83,39,
-32,95,49,50,50,41,32,40,40,66,32,95,57,57,52,41,32,95,52,52,
-55,41,41,32,40,40,66,32,95,49,50,51,41,32,40,40,67,32,40,95,
-52,53,49,32,95,49,51,52,41,41,32,95,49,48,57,51,41,41,41,41,
-32,95,52,57,56,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
-95,52,57,57,41,41,41,32,95,57,56,49,41,41,41,41,32,40,75,32,
-40,75,32,95,52,57,56,41,41,41,41,32,40,75,32,40,75,32,95,52,
-57,56,41,41,41,41,32,40,75,32,40,75,32,95,52,57,56,41,41,41,
-41,32,40,75,32,40,75,32,95,52,57,56,41,41,41,41,32,40,75,32,
-40,75,32,95,52,57,56,41,41,41,41,32,40,75,32,40,75,32,95,52,
-57,56,41,41,41,41,32,40,75,32,40,75,32,95,52,57,56,41,41,41,
-41,32,40,75,32,95,52,57,56,41,41,41,32,40,75,32,95,52,57,56,
-41,41,41,41,41,32,40,40,65,32,58,49,48,57,49,32,40,40,40,95,
-51,51,32,95,49,54,50,54,41,32,95,49,48,55,54,41,32,40,40,66,
-32,40,95,49,54,52,48,32,34,76,81,73,100,101,110,116,34,41,41,32,
-40,40,40,67,39,32,67,41,32,40,40,40,67,39,32,67,41,32,40,40,
-40,67,39,32,67,41,32,40,40,40,67,39,32,67,41,32,40,40,40,67,
-39,32,67,41,32,40,40,40,67,39,32,67,41,32,40,40,40,67,39,32,
-67,41,32,40,40,40,67,39,32,80,41,32,40,40,66,32,40,66,32,40,
-66,32,40,83,32,40,40,67,32,40,40,40,83,39,32,95,49,50,50,41,
-32,40,40,66,32,95,57,57,52,41,32,95,52,52,55,41,41,32,40,40,
-66,32,95,49,50,51,41,32,40,40,67,32,40,95,52,53,49,32,95,49,
-51,52,41,41,32,95,49,48,57,51,41,41,41,41,32,95,52,57,56,41,
-41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,95,52,
-57,57,41,41,41,41,32,95,49,49,54,56,41,41,41,32,40,75,32,40,
-75,32,95,52,57,56,41,41,41,41,32,40,75,32,40,75,32,95,52,57,
-56,41,41,41,41,32,40,75,32,40,75,32,95,52,57,56,41,41,41,41,
-32,40,75,32,40,75,32,95,52,57,56,41,41,41,41,32,40,75,32,40,
-75,32,95,52,57,56,41,41,41,41,32,40,75,32,40,75,32,95,52,57,
-56,41,41,41,41,32,40,75,32,95,52,57,56,41,41,41,32,40,75,32,
-95,52,57,56,41,41,41,41,41,32,40,40,65,32,58,49,48,57,50,32,
-40,40,95,49,54,51,50,32,95,49,48,56,53,41,32,40,95,49,49,49,
-48,32,95,49,48,57,56,41,41,41,32,40,40,65,32,58,49,48,57,51,
-32,40,40,79,32,34,99,97,115,101,34,41,32,40,40,79,32,34,99,108,
-97,115,115,34,41,32,40,40,79,32,34,100,97,116,97,34,41,32,40,40,
-79,32,34,100,101,102,97,117,108,116,34,41,32,40,40,79,32,34,100,101,
-114,105,118,105,110,103,34,41,32,40,40,79,32,34,100,111,34,41,32,40,
-40,79,32,34,101,108,115,101,34,41,32,40,40,79,32,34,102,111,114,97,
-108,108,34,41,32,40,40,79,32,34,102,111,114,101,105,103,110,34,41,32,
-40,40,79,32,34,105,102,34,41,32,40,40,79,32,34,105,109,112,111,114,
-116,34,41,32,40,40,79,32,34,105,110,34,41,32,40,40,79,32,34,105,
-110,102,105,120,34,41,32,40,40,79,32,34,105,110,102,105,120,108,34,41,
-32,40,40,79,32,34,105,110,102,105,120,114,34,41,32,40,40,79,32,34,
-105,110,115,116,97,110,99,101,34,41,32,40,40,79,32,34,108,101,116,34,
-41,32,40,40,79,32,34,109,111,100,117,108,101,34,41,32,40,40,79,32,
-34,110,101,119,116,121,112,101,34,41,32,40,40,79,32,34,111,102,34,41,
-32,40,40,79,32,34,112,114,105,109,105,116,105,118,101,34,41,32,40,40,
-79,32,34,116,104,101,110,34,41,32,40,40,79,32,34,116,121,112,101,34,
-41,32,40,40,79,32,34,119,104,101,114,101,34,41,32,75,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,32,40,40,65,32,58,49,48,57,52,32,40,40,66,32,40,40,95,50,
-56,50,32,95,49,54,50,52,41,32,95,49,52,53,48,41,41,32,40,40,
-40,83,39,32,95,49,54,51,57,41,32,40,40,67,32,79,41,32,75,41,
-41,32,40,40,40,67,39,32,67,41,32,40,40,40,67,39,32,67,41,32,
-40,40,40,67,39,32,67,41,32,40,40,66,32,40,67,32,40,40,67,32,
-40,40,67,32,40,40,67,32,40,40,80,32,40,75,32,40,75,32,40,75,
-32,95,49,50,53,41,41,41,41,32,40,75,32,40,75,32,95,49,50,53,
-41,41,41,41,32,40,75,32,40,75,32,95,49,50,53,41,41,41,41,32,
-40,75,32,40,75,32,95,49,50,53,41,41,41,41,32,40,75,32,40,75,
-32,95,49,50,53,41,41,41,41,41,32,40,90,32,40,95,50,49,49,32,
-95,49,51,50,41,41,41,41,32,40,75,32,40,75,32,95,49,50,53,41,
-41,41,41,32,40,75,32,95,49,50,53,41,41,41,32,40,75,32,95,49,
-50,53,41,41,41,41,41,32,40,40,65,32,58,49,48,57,53,32,40,40,
-66,32,40,40,95,50,56,50,32,95,49,54,50,52,41,32,95,49,52,53,
-48,41,41,32,40,40,83,32,95,49,54,51,57,41,32,40,40,40,67,39,
-32,67,41,32,40,40,40,67,39,32,67,41,32,40,40,40,67,39,32,67,
-41,32,40,40,40,67,39,32,67,41,32,40,40,40,67,39,32,67,41,32,
-40,40,40,67,39,32,67,41,32,40,40,40,67,39,32,67,41,32,40,40,
-40,67,39,32,80,41,32,40,90,32,40,40,40,67,39,32,67,41,32,40,
-40,66,32,40,67,32,67,39,41,41,32,40,67,32,40,95,50,49,49,32,
-95,49,51,52,41,41,41,41,32,40,75,32,40,75,32,95,49,50,53,41,
-41,41,41,41,32,40,75,32,40,75,32,95,49,50,53,41,41,41,41,32,
-40,75,32,40,75,32,95,49,50,53,41,41,41,41,32,40,75,32,40,75,
-32,95,49,50,53,41,41,41,41,32,40,75,32,40,75,32,95,49,50,53,
-41,41,41,41,32,40,75,32,40,75,32,95,49,50,53,41,41,41,41,32,
-40,75,32,40,75,32,95,49,50,53,41,41,41,41,32,40,75,32,95,49,
-50,53,41,41,41,32,40,75,32,95,49,50,53,41,41,41,41,41,32,40,
-40,65,32,58,49,48,57,54,32,40,40,95,49,54,51,50,32,95,49,48,
-57,55,41,32,40,40,40,95,49,55,32,95,49,54,50,53,41,32,40,40,
-40,95,49,54,32,95,49,54,50,53,41,32,40,95,49,48,57,52,32,35,
-57,54,41,41,32,95,49,48,56,51,41,41,32,40,95,49,48,57,52,32,
-35,57,54,41,41,41,41,32,40,40,65,32,58,49,48,57,55,32,40,40,
-40,95,51,51,32,95,49,54,50,54,41,32,95,49,48,55,54,41,32,40,
-40,66,32,40,95,49,54,52,48,32,34,81,83,121,109,79,112,101,114,34,
-41,41,32,40,40,40,67,39,32,67,41,32,40,40,40,67,39,32,67,41,
-32,40,40,40,67,39,32,67,41,32,40,40,40,67,39,32,67,41,32,40,
-40,40,67,39,32,67,41,32,40,40,40,67,39,32,67,41,32,40,40,40,
-67,39,32,67,41,32,40,40,40,67,39,32,80,41,32,40,40,66,32,40,
-66,32,40,66,32,40,83,32,40,40,67,32,40,40,40,83,39,32,95,49,
-50,50,41,32,40,40,66,32,95,49,50,51,41,32,40,40,66,32,95,49,
-49,54,55,41,32,95,52,52,55,41,41,41,32,40,40,66,32,95,49,50,
-51,41,32,40,40,67,32,40,95,52,53,49,32,95,49,51,52,41,41,32,
-95,49,49,48,54,41,41,41,41,32,95,52,57,56,41,41,41,41,41,32,
-40,40,66,32,40,66,32,40,66,32,40,66,32,95,52,57,57,41,41,41,
-41,32,95,49,49,54,56,41,41,41,32,40,75,32,40,75,32,95,52,57,
-56,41,41,41,41,32,40,75,32,40,75,32,95,52,57,56,41,41,41,41,
-32,40,75,32,40,75,32,95,52,57,56,41,41,41,41,32,40,75,32,40,
-75,32,95,52,57,56,41,41,41,41,32,40,75,32,40,75,32,95,52,57,
-56,41,41,41,41,32,40,75,32,40,75,32,95,52,57,56,41,41,41,41,
-32,40,75,32,95,52,57,56,41,41,41,32,40,75,32,95,52,57,56,41,
-41,41,41,41,32,40,40,65,32,58,49,48,57,56,32,40,40,40,95,51,
-51,32,95,49,54,50,54,41,32,95,49,48,55,54,41,32,40,40,66,32,
-40,95,49,54,52,48,32,34,83,121,109,79,112,101,114,34,41,41,32,40,
-40,40,67,39,32,67,41,32,40,40,40,67,39,32,67,41,32,40,40,40,
-67,39,32,67,41,32,40,40,40,67,39,32,67,41,32,40,40,40,67,39,
-32,67,41,32,40,40,40,67,39,32,67,41,32,40,40,40,67,39,32,67,
-41,32,40,40,40,67,39,32,80,41,32,40,40,40,67,39,32,40,67,39,
-32,67,41,41,32,40,40,66,32,40,66,32,40,67,32,67,39,41,41,41,
-32,40,40,66,32,40,66,32,40,83,32,40,40,67,32,40,40,40,83,39,
-32,95,49,50,50,41,32,40,40,66,32,95,49,50,51,41,32,40,40,66,
-32,95,49,49,54,55,41,32,95,52,52,55,41,41,41,32,40,40,66,32,
-95,49,50,51,41,32,40,40,67,32,40,95,52,53,49,32,95,49,51,52,
-41,41,32,95,49,49,48,54,41,41,41,41,32,95,52,57,56,41,41,41,
-41,32,40,40,66,32,40,66,32,40,66,32,95,52,57,57,41,41,41,32,
-95,57,56,49,41,41,41,41,32,40,75,32,40,75,32,95,52,57,56,41,
-41,41,41,32,40,75,32,40,75,32,95,52,57,56,41,41,41,41,32,40,
-75,32,40,75,32,95,52,57,56,41,41,41,41,32,40,75,32,40,75,32,
-95,52,57,56,41,41,41,41,32,40,75,32,40,75,32,95,52,57,56,41,
-41,41,41,32,40,75,32,40,75,32,95,52,57,56,41,41,41,41,32,40,
-75,32,40,75,32,95,52,57,56,41,41,41,41,32,40,75,32,95,52,57,
-56,41,41,41,32,40,75,32,95,52,57,56,41,41,41,41,41,32,40,40,
-65,32,58,49,48,57,57,32,40,40,40,95,51,51,32,95,49,54,50,54,
-41,32,95,49,48,57,55,41,32,40,40,40,83,39,32,40,95,51,52,32,
-95,49,54,50,54,41,41,32,40,40,66,32,40,95,49,48,32,95,49,54,
-50,56,41,41,32,95,49,49,48,48,41,41,32,40,95,49,52,32,95,49,
-54,50,53,41,41,41,41,32,40,40,65,32,58,49,49,48,48,32,40,40,
-95,50,55,50,32,40,40,67,32,40,95,50,49,49,32,95,49,51,50,41,
-41,32,35,53,56,41,41,32,40,40,95,50,55,50,32,95,52,52,55,41,
-32,95,57,56,50,41,41,41,32,40,40,65,32,58,49,49,48,49,32,40,
-40,40,95,51,51,32,95,49,54,50,54,41,32,95,49,48,57,56,41,32,
-40,40,40,83,39,32,40,95,51,52,32,95,49,54,50,54,41,41,32,40,
-40,66,32,40,95,49,48,32,95,49,54,50,56,41,41,32,95,49,49,48,
-48,41,41,32,40,95,49,52,32,95,49,54,50,53,41,41,41,41,32,40,
-40,65,32,58,49,49,48,50,32,40,40,40,95,51,51,32,95,49,54,50,
-54,41,32,95,49,48,57,55,41,32,40,40,40,83,39,32,40,95,51,52,
-32,95,49,54,50,54,41,41,32,40,40,66,32,40,95,49,48,32,95,49,
-54,50,56,41,41,32,40,40,66,32,95,49,50,51,41,32,95,49,49,48,
-48,41,41,41,32,40,95,49,52,32,95,49,54,50,53,41,41,41,41,32,
-40,40,65,32,58,49,49,48,51,32,40,40,95,49,54,51,50,32,95,49,
-49,48,50,41,32,95,49,49,48,52,41,41,32,40,40,65,32,58,49,49,
-48,52,32,40,40,40,95,51,51,32,95,49,54,50,54,41,32,95,49,48,
-55,54,41,32,40,40,66,32,40,95,49,54,52,48,32,34,45,62,34,41,
-41,32,40,40,40,67,39,32,67,41,32,40,40,40,67,39,32,67,41,32,
-40,40,40,67,39,32,67,41,32,40,40,40,67,39,32,67,41,32,40,40,
-40,67,39,32,67,41,32,40,40,40,67,39,32,67,41,32,40,40,40,67,
-39,32,67,41,32,40,40,40,67,39,32,80,41,32,40,40,66,32,40,66,
-32,40,66,32,40,83,32,40,40,67,32,40,40,67,32,101,113,117,97,108,
-41,32,34,45,62,34,41,41,32,95,52,57,56,41,41,41,41,41,32,40,
-40,66,32,40,66,32,40,66,32,40,66,32,95,52,57,57,41,41,41,41,
-32,95,49,49,54,56,41,41,41,32,40,75,32,40,75,32,95,52,57,56,
-41,41,41,41,32,40,75,32,40,75,32,95,52,57,56,41,41,41,41,32,
-40,75,32,40,75,32,95,52,57,56,41,41,41,41,32,40,75,32,40,75,
-32,95,52,57,56,41,41,41,41,32,40,75,32,40,75,32,95,52,57,56,
-41,41,41,41,32,40,75,32,40,75,32,95,52,57,56,41,41,41,41,32,
-40,75,32,95,52,57,56,41,41,41,32,40,75,32,95,52,57,56,41,41,
-41,41,41,32,40,40,65,32,58,49,49,48,53,32,40,40,40,95,51,51,
-32,95,49,54,50,54,41,32,95,49,48,57,56,41,32,40,40,40,83,39,
-32,40,95,51,52,32,95,49,54,50,54,41,41,32,40,40,66,32,40,95,
-49,48,32,95,49,54,50,56,41,41,32,40,40,66,32,95,49,50,51,41,
-32,95,49,49,48,48,41,41,41,32,40,95,49,52,32,95,49,54,50,53,
-41,41,41,41,32,40,40,65,32,58,49,49,48,54,32,40,40,79,32,40,
-40,79,32,35,54,49,41,32,75,41,41,32,40,40,79,32,40,40,79,32,
-35,49,50,52,41,32,75,41,41,32,40,40,79,32,34,58,58,34,41,32,
-40,40,79,32,34,60,45,34,41,32,40,40,79,32,40,40,79,32,35,54,
-52,41,32,75,41,41,32,40,40,79,32,34,46,46,34,41,32,40,40,79,
-32,34,45,62,34,41,32,75,41,41,41,41,41,41,41,41,32,40,40,65,
-32,58,49,49,48,55,32,40,40,95,49,54,51,50,32,95,49,48,56,57,
-41,32,40,95,49,49,49,48,32,95,49,48,57,57,41,41,41,32,40,40,
-65,32,58,49,49,48,56,32,40,40,95,49,54,51,50,32,95,49,48,57,
-49,41,32,40,95,49,49,49,48,32,95,49,49,48,51,41,41,41,32,40,
-40,65,32,58,49,49,48,57,32,40,40,95,49,54,51,50,32,95,49,48,
-57,48,41,32,40,95,49,49,49,48,32,95,49,49,48,53,41,41,41,32,
-40,40,65,32,58,49,49,49,48,32,40,40,40,67,39,32,40,95,49,55,
-32,95,49,54,50,53,41,41,32,40,40,95,49,54,32,95,49,54,50,53,
-41,32,40,95,49,48,57,52,32,35,52,48,41,41,41,32,40,95,49,48,
-57,52,32,35,52,49,41,41,41,32,40,40,65,32,58,49,49,49,49,32,
-40,40,40,95,51,51,32,95,49,54,50,54,41,32,95,49,48,55,54,41,
-32,40,40,66,32,40,95,49,54,52,48,32,34,108,105,116,101,114,97,108,
-34,41,41,32,40,40,40,67,39,32,67,41,32,40,40,40,67,39,32,67,
-41,32,40,40,40,67,39,32,67,41,32,40,40,40,67,39,32,67,41,32,
-40,40,40,83,39,32,67,41,32,40,40,40,83,39,32,67,41,32,40,40,
-40,83,39,32,67,41,32,40,40,66,32,40,80,32,40,75,32,40,75,32,
-40,75,32,95,52,57,56,41,41,41,41,41,32,40,40,66,32,40,67,32,
-66,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,95,52,57,
-57,41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,
-67,39,32,40,67,39,32,95,56,50,55,41,41,41,32,95,57,55,49,41,
-41,32,95,56,54,48,41,41,41,41,41,32,40,40,66,32,40,67,32,66,
-41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,95,52,57,57,
-41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,67,
-39,32,40,67,39,32,95,56,50,55,41,41,41,32,95,57,55,49,41,41,
-32,95,56,53,57,41,41,41,41,41,32,40,40,66,32,40,67,32,66,41,
-41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,95,52,57,57,41,
-41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,67,39,
-32,40,67,39,32,95,56,50,55,41,41,41,32,95,57,55,49,41,41,32,
-95,56,53,54,41,41,41,41,41,32,40,40,66,32,40,67,32,66,41,41,
-32,40,40,66,32,40,66,32,40,66,32,40,66,32,95,52,57,57,41,41,
-41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,67,39,32,
-40,67,39,32,95,56,50,55,41,41,41,32,95,57,55,49,41,41,32,95,
-56,53,56,41,41,41,41,41,32,40,75,32,40,75,32,95,52,57,56,41,
-41,41,41,32,40,75,32,40,75,32,95,52,57,56,41,41,41,41,32,40,
-75,32,95,52,57,56,41,41,41,32,40,75,32,95,52,57,56,41,41,41,
-41,41,32,40,40,65,32,58,49,49,49,50,32,40,40,95,49,54,52,48,
-32,34,115,116,114,105,110,103,34,41,32,40,40,67,32,40,40,67,32,40,
-40,67,32,40,40,67,32,40,40,67,32,40,40,67,32,40,40,67,32,40,
-40,80,32,40,75,32,40,75,32,40,75,32,95,52,57,56,41,41,41,41,
-32,40,75,32,95,52,57,57,41,41,41,32,40,75,32,40,75,32,95,52,
-57,56,41,41,41,41,32,40,75,32,40,75,32,95,52,57,56,41,41,41,
-41,32,40,75,32,40,75,32,95,52,57,56,41,41,41,41,32,40,75,32,
-40,75,32,95,52,57,56,41,41,41,41,32,40,75,32,40,75,32,95,52,
-57,56,41,41,41,41,32,40,75,32,95,52,57,56,41,41,41,32,40,75,
-32,95,52,57,56,41,41,41,41,32,40,40,65,32,58,49,49,49,51,32,
-40,40,95,49,54,51,50,32,40,40,95,49,54,51,50,32,40,40,95,49,
-54,51,50,32,40,40,40,95,50,56,53,32,95,49,54,50,52,41,32,95,
-56,48,52,41,32,40,40,40,95,49,54,32,95,49,54,50,53,41,32,40,
-95,49,49,49,52,32,34,109,111,100,117,108,101,34,41,41,32,95,49,48,
-56,57,41,41,41,32,40,40,40,95,50,56,53,32,95,49,54,50,52,41,
-32,95,56,48,53,41,32,40,40,40,95,49,55,32,95,49,54,50,53,41,
-32,40,40,40,95,49,55,32,95,49,54,50,53,41,32,40,40,40,95,49,
-55,32,95,49,54,50,53,41,32,95,49,49,48,55,41,32,40,95,49,48,
-57,52,32,35,52,48,41,41,41,32,40,95,49,48,57,53,32,34,46,46,
-34,41,41,41,32,40,95,49,48,57,52,32,35,52,49,41,41,41,41,41,
-32,40,40,40,95,50,56,53,32,95,49,54,50,52,41,32,95,56,48,54,
-41,32,95,49,49,48,55,41,41,41,32,40,40,40,95,50,56,53,32,95,
-49,54,50,52,41,32,95,56,48,55,41,32,95,49,49,48,56,41,41,41,
-32,40,40,65,32,58,49,49,49,52,32,40,40,66,32,40,40,95,50,56,
-50,32,95,49,54,50,52,41,32,95,49,52,53,48,41,41,32,40,40,83,
-32,95,49,54,51,57,41,32,40,40,40,67,39,32,67,41,32,40,40,40,
-67,39,32,67,41,32,40,40,40,67,39,32,67,41,32,40,40,40,67,39,
-32,67,41,32,40,40,40,67,39,32,67,41,32,40,40,40,67,39,32,67,
-41,32,40,40,40,67,39,32,67,41,32,40,40,40,67,39,32,80,41,32,
-40,90,32,40,40,40,67,39,32,67,41,32,40,40,66,32,40,67,32,67,
-39,41,41,32,40,95,50,49,49,32,95,49,51,52,41,41,41,32,40,75,
-32,40,75,32,95,49,50,53,41,41,41,41,41,32,40,75,32,40,75,32,
-95,49,50,53,41,41,41,41,32,40,75,32,40,75,32,95,49,50,53,41,
-41,41,41,32,40,75,32,40,75,32,95,49,50,53,41,41,41,41,32,40,
-75,32,40,75,32,95,49,50,53,41,41,41,41,32,40,75,32,40,75,32,
-95,49,50,53,41,41,41,41,32,40,75,32,40,75,32,95,49,50,53,41,
-41,41,41,32,40,75,32,95,49,50,53,41,41,41,32,40,75,32,95,49,
-50,53,41,41,41,41,41,32,40,40,65,32,58,49,49,49,53,32,40,40,
-66,32,40,40,95,51,52,32,95,49,54,50,54,41,32,40,95,49,48,57,
-52,32,35,49,50,51,41,41,41,32,40,40,40,67,39,32,40,95,51,51,
-32,95,49,54,50,54,41,41,32,40,40,67,32,95,49,54,52,56,41,32,
-40,95,49,48,57,52,32,35,53,57,41,41,41,32,40,40,66,32,40,40,
-95,51,52,32,95,49,54,50,54,41,32,40,95,49,54,51,54,32,40,95,
-49,48,57,52,32,35,53,57,41,41,41,41,32,40,40,66,32,40,40,95,
-51,52,32,95,49,54,50,54,41,32,40,95,49,48,57,52,32,35,49,50,
-53,41,41,41,32,40,95,49,52,32,95,49,54,50,53,41,41,41,41,41,
-41,32,40,40,65,32,58,49,49,49,54,32,40,40,95,49,54,51,50,32,
-40,40,95,49,54,51,50,32,40,40,95,49,54,51,50,32,40,40,95,49,
-54,51,50,32,40,40,95,49,54,51,50,32,40,40,95,49,54,51,50,32,
-40,40,95,49,54,51,50,32,40,40,95,49,54,51,50,32,40,40,95,49,
-54,51,50,32,40,40,95,49,54,51,50,32,40,40,40,95,49,55,32,95,
-49,54,50,53,41,32,40,40,40,95,49,53,32,95,49,54,50,53,41,32,
-40,40,40,95,50,56,53,32,95,49,54,50,52,41,32,95,56,48,56,41,
-32,40,40,40,95,49,54,32,95,49,54,50,53,41,32,40,95,49,49,49,
-52,32,34,100,97,116,97,34,41,41,32,95,49,49,50,52,41,41,41,32,
-40,40,95,49,54,51,50,32,40,40,40,95,49,54,32,95,49,54,50,53,
-41,32,40,95,49,48,57,53,32,40,40,79,32,35,54,49,41,32,75,41,
-41,41,32,40,40,95,49,54,52,55,32,95,49,49,49,57,41,32,40,95,
-49,48,57,53,32,40,40,79,32,35,49,50,52,41,32,75,41,41,41,41,
-41,32,40,40,95,49,52,32,95,49,54,50,53,41,32,95,52,56,48,41,
-41,41,41,32,95,49,49,49,55,41,41,32,40,40,40,95,49,55,32,95,
-49,54,50,53,41,32,40,40,40,95,49,53,32,95,49,54,50,53,41,32,
-40,40,40,95,50,56,53,32,95,49,54,50,52,41,32,95,56,48,57,41,
-32,40,40,40,95,49,54,32,95,49,54,50,53,41,32,40,95,49,49,49,
-52,32,34,110,101,119,116,121,112,101,34,41,41,32,95,49,49,50,52,41,
-41,41,32,40,40,40,95,49,54,32,95,49,54,50,53,41,32,40,95,49,
-48,57,53,32,40,40,79,32,35,54,49,41,32,75,41,41,41,32,40,40,
-40,95,49,53,32,95,49,54,50,53,41,32,40,40,40,95,50,56,53,32,
-95,49,54,50,52,41,32,40,40,95,56,55,53,32,95,52,56,48,41,32,
-95,52,56,48,41,41,32,95,49,48,56,54,41,41,32,40,40,40,95,51,
-51,32,95,49,54,50,54,41,32,95,49,49,50,48,41,32,40,40,40,83,
-39,32,40,95,51,52,32,95,49,54,50,54,41,41,32,40,40,66,32,40,
-95,50,55,48,32,40,95,49,48,32,95,49,54,50,56,41,41,41,32,40,
-40,40,67,39,32,40,95,50,49,49,32,95,50,57,53,41,41,32,40,40,
-95,49,56,54,32,95,52,50,56,41,32,95,52,50,56,41,41,32,35,49,
-41,41,41,32,40,95,49,52,32,95,49,54,50,53,41,41,41,41,41,41,
-41,32,95,49,49,49,55,41,41,41,32,40,40,40,95,49,53,32,95,49,
-54,50,53,41,32,40,40,40,95,50,56,53,32,95,49,54,50,52,41,32,
-95,56,49,48,41,32,40,40,40,95,49,54,32,95,49,54,50,53,41,32,
-40,95,49,49,49,52,32,34,116,121,112,101,34,41,41,32,95,49,49,50,
-52,41,41,41,32,40,40,40,95,49,54,32,95,49,54,50,53,41,32,40,
-95,49,48,57,53,32,40,40,79,32,35,54,49,41,32,75,41,41,41,32,
-95,49,49,50,57,41,41,41,41,32,40,40,40,95,50,56,53,32,95,49,
-54,50,52,41,32,40,95,50,55,55,32,95,56,49,49,41,41,32,95,49,
-49,52,50,41,41,41,32,40,40,40,95,49,53,32,95,49,54,50,53,41,
-32,40,40,40,95,50,56,53,32,95,49,54,50,52,41,32,95,56,49,50,
-41,32,40,40,40,95,49,55,32,95,49,54,50,53,41,32,95,49,49,48,
-57,41,32,40,95,49,48,57,53,32,34,58,58,34,41,41,41,41,32,95,
-49,49,50,57,41,41,41,32,40,40,40,95,50,56,53,32,95,49,54,50,
-52,41,32,95,56,49,51,41,32,40,40,40,95,49,54,32,95,49,54,50,
-53,41,32,40,95,49,49,49,52,32,34,105,109,112,111,114,116,34,41,41,
-32,95,49,49,50,53,41,41,41,41,32,40,40,40,95,49,53,32,95,49,
-54,50,53,41,32,40,40,40,95,49,53,32,95,49,54,50,53,41,32,40,
-40,40,95,50,56,53,32,95,49,54,50,52,41,32,95,56,49,52,41,32,
-40,40,40,95,49,54,32,95,49,54,50,53,41,32,40,40,40,95,49,54,
-32,95,49,54,50,53,41,32,40,40,40,95,49,54,32,95,49,54,50,53,
-41,32,40,95,49,49,49,52,32,34,102,111,114,101,105,103,110,34,41,41,
-32,40,95,49,49,49,52,32,34,105,109,112,111,114,116,34,41,41,41,32,
-40,95,49,49,49,52,32,34,99,99,97,108,108,34,41,41,41,32,95,49,
-49,49,50,41,41,41,32,95,49,48,57,48,41,41,32,40,40,40,95,49,
-54,32,95,49,54,50,53,41,32,40,95,49,48,57,53,32,34,58,58,34,
-41,41,32,95,49,49,50,57,41,41,41,41,32,40,40,40,95,49,53,32,
-95,49,54,50,53,41,32,40,40,40,95,50,56,53,32,95,49,54,50,52,
-41,32,95,56,49,53,41,32,40,40,40,95,49,53,32,95,49,54,50,53,
-41,32,40,40,40,95,50,56,53,32,95,49,54,50,52,41,32,80,41,32,
-40,40,95,49,54,51,50,32,40,40,95,49,54,51,50,32,40,40,40,95,
-50,56,50,32,95,49,54,50,52,41,32,95,56,57,56,41,32,40,95,49,
-49,49,52,32,34,105,110,102,105,120,108,34,41,41,41,32,40,40,40,95,
-50,56,50,32,95,49,54,50,52,41,32,95,56,57,57,41,32,40,95,49,
-49,49,52,32,34,105,110,102,105,120,114,34,41,41,41,41,32,40,40,40,
-95,50,56,50,32,95,49,54,50,52,41,32,95,57,48,48,41,32,40,95,
-49,49,49,52,32,34,105,110,102,105,120,34,41,41,41,41,41,32,40,40,
-95,49,54,52,48,32,34,100,105,103,105,116,34,41,32,40,40,67,32,40,
-40,67,32,40,40,67,32,40,40,67,32,40,40,67,32,40,40,67,32,40,
-40,67,32,40,40,80,32,40,75,32,40,75,32,40,75,32,95,52,57,56,
-41,41,41,41,32,40,75,32,40,75,32,95,52,57,56,41,41,41,41,32,
-40,75,32,40,75,32,95,52,57,56,41,41,41,41,32,40,75,32,40,40,
-66,32,40,40,83,32,40,40,67,32,40,40,40,83,39,32,95,49,50,50,
-41,32,40,40,95,53,50,56,32,95,50,57,54,41,32,40,40,95,53,49,
-53,32,95,50,57,49,41,32,40,95,51,55,51,32,35,45,50,41,41,41,
-41,32,40,40,67,32,40,95,53,50,56,32,95,50,57,54,41,41,32,35,
-57,41,41,41,32,95,52,57,56,41,41,32,95,52,57,57,41,41,32,95,
-51,55,52,41,41,41,41,32,40,75,32,40,75,32,95,52,57,56,41,41,
-41,41,32,40,75,32,40,75,32,95,52,57,56,41,41,41,41,32,40,75,
-32,40,75,32,95,52,57,56,41,41,41,41,32,40,75,32,95,52,57,56,
-41,41,41,32,40,75,32,95,52,57,56,41,41,41,41,41,41,32,40,40,
-95,49,54,52,55,32,95,49,49,51,50,41,32,40,95,49,48,57,52,32,
-35,52,52,41,41,41,41,41,32,40,40,40,95,49,53,32,95,49,54,50,
-53,41,32,40,40,40,95,49,53,32,95,49,54,50,53,41,32,40,40,40,
-95,49,53,32,95,49,54,50,53,41,32,40,40,40,95,50,56,53,32,95,
-49,54,50,52,41,32,95,56,49,54,41,32,40,40,40,95,49,54,32,95,
-49,54,50,53,41,32,40,95,49,49,49,52,32,34,99,108,97,115,115,34,
-41,41,32,95,49,49,49,56,41,41,41,32,95,49,49,50,52,41,41,32,
-40,40,95,49,54,51,50,32,40,40,40,95,49,54,32,95,49,54,50,53,
-41,32,40,95,49,48,57,53,32,40,40,79,32,35,49,50,52,41,32,75,
-41,41,41,32,40,40,95,49,54,52,55,32,40,40,40,95,49,53,32,95,
-49,54,50,53,41,32,40,40,40,95,50,56,53,32,95,49,54,50,52,41,
-32,80,41,32,40,95,49,54,51,53,32,95,49,48,57,48,41,41,41,32,
-40,40,40,95,49,54,32,95,49,54,50,53,41,32,40,95,49,48,57,53,
-32,34,45,62,34,41,41,32,40,95,49,54,51,53,32,95,49,48,57,48,
-41,41,41,41,32,40,95,49,48,57,52,32,35,52,52,41,41,41,41,32,
-40,40,95,49,52,32,95,49,54,50,53,41,32,95,52,56,48,41,41,41,
-41,32,40,95,49,49,52,55,32,95,49,49,54,53,41,41,41,41,32,40,
-40,40,95,49,53,32,95,49,54,50,53,41,32,40,40,40,95,49,53,32,
-95,49,54,50,53,41,32,40,40,40,95,49,53,32,95,49,54,50,53,41,
-32,40,40,40,95,50,56,53,32,95,49,54,50,52,41,32,95,56,49,55,
-41,32,40,40,40,95,49,54,32,95,49,54,50,53,41,32,40,95,49,49,
-49,52,32,34,105,110,115,116,97,110,99,101,34,41,41,32,95,49,49,51,
-48,41,41,41,32,95,49,49,49,56,41,41,32,95,49,49,51,52,41,41,
-32,40,95,49,49,52,55,32,95,49,49,54,53,41,41,41,41,32,40,40,
-40,95,50,56,53,32,95,49,54,50,52,41,32,95,56,49,56,41,32,40,
-40,40,95,49,54,32,95,49,54,50,53,41,32,40,95,49,49,49,52,32,
-34,100,101,102,97,117,108,116,34,41,41,32,40,95,49,49,49,48,32,40,
-40,95,49,54,52,56,32,95,49,49,50,57,41,32,40,95,49,48,57,52,
-32,35,52,52,41,41,41,41,41,41,41,32,40,40,65,32,58,49,49,49,
-55,32,40,40,95,49,54,51,50,32,40,40,40,95,49,54,32,95,49,54,
-50,53,41,32,40,95,49,49,49,52,32,34,100,101,114,105,118,105,110,103,
-34,41,41,32,40,95,49,49,49,48,32,40,40,95,49,54,52,56,32,95,
-49,49,50,57,41,32,40,95,49,48,57,52,32,35,52,52,41,41,41,41,
-41,32,40,40,95,49,52,32,95,49,54,50,53,41,32,95,52,56,48,41,
-41,41,32,40,40,65,32,58,49,49,49,56,32,40,40,95,49,54,51,50,
-32,40,40,40,95,49,55,32,95,49,54,50,53,41,32,40,40,95,49,54,
-51,50,32,40,95,49,49,49,48,32,40,95,49,54,51,52,32,95,49,49,
-50,57,41,41,41,32,40,40,40,95,50,56,53,32,95,49,54,50,52,41,
-32,40,40,67,32,95,52,56,49,41,32,95,52,56,48,41,41,32,95,49,
-49,51,52,41,41,41,32,40,95,49,48,57,53,32,34,61,62,34,41,41,
-41,32,40,40,95,49,52,32,95,49,54,50,53,41,32,95,52,56,48,41,
-41,41,32,40,40,65,32,58,49,49,49,57,32,40,40,95,49,54,51,50,
-32,40,40,40,95,49,53,32,95,49,54,50,53,41,32,40,40,40,95,49,
-53,32,95,49,54,50,53,41,32,40,40,40,95,49,53,32,95,49,54,50,
-53,41,32,40,40,40,95,50,56,53,32,95,49,54,50,52,41,32,95,56,
-55,53,41,32,95,49,49,51,48,41,41,32,95,49,49,49,56,41,41,32,
-95,49,48,56,54,41,41,32,95,49,49,50,48,41,41,32,40,40,40,95,
-49,53,32,95,49,54,50,53,41,32,40,40,40,95,49,53,32,95,49,54,
-50,53,41,32,40,40,40,95,49,53,32,95,49,54,50,53,41,32,40,40,
-40,95,49,53,32,95,49,54,50,53,41,32,40,40,40,95,50,56,53,32,
-95,49,54,50,52,41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,
-32,40,40,66,32,40,66,32,40,67,39,32,66,41,41,41,32,95,56,55,
-53,41,41,32,40,40,66,32,40,66,32,95,49,56,51,41,41,32,40,40,
-40,67,39,32,66,41,32,79,41,32,40,40,67,32,79,41,32,75,41,41,
-41,41,41,32,95,49,49,51,48,41,41,32,95,49,49,49,56,41,41,32,
-95,49,49,50,49,41,41,32,95,49,49,48,49,41,41,32,95,49,49,50,
-49,41,41,41,32,40,40,65,32,58,49,49,50,48,32,40,40,95,49,54,
-51,50,32,40,40,40,95,50,56,53,32,95,49,54,50,52,41,32,95,49,
-56,51,41,32,40,95,49,54,51,52,32,95,49,49,50,49,41,41,41,32,
-40,40,40,95,50,56,53,32,95,49,54,50,52,41,32,95,49,56,52,41,
-32,40,40,40,95,49,55,32,95,49,54,50,53,41,32,40,40,40,95,49,
-54,32,95,49,54,50,53,41,32,40,95,49,48,57,52,32,35,49,50,51,
-41,41,32,40,40,95,49,54,52,56,32,40,40,40,95,49,53,32,95,49,
-54,50,53,41,32,40,40,40,95,50,56,53,32,95,49,54,50,52,41,32,
-80,41,32,40,40,40,95,49,55,32,95,49,54,50,53,41,32,95,49,49,
-48,57,41,32,40,95,49,48,57,53,32,34,58,58,34,41,41,41,41,32,
-95,49,49,50,50,41,41,32,40,95,49,48,57,52,32,35,52,52,41,41,
-41,41,32,40,95,49,48,57,52,32,35,49,50,53,41,41,41,41,41,32,
-40,40,65,32,58,49,49,50,49,32,40,40,40,95,49,53,32,95,49,54,
-50,53,41,32,40,40,40,95,50,56,53,32,95,49,54,50,52,41,32,80,
-41,32,95,49,49,50,51,41,41,32,95,49,49,51,53,41,41,32,40,40,
-65,32,58,49,49,50,50,32,40,40,40,95,49,53,32,95,49,54,50,53,
-41,32,40,40,40,95,50,56,53,32,95,49,54,50,52,41,32,80,41,32,
-95,49,49,50,51,41,41,32,95,49,49,50,57,41,41,32,40,40,65,32,
-58,49,49,50,51,32,40,40,95,49,54,51,50,32,40,40,40,95,50,56,
-50,32,95,49,54,50,52,41,32,95,49,50,54,41,32,40,95,49,48,57,
-53,32,40,40,79,32,35,51,51,41,32,75,41,41,41,41,32,40,40,95,
-49,52,32,95,49,54,50,53,41,32,95,49,50,53,41,41,41,32,40,40,
-65,32,58,49,49,50,52,32,40,40,95,49,54,51,50,32,40,40,40,95,
-49,53,32,95,49,54,50,53,41,32,40,40,40,95,50,56,53,32,95,49,
-54,50,52,41,32,80,41,32,95,49,48,57,50,41,41,32,40,95,49,54,
-51,52,32,95,49,49,50,55,41,41,41,32,40,40,40,95,49,53,32,95,
-49,54,50,53,41,32,40,40,40,95,49,53,32,95,49,54,50,53,41,32,
-40,40,40,95,50,56,53,32,95,49,54,50,52,41,32,40,40,66,32,40,
-40,67,39,32,66,41,32,80,41,41,32,40,40,40,67,39,32,66,41,32,
-79,41,32,40,40,67,32,79,41,32,75,41,41,41,41,32,95,49,49,50,
-55,41,41,32,95,49,48,57,56,41,41,32,95,49,49,50,55,41,41,41,
-32,40,40,65,32,58,49,49,50,53,32,40,40,40,95,49,53,32,95,49,
-54,50,53,41,32,40,40,40,95,49,53,32,95,49,54,50,53,41,32,40,
-40,40,95,49,53,32,95,49,54,50,53,41,32,40,40,40,95,50,56,53,
-32,95,49,54,50,52,41,32,95,56,49,57,41,32,40,40,95,49,54,51,
-50,32,40,40,40,95,50,56,50,32,95,49,54,50,52,41,32,95,49,50,
-54,41,32,40,95,49,49,49,52,32,34,113,117,97,108,105,102,105,101,100,
-34,41,41,41,32,40,40,95,49,52,32,95,49,54,50,53,41,32,95,49,
-50,53,41,41,41,41,32,95,49,48,56,56,41,41,32,40,95,49,54,51,
-54,32,40,40,40,95,49,54,32,95,49,54,50,53,41,32,40,95,49,49,
-49,52,32,34,97,115,34,41,41,32,95,49,48,56,57,41,41,41,41,32,
-40,95,49,54,51,54,32,40,40,40,95,49,53,32,95,49,54,50,53,41,
-32,40,40,40,95,50,56,53,32,95,49,54,50,52,41,32,80,41,32,40,
-40,40,95,51,32,95,49,54,50,56,41,32,40,40,40,95,50,56,50,32,
-95,49,54,50,52,41,32,95,49,50,54,41,32,40,95,49,49,49,52,32,
-34,104,105,100,105,110,103,34,41,41,41,32,40,40,95,49,52,32,95,49,
-54,50,53,41,32,95,49,50,53,41,41,41,41,32,40,95,49,49,49,48,
-32,40,40,95,49,54,52,57,32,95,49,49,50,54,41,32,40,95,49,48,
-57,52,32,35,52,52,41,41,41,41,41,41,41,32,40,40,65,32,58,49,
-49,50,54,32,40,40,95,49,54,51,50,32,40,40,95,49,54,51,50,32,
-40,40,40,95,50,56,53,32,95,49,54,50,52,41,32,95,56,50,48,41,
-32,40,40,40,95,49,55,32,95,49,54,50,53,41,32,40,40,40,95,49,
-55,32,95,49,54,50,53,41,32,40,40,40,95,49,55,32,95,49,54,50,
-53,41,32,95,49,49,48,55,41,32,40,95,49,48,57,52,32,35,52,48,
-41,41,41,32,40,95,49,48,57,53,32,34,46,46,34,41,41,41,32,40,
-95,49,48,57,52,32,35,52,49,41,41,41,41,32,40,40,40,95,50,56,
-53,32,95,49,54,50,52,41,32,95,56,50,49,41,32,95,49,49,48,55,
-41,41,41,32,40,40,40,95,50,56,53,32,95,49,54,50,52,41,32,95,
-56,50,50,41,32,95,49,49,48,56,41,41,41,32,40,40,65,32,58,49,
-49,50,55,32,40,40,95,49,54,51,50,32,40,40,40,95,50,56,53,32,
-95,49,54,50,52,41,32,40,40,67,32,95,56,55,54,41,32,95,56,55,
-57,41,41,32,95,49,49,48,57,41,41,32,40,95,49,49,49,48,32,40,
-40,40,95,49,53,32,95,49,54,50,53,41,32,40,40,40,95,50,56,53,
-32,95,49,54,50,52,41,32,95,56,55,54,41,32,95,49,49,48,57,41,
-41,32,40,40,40,95,49,54,32,95,49,54,50,53,41,32,40,95,49,48,
-57,53,32,34,58,58,34,41,41,32,95,49,49,50,56,41,41,41,41,41,
-32,40,40,65,32,58,49,49,50,56,32,95,49,49,50,57,41,32,40,40,
-65,32,58,49,49,50,57,32,40,40,40,95,51,51,32,95,49,54,50,54,
-41,32,95,49,49,51,48,41,32,40,40,66,32,40,40,95,51,51,32,95,
-49,54,50,54,41,32,95,49,49,51,49,41,41,32,40,40,66,32,40,66,
-32,40,95,50,55,48,32,40,95,49,52,32,95,49,54,50,53,41,41,41,
-41,32,40,40,67,32,40,40,40,83,39,32,83,39,41,32,95,52,48,57,
-41,32,95,56,52,48,41,41,32,73,41,41,41,41,41,32,40,40,65,32,
-58,49,49,51,48,32,40,40,95,49,54,51,50,32,40,40,40,95,49,55,
-32,95,49,54,50,53,41,32,40,40,40,95,49,54,32,95,49,54,50,53,
-41,32,40,95,49,49,49,52,32,34,102,111,114,97,108,108,34,41,41,32,
-40,95,49,54,51,53,32,95,49,49,50,55,41,41,41,32,40,95,49,48,
-57,53,32,40,40,79,32,35,52,54,41,32,75,41,41,41,41,32,40,40,
-95,49,52,32,95,49,54,50,53,41,32,95,52,56,48,41,41,41,32,40,
-40,65,32,58,49,49,51,49,32,40,40,95,49,49,54,51,32,95,49,49,
-51,50,41,32,95,49,49,51,51,41,41,32,40,40,65,32,58,49,49,51,
-50,32,40,40,95,49,54,51,50,32,40,40,95,49,54,51,50,32,95,49,
-48,57,54,41,32,40,40,40,95,50,56,50,32,95,49,54,50,52,41,32,
-40,95,57,55,57,32,34,45,62,34,41,41,32,40,95,49,48,57,53,32,
-34,45,62,34,41,41,41,41,32,40,40,40,95,50,56,50,32,95,49,54,
-50,52,41,32,40,95,57,55,57,32,34,61,62,34,41,41,32,40,95,49,
-48,57,53,32,34,61,62,34,41,41,41,41,32,40,40,65,32,58,49,49,
-51,51,32,95,49,49,51,52,41,32,40,40,65,32,58,49,49,51,52,32,
-40,40,40,95,51,51,32,95,49,54,50,54,41,32,95,49,49,51,53,41,
-32,40,40,66,32,40,40,95,51,51,32,95,49,54,50,54,41,32,40,95,
-49,54,51,52,32,95,49,49,51,53,41,41,41,32,40,40,66,32,40,66,
-32,40,40,95,51,51,32,95,49,54,50,54,41,32,40,95,49,54,51,54,
-32,40,40,40,95,49,54,32,95,49,54,50,53,41,32,40,95,49,48,57,
-53,32,34,58,58,34,41,41,32,95,49,49,50,57,41,41,41,41,41,32,
-40,40,66,32,40,66,32,40,40,67,39,32,40,66,32,40,95,50,55,48,
-32,40,95,49,52,32,95,49,54,50,53,41,41,41,41,32,40,67,32,40,
-40,83,32,95,52,57,50,41,32,95,56,51,54,41,41,41,41,41,32,40,
-95,52,49,54,32,95,56,50,52,41,41,41,41,41,41,32,40,40,65,32,
-58,49,49,51,53,32,40,40,95,49,54,51,50,32,40,40,95,49,54,51,
-50,32,40,40,95,49,54,51,50,32,40,40,95,49,54,51,50,32,40,40,
-40,95,50,56,53,32,95,49,54,50,52,41,32,95,56,50,51,41,32,95,
-49,49,48,56,41,41,32,40,40,40,95,50,56,53,32,95,49,54,50,52,
-41,32,95,56,50,51,41,32,95,49,49,48,55,41,41,41,32,95,49,49,
-49,49,41,41,32,40,40,40,95,50,56,53,32,95,49,54,50,52,41,32,
-95,49,49,54,54,41,32,40,40,40,95,49,55,32,95,49,54,50,53,41,
-32,40,40,40,95,49,54,32,95,49,54,50,53,41,32,40,95,49,48,57,
-52,32,35,52,48,41,41,32,40,40,95,49,54,52,55,32,95,49,49,50,
-57,41,32,40,95,49,48,57,52,32,35,52,52,41,41,41,41,32,40,95,
-49,48,57,52,32,35,52,49,41,41,41,41,41,32,40,40,40,95,50,56,
-53,32,95,49,54,50,52,41,32,40,40,95,50,55,50,32,95,56,51,49,
-41,32,40,40,95,50,55,50,32,95,56,52,54,41,32,40,40,67,32,95,
-52,56,49,41,32,95,52,56,48,41,41,41,41,32,40,40,40,95,49,55,
-32,95,49,54,50,53,41,32,40,40,40,95,49,54,32,95,49,54,50,53,
-41,32,40,95,49,48,57,52,32,35,57,49,41,41,32,95,49,49,50,57,
-41,41,32,40,95,49,48,57,52,32,35,57,51,41,41,41,41,41,32,40,
-40,65,32,58,49,49,51,54,32,40,40,95,49,54,51,50,32,40,40,95,
-49,54,51,50,32,40,40,95,49,54,51,50,32,40,40,95,49,54,51,50,
-32,40,40,40,95,51,51,32,95,49,54,50,54,41,32,95,49,49,48,57,
-41,32,40,40,40,83,39,32,95,49,54,51,50,41,32,40,40,40,67,39,
-32,40,95,50,56,53,32,95,49,54,50,52,41,41,32,95,56,51,55,41,
-32,40,40,40,95,49,54,32,95,49,54,50,53,41,32,40,95,49,48,57,
-53,32,40,40,79,32,35,54,52,41,32,75,41,41,41,32,95,49,49,51,
-54,41,41,41,32,40,40,66,32,40,95,49,52,32,95,49,54,50,53,41,
-41,32,95,56,50,51,41,41,41,41,32,40,40,40,95,50,56,53,32,95,
-49,54,50,52,41,32,95,56,50,51,41,32,95,49,49,48,55,41,41,41,
-32,95,49,49,49,49,41,41,32,40,40,40,95,50,56,53,32,95,49,54,
-50,52,41,32,95,49,49,54,54,41,32,40,40,40,95,49,55,32,95,49,
-54,50,53,41,32,40,40,40,95,49,54,32,95,49,54,50,53,41,32,40,
-95,49,48,57,52,32,35,52,48,41,41,32,40,40,95,49,54,52,55,32,
-95,49,49,51,55,41,32,40,95,49,48,57,52,32,35,52,52,41,41,41,
-41,32,40,95,49,48,57,52,32,35,52,49,41,41,41,41,41,32,40,40,
-40,95,50,56,53,32,95,49,54,50,52,41,32,40,40,95,50,55,50,32,
-95,56,51,49,41,32,95,56,52,54,41,41,32,40,40,40,95,49,55,32,
-95,49,54,50,53,41,32,40,40,40,95,49,54,32,95,49,54,50,53,41,
-32,40,95,49,48,57,52,32,35,57,49,41,41,32,40,40,95,49,54,52,
-55,32,95,49,49,51,55,41,32,40,95,49,48,57,52,32,35,52,52,41,
-41,41,41,32,40,95,49,48,57,52,32,35,57,51,41,41,41,41,41,32,
-40,40,65,32,58,49,49,51,55,32,95,49,49,51,56,41,32,40,40,65,
-32,58,49,49,51,56,32,40,40,95,49,49,54,51,32,95,49,48,57,54,
-41,32,95,49,49,51,57,41,41,32,40,40,65,32,58,49,49,51,57,32,
-95,49,49,52,48,41,32,40,40,65,32,58,49,49,52,48,32,40,40,40,
-95,51,51,32,95,49,54,50,54,41,32,95,49,49,51,54,41,32,40,40,
-66,32,40,40,95,51,51,32,95,49,54,50,54,41,32,40,95,49,54,51,
-52,32,95,49,49,51,54,41,41,41,32,40,40,40,83,39,32,40,83,39,
-32,40,95,51,52,32,95,49,54,50,54,41,41,41,32,40,40,66,32,40,
-66,32,40,95,49,48,32,95,49,54,50,56,41,41,41,32,40,40,66,32,
-40,40,67,39,32,95,49,50,49,41,32,95,52,48,57,41,41,32,95,56,
-55,51,41,41,41,32,40,40,66,32,40,66,32,40,95,50,55,48,32,40,
-95,49,52,32,95,49,54,50,53,41,41,41,41,32,40,95,52,49,54,32,
-95,56,50,52,41,41,41,41,41,41,32,40,40,65,32,58,49,49,52,49,
-32,40,40,40,95,51,51,32,95,49,54,50,54,41,32,95,49,49,51,55,
-41,32,40,40,40,83,39,32,40,95,51,52,32,95,49,54,50,54,41,41,
-32,40,40,66,32,40,95,49,48,32,95,49,54,50,56,41,41,32,40,40,
-66,32,95,49,50,51,41,32,95,56,55,50,41,41,41,32,40,95,49,52,
-32,95,49,54,50,53,41,41,41,41,32,40,40,65,32,58,49,49,52,50,
-32,40,40,40,95,51,51,32,95,49,54,50,54,41,32,40,95,49,49,52,
-51,32,40,75,32,40,75,32,95,49,50,54,41,41,41,41,32,40,85,32,
-40,40,66,32,40,83,32,73,41,41,32,40,40,40,83,39,32,40,83,39,
-32,40,83,39,32,67,41,41,41,32,40,40,66,32,40,66,32,40,40,67,
-39,32,40,67,39,32,66,41,41,32,80,41,41,41,32,40,40,40,67,39,
-32,40,67,39,32,40,83,39,32,67,41,41,41,32,40,40,66,32,40,66,
-32,40,66,32,40,67,32,67,39,41,41,41,41,32,40,40,66,32,40,66,
-32,40,66,32,85,41,41,41,32,40,40,66,32,40,66,32,40,40,83,39,
-32,40,67,39,32,66,41,41,32,85,41,41,41,32,40,40,66,32,40,66,
-32,40,66,32,90,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,
-83,39,32,40,67,39,32,80,41,41,41,41,32,40,40,40,67,39,32,40,
-67,39,32,66,41,41,32,40,40,66,32,40,66,32,80,41,41,32,40,40,
-66,32,40,66,32,40,95,49,52,32,95,49,54,50,53,41,41,41,32,40,
-40,40,67,39,32,66,41,32,80,41,32,40,40,67,32,79,41,32,75,41,
-41,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,
-41,41,41,41,32,40,90,32,75,41,41,41,41,32,40,40,40,83,39,32,
-66,41,32,40,40,66,32,40,67,39,32,40,95,51,51,32,95,49,54,50,
-54,41,41,41,32,40,40,66,32,40,66,32,95,49,54,51,52,41,41,32,
-40,40,66,32,40,66,32,40,40,95,49,54,32,95,49,54,50,53,41,32,
-40,95,49,48,57,52,32,35,53,57,41,41,41,41,32,40,40,66,32,40,
-66,32,95,49,49,52,51,41,41,32,40,40,40,67,39,32,66,41,32,40,
-40,66,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,95,49,
-50,50,41,41,32,40,67,32,40,95,50,49,49,32,95,57,55,52,41,41,
-41,41,41,32,40,40,66,32,40,67,32,40,95,50,49,49,32,95,50,57,
-53,41,41,41,32,95,52,50,56,41,41,41,41,41,41,41,32,40,40,66,
-32,40,66,32,40,66,32,40,95,49,52,32,95,49,54,50,53,41,41,41,
-41,32,40,40,40,67,39,32,66,41,32,40,66,39,32,80,41,41,32,40,
-40,40,67,39,32,66,41,32,95,52,56,49,41,32,40,95,52,49,50,32,
-95,53,57,57,41,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,
-49,49,52,51,32,40,40,66,32,40,40,95,51,51,32,95,49,54,50,54,
-41,32,95,49,49,52,52,41,41,32,40,40,66,32,85,41,32,40,40,66,
-32,40,66,32,40,66,32,40,40,95,51,51,32,95,49,54,50,54,41,32,
-40,95,49,49,52,53,32,40,95,49,48,57,53,32,40,40,79,32,35,54,
-49,41,32,75,41,41,41,41,41,41,41,32,40,40,40,67,39,32,40,83,
-39,32,40,83,39,32,66,41,41,41,32,40,40,66,32,40,66,32,40,66,
-32,40,95,51,52,32,95,49,54,50,54,41,41,41,41,32,40,40,66,32,
-40,66,32,40,66,32,40,95,49,48,32,95,49,54,50,56,41,41,41,41,
-32,40,40,67,32,40,67,39,32,66,41,41,32,95,52,50,56,41,41,41,
-41,32,40,40,66,32,40,66,32,40,66,32,40,95,49,52,32,95,49,54,
-50,53,41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,66,39,32,
-80,41,41,32,95,56,55,48,41,41,41,41,41,41,41,32,40,40,65,32,
-58,49,49,52,52,32,40,40,40,40,83,39,32,95,49,54,51,50,41,32,
-40,40,95,51,32,95,49,54,50,56,41,32,40,40,40,95,49,53,32,95,
-49,54,50,53,41,32,40,40,40,95,50,56,53,32,95,49,54,50,52,41,
-32,80,41,32,95,49,49,48,57,41,41,32,40,95,49,54,51,52,32,95,
-49,49,51,54,41,41,41,41,32,40,40,40,67,39,32,40,95,49,53,32,
-95,49,54,50,53,41,41,32,40,40,66,32,40,40,95,50,56,53,32,95,
-49,54,50,52,41,32,40,40,67,32,66,41,32,40,40,66,32,40,40,67,
-39,32,66,41,32,80,41,41,32,40,67,32,95,52,56,50,41,41,41,41,
-41,32,95,49,49,49,48,41,41,32,40,95,49,54,51,52,32,95,49,49,
-51,54,41,41,41,32,40,40,40,95,49,53,32,95,49,54,50,53,41,32,
-40,40,40,95,49,53,32,95,49,54,50,53,41,32,40,40,40,95,50,56,
-53,32,95,49,54,50,52,41,32,40,40,66,32,40,40,67,39,32,66,41,
-32,80,41,41,32,40,40,40,67,39,32,66,41,32,79,41,32,40,40,67,
-32,79,41,32,75,41,41,41,41,32,95,49,49,52,48,41,41,32,40,40,
-40,95,51,51,32,95,49,54,50,54,41,32,95,49,48,57,54,41,32,40,
-40,40,83,39,32,40,95,51,52,32,95,49,54,50,54,41,41,32,40,40,
-66,32,40,95,49,48,32,95,49,54,50,56,41,41,32,40,40,66,32,95,
-49,50,51,41,32,95,57,57,49,41,41,41,32,40,95,49,52,32,95,49,
-54,50,53,41,41,41,41,41,32,95,49,49,52,48,41,41,41,32,40,40,
-65,32,58,49,49,52,53,32,40,40,40,67,39,32,40,95,51,51,32,95,
-49,54,50,54,41,41,32,95,49,49,52,54,41,32,40,40,66,32,40,40,
-95,51,51,32,95,49,54,50,54,41,32,40,95,49,49,52,55,32,95,49,
-49,54,52,41,41,41,32,40,40,66,32,40,66,32,40,95,49,52,32,95,
-49,54,50,53,41,41,41,32,95,56,55,49,41,41,41,41,32,40,40,65,
-32,58,49,49,52,54,32,40,40,40,83,39,32,95,49,54,51,50,41,32,
-40,40,66,32,95,49,54,51,53,41,32,40,40,66,32,40,40,95,49,53,
-32,95,49,54,50,53,41,32,40,40,40,95,50,56,53,32,95,49,54,50,
-52,41,32,80,41,32,40,40,40,95,49,54,32,95,49,54,50,53,41,32,
-40,95,49,48,57,53,32,40,40,79,32,35,49,50,52,41,32,75,41,41,
-41,32,40,40,95,49,54,52,55,32,95,49,49,52,56,41,32,40,95,49,
-48,57,52,32,35,52,52,41,41,41,41,41,41,32,40,40,67,32,40,95,
-49,54,32,95,49,54,50,53,41,41,32,95,49,49,52,57,41,41,41,41,
-32,40,40,66,32,40,40,95,50,56,53,32,95,49,54,50,52,41,32,40,
-40,40,67,39,32,79,41,32,40,80,32,95,52,56,48,41,41,32,75,41,
-41,41,32,40,40,67,32,40,95,49,54,32,95,49,54,50,53,41,41,32,
-95,49,49,52,57,41,41,41,41,32,40,40,65,32,58,49,49,52,55,32,
-40,40,40,67,39,32,95,49,54,51,50,41,32,40,40,66,32,40,40,95,
-49,54,32,95,49,54,50,53,41,32,40,95,49,49,49,52,32,34,119,104,
-101,114,101,34,41,41,41,32,95,49,49,49,53,41,41,32,40,40,95,49,
-52,32,95,49,54,50,53,41,32,95,52,56,48,41,41,41,32,40,40,65,
-32,58,49,49,52,56,32,40,40,95,49,54,51,50,32,40,40,95,49,54,
-51,50,32,40,40,40,95,49,53,32,95,49,54,50,53,41,32,40,40,40,
-95,50,56,53,32,95,49,54,50,52,41,32,95,56,54,52,41,32,40,40,
-40,95,49,55,32,95,49,54,50,53,41,32,95,49,49,51,55,41,32,40,
-95,49,48,57,53,32,34,60,45,34,41,41,41,41,32,95,49,49,52,57,
-41,41,32,40,40,40,95,50,56,53,32,95,49,54,50,52,41,32,95,56,
-54,54,41,32,40,40,40,95,49,54,32,95,49,54,50,53,41,32,40,95,
-49,49,49,52,32,34,108,101,116,34,41,41,32,40,95,49,49,49,53,32,
-95,49,49,54,52,41,41,41,41,41,32,40,40,40,95,50,56,53,32,95,
-49,54,50,52,41,32,95,56,54,53,41,32,95,49,49,52,57,41,41,41,
-32,40,40,65,32,58,49,49,52,57,32,95,49,49,54,50,41,32,40,40,
-65,32,58,49,49,53,48,32,40,40,95,49,54,51,50,32,40,40,95,49,
-54,51,50,32,40,40,95,49,54,51,50,32,40,40,95,49,54,51,50,32,
-40,40,95,49,54,51,50,32,95,49,49,53,49,41,32,95,49,49,53,50,
-41,41,32,95,49,49,53,51,41,41,32,95,49,49,53,53,41,41,32,95,
-49,49,53,55,41,41,32,95,49,49,53,54,41,41,32,40,40,65,32,58,
-49,49,53,49,32,40,40,40,95,51,51,32,95,49,54,50,54,41,32,95,
-49,49,54,48,41,32,40,40,66,32,40,40,95,51,51,32,95,49,54,50,
-54,41,32,40,95,49,54,51,52,32,95,49,49,54,48,41,41,41,32,40,
-40,66,32,40,66,32,40,40,95,51,51,32,95,49,54,50,54,41,32,40,
-95,49,54,51,54,32,40,40,40,95,49,54,32,95,49,54,50,53,41,32,
-40,95,49,48,57,53,32,34,58,58,34,41,41,32,95,49,49,50,57,41,
-41,41,41,41,32,40,40,66,32,40,66,32,40,40,67,39,32,40,66,32,
-40,95,50,55,48,32,40,95,49,52,32,95,49,54,50,53,41,41,41,41,
-32,40,67,32,40,40,83,32,95,52,57,50,41,32,95,56,51,54,41,41,
-41,41,41,32,40,95,52,49,54,32,95,56,50,52,41,41,41,41,41,41,
-32,40,40,65,32,58,49,49,53,50,32,40,40,40,95,49,53,32,95,49,
-54,50,53,41,32,40,40,40,95,50,56,53,32,95,49,54,50,52,41,32,
-95,56,52,49,41,32,40,40,40,95,49,54,32,95,49,54,50,53,41,32,
-40,95,49,48,57,53,32,40,40,79,32,35,57,50,41,32,75,41,41,41,
-32,40,95,49,54,51,53,32,95,49,49,51,54,41,41,41,41,32,40,40,
-40,95,49,54,32,95,49,54,50,53,41,32,40,95,49,48,57,53,32,34,
-45,62,34,41,41,32,95,49,49,52,57,41,41,41,32,40,40,65,32,58,
-49,49,53,51,32,40,40,40,95,49,53,32,95,49,54,50,53,41,32,40,
-40,40,95,50,56,53,32,95,49,54,50,52,41,32,95,56,50,56,41,32,
-40,40,40,95,49,54,32,95,49,54,50,53,41,32,40,95,49,49,49,52,
-32,34,99,97,115,101,34,41,41,32,95,49,49,52,57,41,41,41,32,40,
-40,40,95,49,54,32,95,49,54,50,53,41,32,40,95,49,49,49,52,32,
-34,111,102,34,41,41,32,40,95,49,49,49,53,32,95,49,49,53,52,41,
-41,41,41,32,40,40,65,32,58,49,49,53,52,32,40,40,40,95,49,53,
-32,95,49,54,50,53,41,32,40,40,40,95,50,56,53,32,95,49,54,50,
-52,41,32,80,41,32,95,49,49,51,55,41,41,32,40,95,49,49,52,53,
-32,40,95,49,48,57,53,32,34,45,62,34,41,41,41,41,32,40,40,65,
-32,58,49,49,53,53,32,40,40,40,95,49,53,32,95,49,54,50,53,41,
-32,40,40,40,95,50,56,53,32,95,49,54,50,52,41,32,95,56,50,57,
-41,32,40,40,40,95,49,54,32,95,49,54,50,53,41,32,40,95,49,49,
-49,52,32,34,108,101,116,34,41,41,32,40,95,49,49,49,53,32,95,49,
-49,54,52,41,41,41,41,32,40,40,40,95,49,54,32,95,49,54,50,53,
-41,32,40,95,49,49,49,52,32,34,105,110,34,41,41,32,95,49,49,52,
-57,41,41,41,32,40,40,65,32,58,49,49,53,54,32,40,40,40,95,49,
-53,32,95,49,54,50,53,41,32,40,40,40,95,50,56,53,32,95,49,54,
-50,52,41,32,95,56,51,50,41,32,40,40,95,49,54,51,50,32,40,40,
-40,95,50,56,53,32,95,49,54,50,52,41,32,95,52,57,57,41,32,95,
-49,49,53,56,41,41,32,40,40,40,95,50,56,50,32,95,49,54,50,52,
-41,32,95,52,57,56,41,32,40,95,49,49,49,52,32,34,100,111,34,41,
-41,41,41,41,32,40,95,49,49,49,53,32,95,49,49,52,56,41,41,41,
-32,40,40,65,32,58,49,49,53,55,32,40,40,40,95,49,53,32,95,49,
-54,50,53,41,32,40,40,40,95,49,53,32,95,49,54,50,53,41,32,40,
-40,40,95,50,56,53,32,95,49,54,50,52,41,32,95,56,51,53,41,32,
-40,40,40,95,49,54,32,95,49,54,50,53,41,32,40,95,49,49,49,52,
-32,34,105,102,34,41,41,32,95,49,49,52,57,41,41,41,32,40,40,40,
-95,49,54,32,95,49,54,50,53,41,32,40,95,49,49,49,52,32,34,116,
-104,101,110,34,41,41,32,95,49,49,52,57,41,41,41,32,40,40,40,95,
-49,54,32,95,49,54,50,53,41,32,40,95,49,49,49,52,32,34,101,108,
-115,101,34,41,41,32,95,49,49,52,57,41,41,41,32,40,40,65,32,58,
-49,49,53,56,32,40,40,40,95,51,51,32,95,49,54,50,54,41,32,95,
-49,48,55,54,41,32,40,40,66,32,40,95,49,54,52,48,32,34,81,117,
-97,108,68,111,34,41,41,32,40,40,40,67,39,32,67,41,32,40,40,40,
-67,39,32,67,41,32,40,40,40,67,39,32,67,41,32,40,40,40,67,39,
-32,67,41,32,40,40,40,67,39,32,67,41,32,40,40,40,67,39,32,67,
-41,32,40,40,40,67,39,32,67,41,32,40,40,40,67,39,32,80,41,32,
-40,40,66,32,40,66,32,40,40,83,39,32,66,41,32,40,85,32,95,52,
-57,56,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,90,41,41,
-41,32,40,40,66,32,40,66,32,40,66,32,90,41,41,41,32,40,40,66,
-32,40,66,32,40,66,32,40,67,32,40,40,67,32,40,40,67,32,101,113,
-117,97,108,41,32,34,100,111,34,41,41,32,95,52,57,56,41,41,41,41,
-41,32,40,40,66,32,40,66,32,40,66,32,95,52,57,57,41,41,41,32,
-40,40,40,67,39,32,40,67,39,32,66,41,41,32,95,57,56,49,41,32,
-40,95,52,53,48,32,40,40,79,32,35,52,54,41,32,75,41,41,41,41,
-41,41,41,41,41,32,40,75,32,40,75,32,95,52,57,56,41,41,41,41,
-32,40,75,32,40,75,32,95,52,57,56,41,41,41,41,32,40,75,32,40,
-75,32,95,52,57,56,41,41,41,41,32,40,75,32,40,75,32,95,52,57,
-56,41,41,41,41,32,40,75,32,40,75,32,95,52,57,56,41,41,41,41,
-32,40,75,32,40,75,32,95,52,57,56,41,41,41,41,32,40,75,32,95,
-52,57,56,41,41,41,32,40,75,32,95,52,57,56,41,41,41,41,41,32,
-40,40,65,32,58,49,49,53,57,32,40,40,95,49,54,51,50,32,95,49,
-48,57,54,41,32,40,40,40,95,49,53,32,95,49,54,50,53,41,32,40,
-40,40,95,49,53,32,95,49,54,50,53,41,32,40,40,40,95,50,56,53,
-32,95,49,54,50,52,41,32,95,57,56,49,41,32,95,49,48,55,54,41,
-41,32,95,49,48,55,57,41,41,32,40,40,40,95,50,56,50,32,95,49,
-54,50,52,41,32,40,40,79,32,35,52,52,41,32,75,41,41,32,40,95,
-49,48,57,52,32,35,52,52,41,41,41,41,41,32,40,40,65,32,58,49,
-49,54,48,32,40,40,95,49,54,51,50,32,40,40,95,49,54,51,50,32,
-40,40,95,49,54,51,50,32,40,40,95,49,54,51,50,32,40,40,95,49,
-54,51,50,32,40,40,95,49,54,51,50,32,40,40,95,49,54,51,50,32,
-40,40,40,95,50,56,53,32,95,49,54,50,52,41,32,95,56,50,51,41,
-32,95,49,49,48,56,41,41,32,40,40,40,95,50,56,53,32,95,49,54,
-50,52,41,32,95,56,50,51,41,32,95,49,49,48,55,41,41,41,32,95,
-49,49,49,49,41,41,32,40,40,40,95,50,56,53,32,95,49,54,50,52,
-41,32,95,49,49,54,54,41,32,40,40,40,95,49,55,32,95,49,54,50,
-53,41,32,40,40,40,95,49,54,32,95,49,54,50,53,41,32,40,95,49,
-48,57,52,32,35,52,48,41,41,32,40,40,95,49,54,52,55,32,95,49,
-49,52,57,41,32,40,95,49,48,57,52,32,35,52,52,41,41,41,41,32,
-40,95,49,48,57,52,32,35,52,49,41,41,41,41,41,32,40,40,40,95,
-50,56,53,32,95,49,54,50,52,41,32,95,56,51,49,41,32,40,40,40,
-95,49,55,32,95,49,54,50,53,41,32,40,40,40,95,49,54,32,95,49,
-54,50,53,41,32,40,95,49,48,57,52,32,35,57,49,41,41,32,95,49,
-49,54,49,41,41,32,40,95,49,48,57,52,32,35,57,51,41,41,41,41,
-41,32,40,40,40,95,49,53,32,95,49,54,50,53,41,32,40,40,40,95,
-50,56,53,32,95,49,54,50,52,41,32,95,56,51,51,41,32,40,40,40,
-95,49,54,32,95,49,54,50,53,41,32,40,95,49,48,57,52,32,35,52,
-48,41,41,32,95,49,49,53,48,41,41,41,32,40,40,40,95,49,55,32,
-95,49,54,50,53,41,32,95,49,49,53,57,41,32,40,95,49,48,57,52,
-32,35,52,49,41,41,41,41,41,32,40,40,40,95,49,53,32,95,49,54,
-50,53,41,32,40,40,40,95,50,56,53,32,95,49,54,50,52,41,32,95,
-56,51,52,41,32,40,40,40,95,49,54,32,95,49,54,50,53,41,32,40,
-95,49,48,57,52,32,35,52,48,41,41,32,95,49,49,53,57,41,41,41,
-32,40,40,40,95,49,55,32,95,49,54,50,53,41,32,95,49,49,53,48,
-41,32,40,95,49,48,57,52,32,35,52,49,41,41,41,41,41,32,40,40,
-40,95,50,56,53,32,95,49,54,50,52,41,32,40,40,95,50,55,50,32,
-40,95,56,50,55,32,95,57,55,55,41,41,32,95,56,54,49,41,41,32,
-40,40,40,95,49,54,32,95,49,54,50,53,41,32,40,95,49,49,49,52,
-32,34,112,114,105,109,105,116,105,118,101,34,41,41,32,95,49,49,49,50,
-41,41,41,41,32,40,40,65,32,58,49,49,54,49,32,40,40,40,95,51,
-51,32,95,49,54,50,54,41,32,95,49,49,52,57,41,32,40,40,40,83,
-39,32,95,49,54,51,50,41,32,40,40,40,83,39,32,95,49,54,51,50,
-41,32,40,40,40,83,39,32,95,49,54,51,50,41,32,40,40,40,83,39,
-32,95,49,54,51,50,41,32,40,40,66,32,40,40,95,49,54,32,95,49,
-54,50,53,41,32,40,95,49,48,57,52,32,35,52,52,41,41,41,32,40,
-40,66,32,40,40,95,51,51,32,95,49,54,50,54,41,32,95,49,49,52,
-57,41,41,32,40,40,40,83,39,32,40,83,39,32,95,49,54,51,50,41,
-41,32,40,40,40,83,39,32,40,83,39,32,95,49,54,51,50,41,41,32,
-40,40,40,83,39,32,40,83,39,32,95,49,54,51,50,41,41,32,40,40,
-40,67,39,32,40,67,39,32,40,95,50,56,53,32,95,49,54,50,52,41,
-41,41,32,40,40,66,32,40,66,32,40,66,32,95,56,52,54,41,41,41,
-32,40,40,40,67,39,32,66,41,32,40,66,39,32,95,52,56,49,41,41,
-32,95,52,56,49,41,41,41,32,40,95,49,54,51,53,32,40,40,40,95,
-49,54,32,95,49,54,50,53,41,32,40,95,49,48,57,52,32,35,52,52,
-41,41,32,95,49,49,52,57,41,41,41,41,32,40,40,40,67,39,32,40,
-67,39,32,40,95,50,56,53,32,95,49,54,50,52,41,41,41,32,95,56,
-53,49,41,32,40,40,40,95,49,54,32,95,49,54,50,53,41,32,40,95,
-49,48,57,53,32,34,46,46,34,41,41,32,95,49,49,52,57,41,41,41,
-41,32,40,40,40,67,39,32,40,67,39,32,40,95,50,56,50,32,95,49,
-54,50,52,41,41,41,32,95,56,53,48,41,32,40,95,49,48,57,53,32,
-34,46,46,34,41,41,41,41,32,40,40,66,32,40,66,32,40,95,49,52,
-32,95,49,54,50,53,41,41,41,32,40,40,66,32,40,66,32,95,56,52,
-54,41,41,32,40,40,40,67,39,32,66,41,32,79,41,32,40,40,67,32,
-79,41,32,75,41,41,41,41,41,41,41,41,32,40,40,40,67,39,32,40,
-95,50,56,53,32,95,49,54,50,52,41,41,32,95,56,52,55,41,32,40,
-40,40,95,49,54,32,95,49,54,50,53,41,32,40,95,49,48,57,53,32,
-40,40,79,32,35,49,50,52,41,32,75,41,41,41,32,40,40,95,49,54,
-52,55,32,95,49,49,52,56,41,32,40,95,49,48,57,52,32,35,52,52,
-41,41,41,41,41,41,32,40,40,40,67,39,32,40,95,50,56,53,32,95,
-49,54,50,52,41,41,32,95,56,52,57,41,32,40,40,40,95,49,54,32,
-95,49,54,50,53,41,32,40,95,49,48,57,53,32,34,46,46,34,41,41,
-32,95,49,49,52,57,41,41,41,41,32,40,40,40,67,39,32,40,95,50,
-56,50,32,95,49,54,50,52,41,41,32,95,56,52,56,41,32,40,95,49,
-48,57,53,32,34,46,46,34,41,41,41,41,32,40,40,66,32,40,95,49,
-52,32,95,49,54,50,53,41,41,32,40,40,66,32,95,56,52,54,41,32,
-40,40,67,32,79,41,32,75,41,41,41,41,41,41,32,40,40,65,32,58,
-49,49,54,50,32,40,40,95,49,49,54,51,32,95,49,48,57,54,41,32,
-95,49,49,53,48,41,41,32,40,40,65,32,58,49,49,54,51,32,40,40,
-66,32,40,40,83,39,32,40,95,49,53,32,95,49,54,50,53,41,41,32,
-40,40,95,50,56,53,32,95,49,54,50,52,41,32,40,40,40,83,39,32,
-83,41,32,85,41,32,40,40,66,32,90,41,32,40,40,66,32,90,41,32,
-95,56,50,53,41,41,41,41,41,41,32,40,40,66,32,40,66,32,95,49,
-54,51,52,41,41,32,40,40,66,32,40,95,49,53,32,95,49,54,50,53,
-41,41,32,40,40,95,50,56,53,32,95,49,54,50,52,41,32,80,41,41,
-41,41,41,32,40,40,65,32,58,49,49,54,52,32,40,40,95,49,54,51,
-50,32,40,40,40,95,49,53,32,95,49,54,50,53,41,32,40,40,40,95,
-50,56,53,32,95,49,54,50,52,41,32,95,56,54,56,41,32,40,40,40,
-95,49,55,32,95,49,54,50,53,41,32,95,49,49,52,49,41,32,40,95,
-49,48,57,53,32,40,40,79,32,35,54,49,41,32,75,41,41,41,41,41,
-32,95,49,49,52,57,41,41,32,95,49,49,54,53,41,41,32,40,40,65,
-32,58,49,49,54,53,32,40,40,95,49,54,51,50,32,40,40,40,95,50,
-56,53,32,95,49,54,50,52,41,32,40,95,50,55,55,32,95,56,54,55,
-41,41,32,95,49,49,52,50,41,41,32,40,40,40,95,49,53,32,95,49,
-54,50,53,41,32,40,40,40,95,50,56,53,32,95,49,54,50,52,41,32,
-95,56,54,57,41,32,40,40,40,95,49,55,32,95,49,54,50,53,41,32,
-95,49,49,48,57,41,32,40,95,49,48,57,53,32,34,58,58,34,41,41,
-41,41,32,95,49,49,50,57,41,41,41,32,40,40,65,32,58,49,49,54,
-54,32,40,40,83,32,40,85,32,40,95,50,53,32,34,101,84,117,112,108,
-101,34,41,41,41,32,40,40,66,32,40,67,32,80,41,41,32,40,90,32,
-40,90,32,95,56,51,48,41,41,41,41,41,32,40,40,65,32,58,49,49,
-54,55,32,40,40,40,83,39,32,95,49,50,49,41,32,95,57,57,52,41,
-32,95,49,52,48,41,41,32,40,40,65,32,58,49,49,54,56,32,40,40,
-40,67,39,32,40,67,39,32,66,41,41,32,40,40,66,32,66,39,41,32,
-95,57,56,49,41,41,32,40,40,66,32,40,66,32,40,95,52,53,48,32,
-40,40,79,32,35,52,54,41,32,75,41,41,41,41,32,40,40,40,67,39,
-32,66,41,32,95,52,56,50,41,32,40,40,67,32,79,41,32,75,41,41,
-41,41,41,32,40,40,65,32,58,49,49,54,57,32,40,90,32,40,40,66,
-32,85,41,32,40,90,32,40,40,67,32,40,40,40,67,39,32,83,39,41,
-32,40,40,66,32,67,39,41,32,40,40,66,32,40,67,39,32,95,52,56,
-50,41,41,32,40,40,66,32,40,66,32,95,57,57,55,41,41,32,40,40,
-67,32,40,40,40,67,39,32,83,39,41,32,95,57,55,49,41,32,40,85,
-32,75,41,41,41,32,40,85,32,65,41,41,41,41,41,41,32,40,40,66,
-32,40,66,32,40,95,52,56,50,32,34,58,92,49,48,38,34,41,41,41,
-32,40,40,66,32,40,66,32,40,95,52,56,50,32,34,32,32,102,111,117,
-110,100,58,32,32,32,32,34,41,41,41,32,40,40,40,67,39,32,66,41,
-32,40,40,66,32,95,52,56,50,41,32,40,40,66,32,95,52,52,55,41,
-32,40,40,40,67,39,32,95,52,56,50,41,32,40,95,52,49,50,32,95,
-49,48,52,57,41,41,32,40,40,79,32,34,69,79,70,34,41,32,75,41,
-41,41,41,41,32,40,40,66,32,40,95,52,56,50,32,40,40,79,32,35,
-49,48,41,32,75,41,41,41,32,40,40,66,32,40,95,52,56,50,32,34,
-32,32,101,120,112,101,99,116,101,100,58,32,34,41,41,32,40,40,66,32,
-95,49,55,51,51,41,32,40,95,52,54,51,32,95,49,51,52,41,41,41,
-41,41,41,41,41,41,32,95,49,48,54,54,41,41,41,41,41,32,40,40,
-65,32,58,49,49,55,48,32,85,41,32,40,40,65,32,58,49,49,55,49,
-32,40,85,32,73,41,41,32,40,40,65,32,58,49,49,55,50,32,40,40,
-40,67,39,32,40,67,39,32,40,95,51,51,32,95,49,53,54,56,41,41,
-41,32,95,49,49,55,49,41,32,40,85,32,40,75,32,40,95,51,53,32,
-95,49,53,54,56,41,41,41,41,41,32,40,40,65,32,58,49,49,55,51,
-32,40,40,95,50,56,48,32,40,40,66,32,40,66,32,40,95,50,55,48,
-32,95,49,49,55,48,41,41,41,32,40,40,66,32,40,40,67,39,32,40,
-67,39,32,40,95,51,51,32,95,49,53,54,56,41,41,41,32,95,49,49,
-55,49,41,41,32,40,40,66,32,85,41,32,40,40,66,32,40,66,32,40,
-66,32,40,95,51,53,32,95,49,53,54,56,41,41,41,41,32,40,66,32,
-80,41,41,41,41,41,41,32,40,95,50,56,52,32,95,49,49,55,51,41,
-41,41,32,40,40,65,32,58,49,49,55,52,32,40,40,40,40,40,95,49,
-50,32,95,49,49,55,51,41,32,40,40,66,32,40,95,50,55,48,32,95,
-49,49,55,48,41,41,32,40,40,66,32,40,66,32,40,95,51,53,32,95,
-49,53,54,56,41,41,41,32,80,41,41,41,32,40,95,51,57,32,95,49,
-49,55,53,41,41,32,40,40,66,32,40,66,32,40,95,50,55,48,32,95,
-49,49,55,48,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,
-32,40,67,39,32,40,95,51,51,32,95,49,53,54,56,41,41,41,32,95,
-49,49,55,49,41,41,32,40,40,66,32,85,41,32,40,90,32,95,49,49,
-55,49,41,41,41,41,41,32,40,95,50,49,32,95,49,49,55,52,41,41,
-41,32,40,40,65,32,58,49,49,55,53,32,40,40,40,40,95,51,49,32,
-95,49,49,55,52,41,32,40,40,66,32,40,66,32,40,95,50,55,48,32,
-95,49,49,55,48,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,
-66,32,40,67,39,32,40,95,51,51,32,95,49,53,54,56,41,41,41,32,
-95,49,49,55,49,41,41,32,40,40,66,32,85,41,32,40,66,32,95,49,
-49,55,49,41,41,41,41,41,32,40,95,49,54,32,95,49,49,55,52,41,
-41,32,40,95,51,56,32,95,49,49,55,53,41,41,41,32,40,40,65,32,
-58,49,49,55,54,32,40,40,95,52,48,32,95,49,49,55,53,41,32,95,
-50,53,41,41,32,40,40,65,32,58,49,49,55,55,32,40,40,66,32,40,
-95,50,55,48,32,95,49,49,55,48,41,41,32,40,40,66,32,40,66,32,
-40,95,51,53,32,95,49,53,54,56,41,41,41,32,40,40,67,32,40,83,
-39,32,80,41,41,32,73,41,41,41,41,32,40,40,65,32,58,49,49,55,
-56,32,40,40,66,32,40,95,50,55,48,32,95,49,49,55,48,41,41,32,
-40,40,66,32,40,66,32,40,95,51,53,32,95,49,53,54,56,41,41,41,
-32,40,66,32,40,80,32,95,49,52,53,48,41,41,41,41,41,32,40,40,
-65,32,58,49,49,55,57,32,40,40,66,32,40,95,50,55,48,32,95,49,
-49,55,48,41,41,32,40,90,32,40,40,66,32,40,95,51,53,32,95,49,
-53,54,56,41,41,32,40,80,32,95,49,52,53,48,41,41,41,41,41,32,
-40,40,65,32,58,49,49,56,48,32,40,40,95,50,55,48,32,95,49,49,
-55,48,41,32,40,40,66,32,40,95,51,53,32,95,49,53,54,56,41,41,
-32,40,40,83,32,80,41,32,73,41,41,41,41,32,40,40,65,32,58,49,
-49,56,49,32,40,40,66,32,40,95,50,55,48,32,95,49,49,55,48,41,
-41,32,40,40,40,67,39,32,66,41,32,40,95,51,51,32,95,49,53,54,
-56,41,41,32,40,40,66,32,40,66,32,40,95,51,53,32,95,49,53,54,
-56,41,41,41,32,40,67,32,80,41,41,41,41,41,32,40,40,65,32,58,
-49,49,56,50,32,95,54,48,41,32,40,40,65,32,58,49,49,56,51,32,
-95,57,49,54,41,32,40,40,65,32,58,49,49,56,52,32,40,40,95,52,
-48,32,95,50,56,57,41,32,95,50,53,41,41,32,40,40,65,32,58,49,
-49,56,53,32,40,40,66,32,40,40,95,51,51,32,95,49,53,54,56,41,
-32,95,49,53,52,49,41,41,32,40,40,66,32,40,40,67,39,32,95,49,
-53,52,50,41,32,40,40,40,67,39,32,40,95,53,48,57,32,95,50,57,
-49,41,41,32,40,40,66,32,95,52,50,56,41,32,40,95,52,52,51,32,
-40,40,67,32,40,95,50,49,50,32,95,49,51,52,41,41,32,34,45,45,
-34,41,41,41,41,32,35,49,41,41,41,32,40,40,66,32,40,95,50,55,
-48,32,95,49,55,51,55,41,41,32,95,49,49,56,54,41,41,41,41,32,
-40,40,65,32,58,49,49,56,54,32,40,85,32,40,40,40,67,39,32,67,
-41,32,40,40,67,39,32,67,41,32,40,40,66,32,40,83,32,73,41,41,
-32,40,40,66,32,40,66,32,89,41,41,32,40,40,66,32,40,66,32,40,
-66,32,95,49,48,48,54,41,41,41,32,40,40,67,39,32,40,67,39,32,
-95,52,49,49,41,41,32,40,40,66,32,40,66,32,85,41,41,32,40,40,
-40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,79,41,41,41,
-41,32,40,40,66,32,40,66,32,40,40,67,39,32,66,41,32,80,41,41,
-41,32,40,66,32,95,49,49,56,55,41,41,41,32,75,41,41,41,41,41,
-41,41,41,32,40,40,66,32,40,40,83,39,32,95,50,55,48,41,32,40,
-40,66,32,95,52,57,51,41,32,40,40,66,32,40,95,50,55,48,32,95,
-50,53,41,41,32,40,40,66,32,40,95,52,56,50,32,34,116,114,97,110,
-115,108,97,116,101,58,32,110,111,116,32,102,111,117,110,100,32,34,41,41,
-32,95,57,56,52,41,41,41,41,41,32,40,67,32,95,49,48,49,48,41,
-41,41,41,41,32,40,40,65,32,58,49,49,56,55,32,40,40,66,32,89,
-41,32,40,40,40,67,39,32,40,67,39,32,83,41,41,32,40,40,40,67,
-39,32,40,83,39,32,67,41,41,32,40,40,40,67,39,32,40,67,39,32,
-40,67,39,32,83,39,41,41,41,32,40,40,40,67,39,32,66,41,32,80,
-41,32,40,40,40,83,39,32,40,67,39,32,66,41,41,32,40,66,32,95,
-49,55,51,55,41,41,32,73,41,41,41,32,40,90,32,75,41,41,41,32,
-40,40,40,83,39,32,40,67,39,32,67,41,41,32,40,40,40,67,39,32,
-40,67,39,32,67,41,41,32,40,40,40,83,39,32,40,67,39,32,67,41,
-41,32,40,40,40,67,39,32,40,83,39,32,67,41,41,32,40,40,40,67,
-39,32,66,41,32,40,40,66,32,67,41,32,40,40,40,67,39,32,67,41,
-32,40,40,66,32,40,80,32,95,49,55,51,55,41,41,32,40,40,67,32,
-66,41,32,95,55,52,52,41,41,41,32,95,49,55,51,55,41,41,41,32,
-75,41,41,32,75,41,41,32,40,40,67,32,66,41,32,95,55,57,54,41,
-41,41,32,40,40,40,83,39,32,95,50,55,48,41,32,40,40,66,32,95,
-52,57,51,41,32,40,40,66,32,40,95,50,55,48,32,95,50,53,41,41,
-32,40,95,52,56,50,32,34,116,114,97,110,115,58,32,110,111,32,112,114,
-105,109,111,112,32,34,41,41,41,41,32,40,40,67,32,40,95,52,53,53,
-32,95,49,51,52,41,41,32,95,49,49,56,56,41,41,41,41,32,40,40,
-67,32,66,41,32,40,40,66,32,40,95,55,56,53,32,40,95,55,56,55,
-32,40,95,56,54,49,32,34,100,121,110,115,121,109,34,41,41,41,41,32,
-40,40,66,32,95,55,56,55,41,32,95,56,54,48,41,41,41,41,41,41,
-32,40,40,66,32,40,95,50,55,48,32,95,50,53,41,41,32,40,40,66,
-32,40,95,52,56,50,32,34,116,114,97,110,115,58,32,105,109,112,111,115,
-115,105,98,108,101,58,32,34,41,41,32,40,95,49,55,49,52,32,95,55,
-57,56,41,41,41,41,41,41,32,40,40,65,32,58,49,49,56,56,32,40,
-40,79,32,40,40,80,32,40,40,79,32,35,54,54,41,32,75,41,41,32,
-66,41,41,32,40,40,79,32,40,40,80,32,40,40,79,32,35,55,57,41,
-32,75,41,41,32,79,41,41,32,40,40,79,32,40,40,80,32,40,40,79,
-32,35,55,53,41,32,75,41,41,32,75,41,41,32,40,40,79,32,40,40,
-80,32,34,67,39,34,41,32,67,39,41,41,32,40,40,79,32,40,40,80,
-32,40,40,79,32,35,54,55,41,32,75,41,41,32,67,41,41,32,40,40,
-79,32,40,40,80,32,40,40,79,32,35,54,53,41,32,75,41,41,32,65,
-41,41,32,40,40,79,32,40,40,80,32,34,83,39,34,41,32,83,39,41,
-41,32,40,40,79,32,40,40,80,32,40,40,79,32,35,56,48,41,32,75,
-41,41,32,80,41,41,32,40,40,79,32,40,40,80,32,40,40,79,32,35,
-55,51,41,32,75,41,41,32,73,41,41,32,40,40,79,32,40,40,80,32,
-40,40,79,32,35,56,51,41,32,75,41,41,32,83,41,41,32,40,40,79,
-32,40,40,80,32,40,40,79,32,35,56,53,41,32,75,41,41,32,85,41,
-41,32,40,40,79,32,40,40,80,32,40,40,79,32,35,56,57,41,32,75,
-41,41,32,89,41,41,32,40,40,79,32,40,40,80,32,34,66,39,34,41,
-32,66,39,41,41,32,40,40,79,32,40,40,80,32,40,40,79,32,35,57,
-48,41,32,75,41,41,32,90,41,41,32,40,40,79,32,40,40,80,32,40,
-40,79,32,35,56,50,41,32,75,41,41,32,82,41,41,32,40,40,79,32,
-40,40,80,32,40,40,79,32,35,52,51,41,32,75,41,41,32,43,41,41,
-32,40,40,79,32,40,40,80,32,40,40,79,32,35,52,53,41,32,75,41,
-41,32,45,41,41,32,40,40,79,32,40,40,80,32,40,40,79,32,35,52,
-50,41,32,75,41,41,32,42,41,41,32,40,40,79,32,40,40,80,32,34,
-113,117,111,116,34,41,32,113,117,111,116,41,41,32,40,40,79,32,40,40,
-80,32,34,114,101,109,34,41,32,114,101,109,41,41,32,40,40,79,32,40,
-40,80,32,34,117,113,117,111,116,34,41,32,117,113,117,111,116,41,41,32,
-40,40,79,32,40,40,80,32,34,117,114,101,109,34,41,32,117,114,101,109,
-41,41,32,40,40,79,32,40,40,80,32,34,110,101,103,34,41,32,110,101,
-103,41,41,32,40,40,79,32,40,40,80,32,34,97,110,100,34,41,32,97,
-110,100,41,41,32,40,40,79,32,40,40,80,32,34,111,114,34,41,32,111,
-114,41,41,32,40,40,79,32,40,40,80,32,34,120,111,114,34,41,32,120,
-111,114,41,41,32,40,40,79,32,40,40,80,32,34,105,110,118,34,41,32,
-105,110,118,41,41,32,40,40,79,32,40,40,80,32,34,115,104,108,34,41,
-32,115,104,108,41,41,32,40,40,79,32,40,40,80,32,34,115,104,114,34,
-41,32,115,104,114,41,41,32,40,40,79,32,40,40,80,32,34,97,115,104,
-114,34,41,32,97,115,104,114,41,41,32,40,40,79,32,40,40,80,32,34,
-115,117,98,116,114,97,99,116,34,41,32,115,117,98,116,114,97,99,116,41,
-41,32,40,40,79,32,40,40,80,32,34,61,61,34,41,32,61,61,41,41,
-32,40,40,79,32,40,40,80,32,34,47,61,34,41,32,47,61,41,41,32,
-40,40,79,32,40,40,80,32,40,40,79,32,35,54,48,41,32,75,41,41,
-32,60,41,41,32,40,40,79,32,40,40,80,32,34,60,61,34,41,32,60,
-61,41,41,32,40,40,79,32,40,40,80,32,40,40,79,32,35,54,50,41,
-32,75,41,41,32,62,41,41,32,40,40,79,32,40,40,80,32,34,62,61,
-34,41,32,62,61,41,41,32,40,40,79,32,40,40,80,32,34,117,60,34,
-41,32,117,60,41,41,32,40,40,79,32,40,40,80,32,34,117,60,61,34,
-41,32,117,60,61,41,41,32,40,40,79,32,40,40,80,32,34,117,62,34,
-41,32,117,62,41,41,32,40,40,79,32,40,40,80,32,34,117,62,61,34,
-41,32,117,62,61,41,41,32,40,40,79,32,40,40,80,32,34,102,97,100,
-100,34,41,32,102,97,100,100,41,41,32,40,40,79,32,40,40,80,32,34,
-102,115,117,98,34,41,32,102,115,117,98,41,41,32,40,40,79,32,40,40,
-80,32,34,102,109,117,108,34,41,32,102,109,117,108,41,41,32,40,40,79,
-32,40,40,80,32,34,102,100,105,118,34,41,32,102,100,105,118,41,41,32,
-40,40,79,32,40,40,80,32,34,102,101,113,34,41,32,102,101,113,41,41,
-32,40,40,79,32,40,40,80,32,34,102,110,101,34,41,32,102,110,101,41,
-41,32,40,40,79,32,40,40,80,32,34,102,108,116,34,41,32,102,108,116,
-41,41,32,40,40,79,32,40,40,80,32,34,102,108,101,34,41,32,102,108,
-101,41,41,32,40,40,79,32,40,40,80,32,34,102,103,116,34,41,32,102,
-103,116,41,41,32,40,40,79,32,40,40,80,32,34,102,103,101,34,41,32,
-102,103,101,41,41,32,40,40,79,32,40,40,80,32,34,102,110,101,103,34,
-41,32,102,110,101,103,41,41,32,40,40,79,32,40,40,80,32,34,102,115,
-104,111,119,34,41,32,102,115,104,111,119,41,41,32,40,40,79,32,40,40,
-80,32,34,102,114,101,97,100,34,41,32,102,114,101,97,100,41,41,32,40,
-40,79,32,40,40,80,32,34,105,116,111,102,34,41,32,105,116,111,102,41,
-41,32,40,40,79,32,40,40,80,32,34,115,101,113,34,41,32,115,101,113,
-41,41,32,40,40,79,32,40,40,80,32,34,101,114,114,111,114,34,41,32,
-101,114,114,111,114,41,41,32,40,40,79,32,40,40,80,32,34,101,113,117,
-97,108,34,41,32,101,113,117,97,108,41,41,32,40,40,79,32,40,40,80,
-32,34,99,111,109,112,97,114,101,34,41,32,99,111,109,112,97,114,101,41,
-41,32,40,40,79,32,40,40,80,32,34,114,110,102,34,41,32,114,110,102,
-41,41,32,40,40,79,32,40,40,80,32,34,110,111,77,97,116,99,104,34,
-41,32,110,111,77,97,116,99,104,41,41,32,40,40,79,32,40,40,80,32,
-34,110,111,68,101,102,97,117,108,116,34,41,32,110,111,68,101,102,97,117,
-108,116,41,41,32,40,40,79,32,40,40,80,32,34,73,79,46,62,62,61,
-34,41,32,73,79,46,62,62,61,41,41,32,40,40,79,32,40,40,80,32,
-34,73,79,46,62,62,34,41,32,73,79,46,62,62,41,41,32,40,40,79,
-32,40,40,80,32,34,73,79,46,114,101,116,117,114,110,34,41,32,73,79,
-46,114,101,116,117,114,110,41,41,32,40,40,79,32,40,40,80,32,34,73,
-79,46,112,114,105,110,116,34,41,32,73,79,46,112,114,105,110,116,41,41,
-32,40,40,79,32,40,40,80,32,34,73,79,46,115,101,114,105,97,108,105,
-122,101,34,41,32,73,79,46,115,101,114,105,97,108,105,122,101,41,41,32,
-40,40,79,32,40,40,80,32,34,73,79,46,100,101,115,101,114,105,97,108,
-105,122,101,34,41,32,73,79,46,100,101,115,101,114,105,97,108,105,122,101,
-41,41,32,40,40,79,32,40,40,80,32,34,73,79,46,115,116,100,105,110,
-34,41,32,73,79,46,115,116,100,105,110,41,41,32,40,40,79,32,40,40,
-80,32,34,73,79,46,115,116,100,111,117,116,34,41,32,73,79,46,115,116,
-100,111,117,116,41,41,32,40,40,79,32,40,40,80,32,34,73,79,46,115,
-116,100,101,114,114,34,41,32,73,79,46,115,116,100,101,114,114,41,41,32,
-40,40,79,32,40,40,80,32,34,73,79,46,103,101,116,65,114,103,115,34,
-41,32,73,79,46,103,101,116,65,114,103,115,41,41,32,40,40,79,32,40,
-40,80,32,34,73,79,46,100,114,111,112,65,114,103,115,34,41,32,73,79,
-46,100,114,111,112,65,114,103,115,41,41,32,40,40,79,32,40,40,80,32,
-34,73,79,46,112,101,114,102,111,114,109,73,79,34,41,32,73,79,46,112,
-101,114,102,111,114,109,73,79,41,41,32,40,40,79,32,40,40,80,32,34,
-73,79,46,99,97,116,99,104,34,41,32,73,79,46,99,97,116,99,104,41,
-41,32,40,40,79,32,40,40,80,32,34,100,121,110,115,121,109,34,41,32,
-100,121,110,115,121,109,41,41,32,40,40,79,32,40,40,80,32,34,110,101,
-119,67,65,83,116,114,105,110,103,76,101,110,34,41,32,110,101,119,67,65,
-83,116,114,105,110,103,76,101,110,41,41,32,40,40,79,32,40,40,80,32,
-34,112,101,101,107,67,65,83,116,114,105,110,103,34,41,32,112,101,101,107,
-67,65,83,116,114,105,110,103,41,41,32,40,40,79,32,40,40,80,32,34,
-112,101,101,107,67,65,83,116,114,105,110,103,76,101,110,34,41,32,112,101,
-101,107,67,65,83,116,114,105,110,103,76,101,110,41,41,32,40,40,79,32,
-40,40,80,32,34,116,111,73,110,116,34,41,32,116,111,73,110,116,41,41,
-32,40,40,79,32,40,40,80,32,34,116,111,80,116,114,34,41,32,116,111,
-80,116,114,41,41,32,40,40,79,32,40,40,80,32,34,116,111,68,98,108,
-34,41,32,116,111,68,98,108,41,41,32,75,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,65,32,
-58,49,49,56,57,32,34,68,97,116,97,46,66,111,111,108,95,84,121,112,
-101,46,34,41,32,40,40,65,32,58,49,49,57,48,32,34,68,97,116,97,
-46,76,105,115,116,95,84,121,112,101,46,34,41,32,40,40,65,32,58,49,
-49,57,49,32,34,80,114,105,109,105,116,105,118,101,115,46,73,110,116,34,
-41,32,40,40,65,32,58,49,49,57,50,32,34,80,114,105,109,105,116,105,
-118,101,115,46,87,111,114,100,34,41,32,40,40,65,32,58,49,49,57,51,
-32,34,80,114,105,109,105,116,105,118,101,115,46,68,111,117,98,108,101,34,
-41,32,40,40,65,32,58,49,49,57,52,32,34,80,114,105,109,105,116,105,
-118,101,115,46,67,104,97,114,34,41,32,40,40,65,32,58,49,49,57,53,
-32,34,68,97,116,97,46,73,110,116,101,103,101,114,95,84,121,112,101,46,
-73,110,116,101,103,101,114,34,41,32,40,40,65,32,58,49,49,57,54,32,
-34,80,114,105,109,105,116,105,118,101,115,46,126,34,41,32,40,40,65,32,
-58,49,49,57,55,32,34,80,114,105,109,105,116,105,118,101,115,46,61,62,
-34,41,32,40,40,65,32,58,49,49,57,56,32,34,80,114,105,109,105,116,
-105,118,101,115,46,45,62,34,41,32,40,40,65,32,58,49,49,57,57,32,
-34,80,114,105,109,105,116,105,118,101,115,46,83,121,109,98,111,108,34,41,
-32,40,40,65,32,58,49,50,48,48,32,40,40,66,32,40,66,32,40,66,
-32,40,66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,41,41,
-41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
-32,67,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,
-66,32,40,66,32,67,41,41,41,41,41,32,40,40,66,32,40,66,32,40,
-66,32,40,66,32,67,41,41,41,41,32,40,40,66,32,40,66,32,40,66,
-32,67,41,41,41,32,40,40,66,32,40,66,32,67,41,41,32,80,41,41,
-41,41,41,41,41,32,40,40,65,32,58,49,50,48,49,32,40,85,32,40,
-90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,75,41,41,
-41,41,41,41,41,41,32,40,40,65,32,58,49,50,48,50,32,40,85,32,
-40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,65,41,
-41,41,41,41,41,41,41,32,40,40,65,32,58,49,50,48,51,32,40,40,
-66,32,40,66,32,67,41,41,32,80,41,41,32,40,40,65,32,58,49,50,
-48,52,32,80,41,32,40,40,65,32,58,49,50,48,53,32,80,41,32,40,
-40,65,32,58,49,50,48,54,32,40,40,95,50,49,48,32,40,40,67,32,
-66,41,32,40,40,66,32,90,41,32,40,40,67,32,66,41,32,40,40,66,
-32,90,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,95,50,
-49,49,32,95,57,55,52,41,41,32,95,49,50,50,50,41,41,32,95,49,
-50,50,50,41,41,41,41,41,41,32,40,95,50,49,52,32,95,49,50,48,
-54,41,41,41,32,40,40,65,32,58,49,50,48,55,32,40,85,32,65,41,
-41,32,40,40,65,32,58,49,50,48,56,32,40,40,66,32,40,66,32,67,
-41,41,32,80,41,41,32,40,40,65,32,58,49,50,48,57,32,40,40,66,
-32,85,41,32,40,40,66,32,40,40,67,39,32,40,67,39,32,67,41,41,
-32,40,40,40,67,39,32,40,67,39,32,67,41,41,32,40,40,40,83,39,
-32,66,41,32,40,40,66,32,40,67,39,32,83,39,41,41,32,40,40,66,
-32,40,40,67,39,32,67,39,41,32,40,40,66,32,95,49,49,56,50,41,
-32,95,49,51,49,55,41,41,41,32,40,40,40,67,39,32,83,41,32,40,
-40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,
-67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,67,32,40,
-40,40,67,39,32,83,39,41,32,95,49,50,54,53,41,32,40,85,32,40,
-90,32,40,90,32,40,90,32,40,90,32,40,90,32,75,41,41,41,41,41,
-41,41,41,32,40,85,32,40,75,32,40,90,32,40,90,32,40,90,32,40,
-90,32,75,41,41,41,41,41,41,41,41,32,40,85,32,40,75,32,40,75,
-32,40,90,32,40,90,32,40,90,32,75,41,41,41,41,41,41,41,41,32,
-40,85,32,40,75,32,40,75,32,40,75,32,40,90,32,40,90,32,75,41,
-41,41,41,41,41,41,41,32,40,85,32,40,75,32,40,75,32,40,75,32,
-40,75,32,40,90,32,75,41,41,41,41,41,41,41,41,32,40,85,32,40,
-75,32,40,75,32,40,75,32,40,75,32,40,75,32,75,41,41,41,41,41,
-41,41,41,32,40,85,32,40,75,32,40,75,32,40,75,32,40,75,32,40,
-75,32,65,41,41,41,41,41,41,41,41,41,41,32,40,40,40,83,39,32,
-40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,40,83,39,32,83,
-41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,67,39,
-32,40,83,39,32,83,41,41,41,32,40,40,66,32,40,67,39,32,40,67,
-39,32,67,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,
-32,83,41,41,41,32,40,40,40,67,39,32,40,83,39,32,40,67,39,32,
-67,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,83,
-41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,67,41,32,
-40,40,40,67,39,32,40,67,39,32,67,39,41,41,32,40,40,40,67,39,
-32,66,41,32,95,49,50,49,48,41,32,40,40,66,32,40,95,52,54,52,
-32,40,40,95,50,55,56,32,40,95,50,49,49,32,95,57,55,52,41,41,
-32,95,53,57,56,41,41,41,32,40,40,66,32,95,52,49,48,41,32,40,
-40,66,32,40,95,52,49,49,32,40,85,32,40,75,32,40,90,32,40,90,
-32,40,90,32,40,90,32,40,90,32,40,90,32,40,40,67,32,79,41,32,
-75,41,41,41,41,41,41,41,41,41,41,41,32,95,49,48,48,51,41,41,
-41,41,41,32,40,40,66,32,95,52,49,48,41,32,40,85,32,40,90,32,
-75,41,41,41,41,41,41,32,40,40,66,32,95,49,48,48,53,41,32,95,
-49,50,50,57,41,41,41,32,40,40,66,32,95,52,49,48,41,32,40,85,
-32,40,75,32,75,41,41,41,41,41,32,40,40,66,32,95,49,48,48,53,
-41,32,95,49,50,51,54,41,41,41,32,40,40,66,32,95,52,49,48,41,
-32,40,85,32,40,75,32,65,41,41,41,41,41,41,41,32,40,40,66,32,
-40,66,32,40,66,32,40,95,50,55,48,32,95,52,51,52,41,41,41,41,
-32,40,40,67,39,32,40,67,39,32,95,52,49,50,41,41,32,40,40,40,
-83,39,32,67,41,32,40,40,40,83,39,32,67,41,32,40,40,40,83,39,
-32,67,41,32,40,40,66,32,40,67,32,95,49,50,49,50,41,41,32,95,
-49,50,50,55,41,41,32,95,49,50,50,56,41,41,32,95,49,50,51,49,
-41,41,32,95,49,50,51,52,41,41,41,41,41,41,32,40,40,66,32,40,
-66,32,40,66,32,40,66,32,95,49,48,48,54,41,41,41,41,32,40,40,
-66,32,40,66,32,40,66,32,40,66,32,40,95,52,49,49,32,40,85,32,
-40,40,40,67,39,32,40,67,39,32,79,41,41,32,80,41,32,75,41,41,
-41,41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,
-67,39,32,40,67,39,32,95,52,56,49,41,41,41,32,40,40,40,67,39,
-32,66,41,32,40,66,39,32,80,41,41,32,95,49,50,49,56,41,41,41,
-32,40,95,52,49,49,32,40,85,32,40,40,67,32,66,41,32,40,90,32,
-40,40,66,32,40,66,32,90,41,41,32,40,40,40,67,39,32,40,67,39,
-32,40,67,39,32,79,41,41,41,32,40,40,67,39,32,40,67,39,32,80,
-41,41,32,95,52,57,51,41,41,32,75,41,41,41,41,41,41,41,41,41,
-41,41,41,32,95,49,50,50,48,41,41,41,32,40,95,52,49,50,32,95,
-49,50,49,49,41,41,41,41,32,40,40,65,32,58,49,50,49,48,32,40,
-40,66,32,40,66,32,40,40,83,39,32,66,41,32,40,66,39,32,40,66,
-39,32,40,40,66,32,40,83,39,32,66,41,41,32,40,40,66,32,40,66,
-32,95,49,53,57,56,41,41,32,40,40,40,67,39,32,66,41,32,40,40,
-66,32,95,49,53,57,56,41,32,40,89,32,40,40,66,32,40,80,32,95,
-49,52,53,48,41,41,32,40,40,66,32,40,67,32,66,41,41,32,40,40,
-66,32,90,41,32,40,40,66,32,40,66,32,90,41,41,32,40,66,32,40,
-67,32,95,49,53,57,56,41,41,41,41,41,41,41,41,41,32,40,89,32,
-40,40,66,32,40,80,32,95,49,52,53,48,41,41,32,40,40,66,32,40,
-67,32,66,41,41,32,40,40,66,32,90,41,32,40,66,32,40,67,32,95,
-49,53,57,56,41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,95,
-49,50,48,48,41,41,32,40,40,65,32,58,49,50,49,49,32,40,40,83,
-32,73,41,32,40,40,66,32,40,83,32,66,41,41,32,40,40,66,32,40,
-66,32,90,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,
-32,40,66,32,90,41,41,32,40,40,40,67,39,32,66,41,32,40,66,39,
-32,80,41,41,32,40,40,66,32,40,66,32,85,41,41,32,40,40,66,32,
-40,40,67,39,32,66,41,32,66,41,41,32,40,40,40,67,39,32,66,41,
-32,40,40,66,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,
-32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,
-41,41,41,41,41,41,41,32,40,40,67,32,40,40,40,67,39,32,83,39,
-41,32,40,40,66,32,67,39,41,32,40,40,66,32,67,39,41,32,40,40,
-66,32,67,39,41,32,40,40,66,32,67,39,41,32,40,40,66,32,67,39,
-41,32,40,40,66,32,67,39,41,32,40,40,66,32,67,39,41,32,40,40,
-66,32,67,39,41,32,40,40,66,32,67,39,41,32,40,66,39,32,80,41,
-41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,
-32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,67,39,32,
-67,41,41,41,41,41,41,41,41,41,32,40,40,40,83,39,32,40,67,39,
-32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,
-32,66,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
-40,66,32,40,66,32,40,66,32,40,66,32,40,83,39,32,67,41,41,41,
-41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,
-66,32,40,66,32,40,67,39,32,67,41,41,41,41,41,41,41,32,40,40,
-66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,67,39,32,67,41,
-41,41,41,41,41,32,40,40,66,32,40,40,67,39,32,40,67,39,32,66,
-41,41,32,40,40,66,32,40,66,32,67,39,41,41,32,40,40,66,32,40,
-66,32,67,39,41,41,32,95,49,50,48,48,41,41,41,41,32,40,40,66,
-32,40,66,32,40,40,83,39,32,40,83,39,32,95,50,55,48,41,41,32,
-40,40,66,32,40,66,32,95,52,49,50,41,41,32,40,40,66,32,40,66,
-32,40,83,32,73,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,
-66,32,90,41,41,41,41,32,40,40,66,32,40,66,32,67,41,41,32,40,
-40,40,67,39,32,40,67,39,32,40,83,39,32,67,39,41,41,41,32,67,
-41,32,40,40,40,67,39,32,67,41,32,95,49,50,48,51,41,32,95,52,
-56,48,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,67,39,32,
-40,67,39,32,95,52,49,51,41,41,41,32,40,40,66,32,40,66,32,40,
-66,32,85,41,41,41,32,40,40,66,32,40,66,32,40,66,32,90,41,41,
-41,32,40,40,66,32,40,66,32,40,66,32,90,41,41,41,32,40,40,66,
-32,40,40,67,39,32,66,41,32,67,41,41,32,40,40,66,32,95,52,56,
-50,41,32,40,95,52,49,49,32,40,40,67,32,40,40,80,32,40,75,32,
-75,41,41,32,40,40,67,32,79,41,32,75,41,41,41,32,40,75,32,75,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,
-40,67,39,32,95,52,49,51,41,41,32,40,40,66,32,40,66,32,85,41,
-41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,82,41,32,
-40,95,52,49,49,32,40,40,67,32,40,40,80,32,40,75,32,75,41,41,
-32,40,75,32,75,41,41,41,32,40,40,67,32,79,41,32,75,41,41,41,
-41,41,41,41,41,41,41,41,32,40,95,52,49,49,32,40,40,67,32,40,
-40,80,32,40,40,67,32,79,41,32,75,41,41,32,40,75,32,75,41,41,
-41,32,40,75,32,75,41,41,41,41,41,41,32,40,40,67,39,32,40,67,
-39,32,40,95,50,49,50,32,95,49,49,56,41,41,41,32,40,95,52,53,
-49,32,95,57,55,52,41,41,41,41,41,41,41,41,41,41,41,41,32,40,
-40,65,32,58,49,50,49,50,32,40,40,40,67,39,32,40,67,39,32,40,
-83,39,32,40,67,39,32,40,67,39,32,67,41,41,41,41,41,32,40,40,
-40,67,39,32,40,83,39,32,40,67,39,32,40,67,39,32,40,83,39,32,
-67,41,41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,66,39,32,
-40,66,39,32,40,66,39,32,40,40,66,32,80,41,32,40,40,40,67,39,
-32,67,41,32,40,40,40,67,39,32,83,41,32,40,67,32,95,49,48,49,
-48,41,41,32,40,40,40,83,39,32,95,50,55,48,41,32,40,40,66,32,
-40,95,57,49,54,32,95,54,55,51,41,41,32,40,95,56,56,53,32,95,
-56,56,55,41,41,41,32,40,40,66,32,40,95,52,56,50,32,34,117,110,
-100,101,102,105,110,101,100,32,109,111,100,117,108,101,58,32,34,41,41,32,
-95,57,56,52,41,41,41,41,32,40,85,32,40,75,32,40,75,32,40,90,
-32,40,40,66,32,90,41,32,40,40,66,32,40,66,32,90,41,41,32,40,
-40,66,32,40,66,32,67,41,41,32,80,41,41,41,41,41,41,41,41,41,
-41,41,41,41,32,40,40,66,32,40,40,67,39,32,40,67,39,32,40,67,
-39,32,83,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,
-32,40,67,39,32,83,41,41,41,41,32,40,40,40,67,39,32,40,67,39,
-32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,
-41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,40,
-40,66,32,40,66,32,40,67,39,32,40,67,39,32,40,83,39,32,80,41,
-41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,
-67,39,32,40,67,39,32,79,41,41,41,41,41,32,40,40,66,32,40,66,
-32,40,40,67,39,32,40,67,39,32,66,41,41,32,95,49,50,48,51,41,
-41,41,32,95,49,50,49,57,41,41,32,75,41,41,41,32,40,40,40,67,
-39,32,83,41,32,40,40,40,67,39,32,67,41,32,40,67,32,95,49,48,
-49,48,41,41,32,95,52,56,48,41,41,32,40,40,40,67,39,32,40,67,
-39,32,79,41,41,32,80,41,32,75,41,41,41,41,32,95,52,56,48,41,
-41,32,95,49,50,49,52,41,41,41,32,40,67,32,95,49,50,49,51,41,
-41,41,41,32,40,40,66,32,40,40,67,39,32,83,41,32,40,40,40,67,
-39,32,40,67,39,32,83,41,41,32,40,40,40,67,39,32,40,67,39,32,
-40,67,39,32,40,67,39,32,67,41,41,41,41,32,40,40,66,32,40,40,
-67,39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,80,41,
-41,32,40,40,40,67,39,32,40,67,39,32,79,41,41,32,40,40,40,67,
-39,32,67,41,32,95,49,50,48,51,41,32,95,52,56,48,41,41,32,75,
-41,41,41,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,
-67,41,32,40,67,32,95,49,48,49,48,41,41,32,95,52,56,48,41,41,
-32,40,40,40,67,39,32,40,67,39,32,79,41,41,32,80,41,32,75,41,
-41,41,41,32,95,52,56,48,41,41,32,95,49,50,49,52,41,41,41,32,
-40,67,32,95,49,50,49,51,41,41,41,41,32,40,40,66,32,40,66,32,
-40,67,32,40,40,80,32,95,52,56,48,41,32,95,52,56,48,41,41,41,
-41,32,40,40,40,67,39,32,40,67,39,32,79,41,41,32,40,40,66,32,
-40,83,32,95,49,50,48,52,41,41,32,40,67,32,95,49,50,49,51,41,
-41,41,32,75,41,41,41,41,32,40,40,65,32,58,49,50,49,51,32,40,
-40,40,83,39,32,66,41,32,40,40,66,32,95,50,55,48,41,32,40,40,
-40,67,39,32,95,49,56,54,41,32,40,40,66,32,40,95,57,49,54,32,
-95,54,55,51,41,41,32,40,95,56,56,53,32,95,56,56,55,41,41,41,
-32,95,50,55,51,41,41,41,32,40,95,49,52,52,49,32,34,101,120,112,
-111,114,116,34,41,41,41,32,40,40,65,32,58,49,50,49,52,32,40,40,
-67,32,40,40,67,32,66,41,32,40,40,66,32,90,41,32,40,40,40,83,
-39,32,67,41,32,40,40,40,83,39,32,67,41,32,40,40,40,83,39,32,
-67,41,32,40,40,40,83,39,32,67,41,32,40,40,40,83,39,32,67,41,
-32,40,40,40,83,39,32,67,41,32,40,40,40,83,39,32,67,41,32,40,
-40,40,83,39,32,67,41,32,40,40,40,83,39,32,67,41,32,40,40,40,
-83,39,32,67,41,32,40,40,40,83,39,32,67,41,32,40,40,40,83,39,
-32,67,41,32,40,40,40,83,39,32,67,41,32,40,40,40,83,39,32,67,
-41,32,40,40,40,83,39,32,67,41,32,40,40,40,83,39,32,67,41,32,
-40,40,66,32,40,80,32,73,41,41,32,40,90,32,75,41,41,41,32,40,
-90,32,75,41,41,41,32,75,41,41,32,40,90,32,75,41,41,41,32,40,
-90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,75,41,41,32,75,
-41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,40,
-90,32,75,41,41,41,32,40,90,32,40,90,32,75,41,41,41,41,32,40,
-90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,75,41,41,32,75,
-41,41,32,40,90,32,75,41,41,41,41,41,32,40,95,50,53,32,34,116,
-121,81,73,100,101,110,116,34,41,41,41,32,40,40,65,32,58,49,50,49,
-53,32,40,40,66,32,40,95,50,55,50,32,95,56,50,51,41,41,32,95,
-57,56,48,41,41,32,40,40,65,32,58,49,50,49,54,32,40,40,67,32,
-40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,
-40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,
-39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,
-83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,
-32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,
-40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,
-67,39,32,83,41,32,40,40,67,32,40,40,40,67,39,32,83,39,41,32,
-40,40,80,32,73,41,32,40,90,32,95,49,50,49,54,41,41,41,32,40,
-90,32,75,41,41,41,32,75,41,41,32,40,90,32,75,41,41,41,32,40,
-90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,75,41,41,32,75,
-41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,40,
-90,32,75,41,41,41,32,40,90,32,40,90,32,75,41,41,41,41,32,40,
-90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,75,41,41,32,75,
-41,41,32,40,90,32,75,41,41,41,32,40,95,50,53,32,34,103,101,116,
-65,112,112,67,111,110,34,41,41,41,32,40,40,65,32,58,49,50,49,55,
-32,40,40,89,32,40,40,40,67,39,32,40,67,39,32,67,41,41,32,40,
-40,40,67,39,32,40,67,39,32,40,67,39,32,83,41,41,41,32,40,40,
-40,67,39,32,40,67,39,32,40,67,39,32,83,41,41,41,32,40,40,40,
-67,39,32,40,67,39,32,40,67,39,32,83,41,41,41,32,40,40,40,67,
-39,32,40,67,39,32,40,67,39,32,83,41,41,41,32,40,40,40,67,39,
-32,40,67,39,32,40,67,39,32,83,41,41,41,32,40,40,40,67,39,32,
-40,67,39,32,40,67,39,32,83,41,41,41,32,40,40,40,67,39,32,40,
-67,39,32,40,67,39,32,83,41,41,41,32,40,40,40,67,39,32,40,67,
-39,32,40,67,39,32,83,41,41,41,32,40,40,40,67,39,32,40,67,39,
-32,40,67,39,32,83,41,41,41,32,40,40,40,67,39,32,40,67,39,32,
-40,67,39,32,83,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,
-67,39,32,83,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,
-39,32,83,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,
-32,83,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,
-83,41,41,41,32,40,40,40,67,39,32,40,67,39,32,67,41,41,32,40,
-40,40,67,39,32,40,67,39,32,40,67,39,32,83,39,41,41,41,32,40,
-40,66,32,40,40,83,39,32,80,41,32,40,67,32,80,41,41,41,32,40,
-40,40,67,39,32,66,41,32,67,39,41,32,40,67,32,95,52,56,49,41,
-41,41,41,32,40,90,32,75,41,41,41,32,75,41,41,32,40,90,32,75,
-41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,
-75,41,41,32,75,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,
-41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,40,90,32,75,41,
-41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,
-75,41,41,32,75,41,41,32,40,90,32,75,41,41,41,32,40,95,50,53,
-32,34,103,101,116,65,112,112,34,41,41,41,32,95,52,56,48,41,41,32,
-40,40,65,32,58,49,50,49,56,32,40,40,40,67,39,32,83,41,32,40,
-40,40,67,39,32,40,83,39,32,83,41,41,32,40,40,40,67,39,32,40,
-83,39,32,40,83,39,32,67,41,41,41,32,40,40,40,67,39,32,40,67,
-39,32,40,67,39,32,40,67,39,32,67,41,41,41,41,32,40,40,40,83,
-39,32,40,67,39,32,40,83,39,32,40,67,39,32,67,41,41,41,41,32,
-40,40,40,67,39,32,40,83,39,32,40,67,39,32,40,67,39,32,67,41,
-41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,67,39,
-32,40,67,39,32,67,41,41,41,32,40,40,40,83,39,32,83,41,32,40,
-40,40,83,39,32,40,67,39,32,67,39,41,41,32,40,40,66,32,40,66,
-32,67,39,41,41,32,40,40,66,32,40,83,32,95,49,50,48,48,41,41,
-32,40,40,67,39,32,95,52,49,49,41,32,40,40,40,67,39,32,67,41,
-32,40,40,40,67,39,32,67,41,32,40,40,40,67,39,32,67,41,32,40,
-40,66,32,40,67,32,40,40,67,32,40,40,67,32,40,40,67,32,40,40,
-67,32,40,40,67,32,40,40,80,32,40,75,32,40,75,32,75,41,41,41,
-32,40,75,32,40,75,32,75,41,41,41,41,32,40,75,32,40,75,32,75,
-41,41,41,41,32,40,75,32,40,75,32,75,41,41,41,41,32,40,75,32,
-40,75,32,75,41,41,41,41,32,40,75,32,75,41,41,41,32,40,75,32,
-40,75,32,40,75,32,75,41,41,41,41,41,41,32,40,40,66,32,40,66,
-32,95,52,49,49,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,
-39,32,79,41,41,41,32,40,40,66,32,40,67,39,32,80,41,41,32,40,
-95,57,56,55,32,95,54,55,51,41,41,41,32,75,41,41,41,41,32,40,
-75,32,40,75,32,40,75,32,40,75,32,75,41,41,41,41,41,41,32,40,
-75,32,40,75,32,40,75,32,40,75,32,75,41,41,41,41,41,41,32,40,
-75,32,75,41,41,41,41,41,41,32,40,40,40,83,39,32,40,83,39,32,
-40,83,39,32,95,52,56,50,41,41,41,32,40,40,67,39,32,40,67,39,
-32,95,52,49,49,41,41,32,40,40,40,67,39,32,40,67,39,32,67,41,
-41,32,40,40,40,67,39,32,40,67,39,32,67,41,41,32,40,40,40,67,
-39,32,40,67,39,32,67,41,41,32,40,40,40,67,39,32,40,67,39,32,
-67,41,41,32,40,40,40,67,39,32,40,67,39,32,67,41,41,32,40,40,
-40,67,39,32,40,67,39,32,67,41,41,32,40,40,40,67,39,32,40,67,
-39,32,67,41,41,32,40,40,40,67,39,32,40,67,39,32,67,41,41,32,
-40,40,40,67,39,32,40,67,39,32,67,41,41,32,40,40,40,67,39,32,
-40,67,39,32,80,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,
-40,66,32,40,66,32,85,41,41,32,40,40,66,32,40,66,32,90,41,41,
-32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,79,41,41,41,32,
-40,40,66,32,83,41,32,40,83,32,95,49,50,48,51,41,41,41,32,75,
-41,41,41,41,41,32,40,75,32,40,75,32,75,41,41,41,41,32,40,75,
-32,40,75,32,75,41,41,41,41,32,40,75,32,40,75,32,75,41,41,41,
-41,32,40,75,32,40,75,32,75,41,41,41,41,32,40,75,32,75,41,41,
-41,32,40,75,32,40,75,32,40,75,32,75,41,41,41,41,41,32,40,75,
-32,40,75,32,75,41,41,41,41,32,40,75,32,40,75,32,40,75,32,40,
-75,32,75,41,41,41,41,41,41,32,40,75,32,40,75,32,40,75,32,40,
-75,32,75,41,41,41,41,41,41,32,40,75,32,75,41,41,41,41,32,40,
-40,40,83,39,32,40,83,39,32,40,83,39,32,95,52,56,50,41,41,41,
-32,40,40,67,39,32,40,67,39,32,95,52,49,49,41,41,32,40,40,40,
-67,39,32,40,67,39,32,67,41,41,32,40,40,40,67,39,32,40,67,39,
-32,67,41,41,32,40,40,40,67,39,32,40,67,39,32,67,41,41,32,40,
-40,40,67,39,32,40,67,39,32,67,41,41,32,40,40,40,67,39,32,40,
-67,39,32,67,41,41,32,40,40,40,67,39,32,40,67,39,32,67,41,41,
-32,40,40,40,67,39,32,40,67,39,32,67,41,41,32,40,40,40,67,39,
-32,40,67,39,32,67,41,41,32,40,40,40,67,39,32,40,67,39,32,67,
-41,41,32,40,40,66,32,40,66,32,40,80,32,40,75,32,40,75,32,75,
-41,41,41,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,
-32,40,66,32,85,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,
-40,40,67,39,32,40,67,39,32,40,67,39,32,79,41,41,41,32,40,40,
-66,32,83,41,32,40,83,32,95,49,50,48,51,41,41,41,32,75,41,41,
-41,41,41,41,32,40,75,32,40,75,32,75,41,41,41,41,32,40,75,32,
-40,75,32,75,41,41,41,41,32,40,75,32,40,75,32,75,41,41,41,41,
-32,40,75,32,75,41,41,41,32,40,75,32,40,75,32,40,75,32,75,41,
-41,41,41,41,32,40,75,32,40,75,32,75,41,41,41,41,32,40,75,32,
-40,75,32,40,75,32,40,75,32,75,41,41,41,41,41,41,32,40,75,32,
-40,75,32,40,75,32,40,75,32,75,41,41,41,41,41,41,32,40,75,32,
-75,41,41,41,41,32,40,40,40,83,39,32,40,83,39,32,40,67,39,32,
-95,52,56,50,41,41,41,32,40,40,67,39,32,40,67,39,32,95,52,49,
-49,41,41,32,40,40,40,67,39,32,40,67,39,32,67,41,41,32,40,40,
-40,67,39,32,40,67,39,32,67,41,41,32,40,40,66,32,40,66,32,40,
-67,32,40,40,67,32,40,40,67,32,40,40,67,32,40,40,67,32,40,40,
-67,32,40,40,67,32,40,40,80,32,40,75,32,40,75,32,75,41,41,41,
-32,40,75,32,40,75,32,75,41,41,41,41,32,40,75,32,40,75,32,75,
-41,41,41,41,32,40,75,32,40,75,32,75,41,41,41,41,32,40,75,32,
-40,75,32,75,41,41,41,41,32,40,75,32,75,41,41,41,32,40,75,32,
-40,75,32,40,75,32,75,41,41,41,41,41,32,40,75,32,40,75,32,75,
-41,41,41,41,41,41,32,40,40,66,32,90,41,32,40,40,66,32,40,66,
-32,90,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,
-40,66,32,85,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,
-40,67,39,32,40,67,39,32,40,67,39,32,79,41,41,41,32,40,40,66,
-32,83,41,32,40,83,32,95,49,50,48,51,41,41,41,32,75,41,41,41,
-41,41,41,41,41,32,40,75,32,40,75,32,40,75,32,40,75,32,75,41,
-41,41,41,41,41,32,40,75,32,75,41,41,41,41,32,40,40,67,39,32,
-95,52,49,49,41,32,40,40,40,67,39,32,67,41,32,40,40,40,67,39,
-32,67,41,32,40,40,40,67,39,32,67,41,32,40,40,40,67,39,32,67,
-41,32,40,40,40,67,39,32,67,41,32,40,40,40,67,39,32,67,41,32,
-40,40,40,67,39,32,67,41,32,40,40,40,67,39,32,67,41,32,40,40,
-66,32,40,67,32,40,40,80,32,40,75,32,40,75,32,75,41,41,41,32,
-40,75,32,40,75,32,75,41,41,41,41,41,32,40,40,66,32,90,41,32,
-40,40,66,32,85,41,32,40,40,66,32,90,41,32,40,40,40,67,39,32,
-40,67,39,32,79,41,41,32,40,40,40,67,39,32,67,41,32,40,83,32,
-95,49,50,48,51,41,41,32,95,52,56,48,41,41,32,75,41,41,41,41,
-41,41,32,40,75,32,40,75,32,75,41,41,41,41,32,40,75,32,40,75,
-32,75,41,41,41,41,32,40,75,32,75,41,41,41,32,40,75,32,40,75,
-32,40,75,32,75,41,41,41,41,41,32,40,75,32,40,75,32,75,41,41,
-41,41,32,40,75,32,40,75,32,40,75,32,40,75,32,75,41,41,41,41,
-41,41,32,40,75,32,40,75,32,40,75,32,40,75,32,75,41,41,41,41,
-41,41,32,40,75,32,75,41,41,41,41,41,41,41,41,32,40,40,67,39,
-32,95,52,49,49,41,32,40,40,40,67,39,32,67,41,32,40,40,40,67,
-39,32,67,41,32,40,40,40,67,39,32,67,41,32,40,40,40,67,39,32,
-67,41,32,40,40,40,67,39,32,67,41,32,40,40,40,67,39,32,67,41,
-32,40,40,40,67,39,32,67,41,32,40,40,40,67,39,32,67,41,32,40,
-40,66,32,40,67,32,40,40,80,32,40,75,32,40,75,32,75,41,41,41,
-32,40,75,32,40,75,32,75,41,41,41,41,41,32,40,40,66,32,40,67,
-32,66,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,
-67,39,32,79,41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,
-66,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,80,41,41,
-32,40,95,57,56,55,32,95,54,55,51,41,41,41,41,32,40,67,32,95,
-56,52,48,41,41,41,32,75,41,41,41,41,32,40,75,32,40,75,32,75,
-41,41,41,41,32,40,75,32,40,75,32,75,41,41,41,41,32,40,75,32,
-75,41,41,41,32,40,75,32,40,75,32,40,75,32,75,41,41,41,41,41,
-32,40,75,32,40,75,32,75,41,41,41,41,32,40,75,32,40,75,32,40,
-75,32,40,75,32,75,41,41,41,41,41,41,32,40,75,32,40,75,32,40,
-75,32,40,75,32,75,41,41,41,41,41,41,32,40,75,32,75,41,41,41,
-41,41,41,32,40,40,66,32,95,49,48,48,53,41,32,95,49,50,51,52,
-41,41,41,32,40,40,66,32,95,49,48,48,53,41,32,95,49,50,51,54,
-41,41,41,32,40,40,67,39,32,95,52,49,49,41,32,40,40,40,67,39,
-32,67,41,32,40,40,40,67,39,32,67,41,32,40,40,40,67,39,32,67,
-41,32,40,40,40,67,39,32,67,41,32,40,40,40,67,39,32,67,41,32,
-40,40,40,67,39,32,67,41,32,40,40,66,32,40,67,32,40,40,67,32,
-40,40,67,32,40,40,80,32,40,75,32,40,75,32,75,41,41,41,32,40,
-75,32,40,75,32,75,41,41,41,41,32,40,75,32,40,75,32,75,41,41,
-41,41,32,40,75,32,40,75,32,75,41,41,41,41,41,32,40,40,40,67,
-39,32,40,67,39,32,40,67,39,32,79,41,41,41,32,40,40,66,32,40,
-40,83,39,32,66,41,32,95,49,50,48,52,41,41,32,40,40,66,32,40,
-66,32,95,49,50,48,53,41,41,32,40,40,66,32,40,66,32,95,56,50,
-51,41,41,32,40,95,57,56,55,32,95,54,55,51,41,41,41,41,41,32,
-75,41,41,41,32,40,75,32,75,41,41,41,32,40,75,32,40,75,32,40,
-75,32,75,41,41,41,41,41,32,40,75,32,40,75,32,75,41,41,41,41,
-32,40,75,32,40,75,32,40,75,32,40,75,32,75,41,41,41,41,41,41,
-32,40,75,32,40,75,32,40,75,32,40,75,32,75,41,41,41,41,41,41,
-32,40,75,32,75,41,41,41,41,41,32,40,95,49,51,57,57,32,95,54,
-55,51,41,41,41,32,40,40,40,67,39,32,66,41,32,40,66,39,32,40,
-40,40,83,39,32,95,49,50,49,57,41,32,95,49,50,50,56,41,32,95,
-49,50,51,49,41,41,41,32,40,95,57,56,55,32,95,54,55,51,41,41,
-41,41,32,40,40,40,67,39,32,40,67,39,32,67,41,41,32,40,40,40,
-67,39,32,40,67,39,32,67,41,41,32,40,40,66,32,40,40,67,39,32,
-40,67,39,32,40,95,49,52,52,49,32,75,41,41,41,32,40,95,57,56,
-55,32,95,54,55,51,41,41,41,32,95,49,50,50,55,41,41,32,40,75,
-32,40,95,49,51,57,57,32,95,54,55,51,41,41,41,41,32,73,41,41,
-41,32,95,49,50,51,51,41,41,32,40,40,65,32,58,49,50,49,57,32,
-40,40,40,67,39,32,66,41,32,40,66,39,32,40,40,66,32,95,52,49,
-50,41,32,40,40,66,32,40,40,83,39,32,95,49,50,48,52,41,32,95,
-57,57,48,41,41,32,40,40,40,67,39,32,67,41,32,40,40,40,67,39,
-32,67,41,32,40,67,32,40,95,49,52,52,49,32,75,41,41,41,32,40,
-75,32,40,95,49,51,57,57,32,95,54,55,51,41,41,41,41,32,73,41,
-41,41,41,41,32,40,40,66,32,40,66,32,40,95,50,55,48,32,40,95,
-52,57,51,32,95,52,56,48,41,41,41,41,32,40,67,32,95,49,48,49,
-48,41,41,41,41,32,40,40,65,32,58,49,50,50,48,32,40,40,67,32,
-40,40,40,83,39,32,40,67,39,32,67,41,41,32,40,40,40,83,39,32,
-40,83,39,32,67,41,41,32,40,40,40,83,39,32,40,67,39,32,67,41,
-41,32,40,40,40,83,39,32,40,67,39,32,67,41,41,32,40,40,40,83,
-39,32,40,67,39,32,67,41,41,32,40,40,40,83,39,32,66,41,32,40,
-40,66,32,80,41,32,40,40,66,32,95,49,48,48,54,41,32,40,95,52,
-49,49,32,40,85,32,40,75,32,40,85,32,40,75,32,40,90,32,40,90,
-32,40,90,32,40,90,32,40,90,32,75,41,41,41,41,41,41,41,41,41,
-41,41,41,41,32,40,40,66,32,40,66,32,40,95,50,55,48,32,40,95,
-49,52,52,50,32,40,95,52,53,55,32,95,49,50,48,54,41,41,41,41,
-41,32,40,40,67,39,32,95,52,49,49,41,32,40,40,66,32,85,41,32,
-40,40,66,32,40,66,32,85,41,41,32,40,40,66,32,40,66,32,90,41,
-41,32,40,40,66,32,40,66,32,40,66,32,90,41,41,41,32,40,40,66,
-32,40,66,32,40,66,32,90,41,41,41,32,40,40,66,32,40,66,32,40,
-66,32,90,41,41,41,32,40,40,66,32,40,66,32,40,66,32,90,41,41,
-41,32,40,40,66,32,40,66,32,40,66,32,90,41,41,41,32,40,40,66,
-32,40,66,32,40,66,32,95,52,49,49,41,41,41,32,40,40,66,32,40,
-66,32,40,66,32,85,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
-40,66,32,90,41,41,41,41,32,40,66,32,40,66,32,40,66,32,40,40,
-67,39,32,95,52,49,49,41,32,40,40,40,67,39,32,40,67,39,32,79,
-41,41,32,40,40,66,32,40,67,32,80,41,41,32,40,40,67,32,79,41,
-32,75,41,41,41,32,75,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,32,40,40,66,32,95,49,48,48,54,41,32,40,
-95,52,49,49,32,40,85,32,40,75,32,40,85,32,40,75,32,40,75,32,
-40,75,32,40,90,32,40,90,32,40,90,32,75,41,41,41,41,41,41,41,
-41,41,41,41,41,41,32,40,40,66,32,40,95,50,55,48,32,95,49,48,
-48,54,41,41,32,40,95,52,49,49,32,40,85,32,40,75,32,40,85,32,
-40,75,32,40,75,32,40,75,32,40,75,32,40,90,32,40,90,32,75,41,
-41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,95,50,
-55,48,32,40,95,49,48,48,55,32,95,49,50,50,49,41,41,41,32,40,
-95,52,49,49,32,40,85,32,40,75,32,40,85,32,40,75,32,40,75,32,
-40,75,32,40,75,32,40,75,32,40,90,32,75,41,41,41,41,41,41,41,
-41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,95,50,55,48,32,
-40,95,49,52,52,50,32,40,95,52,53,55,32,95,49,50,48,54,41,41,
-41,41,41,32,40,40,67,39,32,95,52,49,49,41,32,40,40,66,32,85,
-41,32,40,40,66,32,40,66,32,85,41,41,32,40,40,66,32,40,66,32,
-90,41,41,32,40,40,66,32,40,66,32,40,66,32,90,41,41,41,32,40,
-40,66,32,40,66,32,40,66,32,40,66,32,90,41,41,41,41,32,40,40,
-66,32,40,66,32,40,66,32,40,66,32,40,66,32,90,41,41,41,41,41,
-32,40,40,40,83,39,32,40,83,39,32,40,83,39,32,66,41,41,41,32,
-40,40,66,32,40,66,32,66,39,41,41,32,40,40,66,32,40,66,32,40,
-66,32,40,67,39,32,95,52,56,50,41,41,41,41,32,40,40,66,32,40,
-66,32,40,66,32,95,52,49,49,41,41,41,32,40,40,66,32,40,66,32,
-40,66,32,85,41,41,41,32,40,66,32,40,66,32,40,66,32,40,40,67,
-39,32,95,52,49,49,41,32,40,40,40,67,39,32,40,67,39,32,79,41,
-41,32,40,40,66,32,40,67,32,80,41,41,32,40,40,67,32,79,41,32,
-75,41,41,41,32,75,41,41,41,41,41,41,41,41,41,41,32,40,40,40,
-67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,66,41,41,41,41,
-32,40,40,66,32,40,66,32,40,66,32,40,66,32,95,52,56,50,41,41,
-41,41,32,40,40,66,32,40,66,32,40,66,32,95,52,49,49,41,41,41,
-32,40,40,66,32,40,66,32,40,66,32,85,41,41,41,32,40,40,66,32,
-40,66,32,90,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,
-66,32,40,66,32,40,66,32,95,52,49,49,41,41,41,32,40,40,66,32,
-40,66,32,40,66,32,85,41,41,41,32,40,66,32,40,66,32,40,66,32,
-40,40,67,39,32,95,52,49,49,41,32,40,40,40,67,39,32,40,67,39,
-32,79,41,41,32,40,40,66,32,40,67,32,80,41,41,32,40,40,67,32,
-79,41,32,75,41,41,41,32,75,41,41,41,41,41,41,41,41,41,41,41,
-41,41,32,40,95,52,49,49,32,40,85,32,40,40,66,32,85,41,32,40,
-90,32,40,90,32,40,40,66,32,90,41,32,40,40,66,32,90,41,32,40,
-40,66,32,40,67,32,40,40,40,67,39,32,40,67,39,32,79,41,41,32,
-40,40,66,32,40,83,32,80,41,41,32,40,40,40,67,39,32,40,67,39,
-32,79,41,41,32,40,40,67,39,32,95,49,50,48,53,41,32,95,56,50,
-51,41,41,32,75,41,41,41,32,75,41,41,41,32,95,49,51,52,52,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,
-40,40,66,32,40,95,50,55,48,32,95,49,48,48,54,41,41,32,40,95,
-52,49,49,32,40,85,32,40,40,67,32,66,41,32,40,90,32,40,90,32,
-40,40,66,32,90,41,32,40,40,67,32,66,41,32,40,40,66,32,90,41,
-32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,90,
-41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,66,
-32,90,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,
-40,66,32,40,67,32,40,40,67,39,32,95,52,49,49,41,32,40,40,66,
-32,85,41,32,40,40,66,32,90,41,32,40,40,40,67,39,32,40,67,39,
-32,40,67,39,32,79,41,41,41,32,40,40,40,83,39,32,40,67,39,32,
-66,41,41,32,40,40,66,32,40,66,32,80,41,41,32,40,95,57,56,55,
-32,95,54,55,51,41,41,41,32,40,40,66,32,95,52,49,49,41,32,40,
-40,66,32,85,41,32,40,40,66,32,90,41,32,40,40,40,67,39,32,40,
-67,39,32,79,41,41,32,40,95,57,56,55,32,95,54,55,51,41,41,32,
-75,41,41,41,41,41,41,32,75,41,41,41,41,41,41,41,32,40,67,32,
-95,52,57,51,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,32,40,40,40,67,39,32,66,41,32,66,41,32,40,40,66,32,40,
-66,32,90,41,41,32,40,40,66,32,40,66,32,40,66,32,90,41,41,41,
-32,40,40,66,32,40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,
-40,83,39,32,67,41,32,40,40,66,32,40,67,32,83,39,41,41,32,40,
-40,40,83,39,32,66,41,32,79,41,32,40,40,40,67,39,32,40,67,39,
-32,79,41,41,32,40,67,32,40,95,57,56,55,32,95,54,55,51,41,41,
-41,32,75,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,79,41,
-41,32,40,67,32,40,95,57,56,55,32,95,54,55,51,41,41,41,32,75,
-41,41,41,41,32,95,52,57,51,41,41,41,41,41,41,32,40,40,65,32,
-58,49,50,50,49,32,40,40,67,32,66,41,32,40,40,40,67,39,32,66,
-41,32,40,66,39,32,66,41,41,32,40,40,66,32,40,66,32,40,66,32,
-40,66,32,90,41,41,41,41,32,40,40,66,32,40,66,32,67,41,41,32,
-40,40,40,67,39,32,66,41,32,40,40,66,32,40,67,39,32,67,39,41,
-41,32,40,40,66,32,40,66,32,95,49,50,48,56,41,41,32,40,40,66,
-32,40,67,32,40,95,52,49,52,32,40,40,95,50,55,48,32,95,50,55,
-55,41,32,40,95,49,48,49,50,32,75,41,41,41,41,41,32,95,49,48,
-48,53,41,41,41,41,32,40,95,52,53,56,32,95,49,50,50,51,41,41,
-41,41,41,41,41,32,40,40,65,32,58,49,50,50,50,32,40,40,67,32,
-40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,67,41,32,40,40,
-40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,
-39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,
-83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,
-32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,
-40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,
-67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,67,32,40,
-40,40,67,39,32,83,39,41,32,40,85,32,73,41,41,32,40,90,32,75,
-41,41,41,32,40,90,32,75,41,41,41,32,75,41,41,32,40,90,32,75,
-41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,
-75,41,41,32,75,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,
-41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,40,90,32,75,41,
-41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,
-75,41,41,32,40,95,56,53,50,32,95,54,55,51,41,41,41,32,40,90,
-32,75,41,41,41,32,40,95,49,51,57,57,32,95,54,55,51,41,41,41,
-32,40,40,65,32,58,49,50,50,51,32,40,40,67,32,66,41,32,40,40,
-66,32,90,41,32,40,40,66,32,90,41,32,40,40,67,32,66,41,32,40,
-40,66,32,90,41,32,40,40,66,32,90,41,32,40,95,57,48,52,32,95,
-54,55,51,41,41,41,41,41,41,41,41,32,40,40,65,32,58,49,50,50,
-52,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
-32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,67,
-41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,
-40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
-32,40,66,32,40,66,32,67,41,41,41,41,41,41,41,41,41,41,41,32,
-40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
-66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,41,41,41,41,
-41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
-66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,41,41,41,41,
-41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
-32,40,66,32,40,66,32,67,41,41,41,41,41,41,41,41,32,40,40,66,
-32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,67,
-41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,
-32,40,66,32,40,66,32,67,41,41,41,41,41,41,32,40,40,66,32,40,
-66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,41,32,40,40,
-66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,32,40,40,66,
-32,40,66,32,40,66,32,67,41,41,41,32,40,40,66,32,40,66,32,67,
-41,41,32,80,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,65,
-32,58,49,50,50,53,32,75,41,32,40,40,65,32,58,49,50,50,54,32,
-65,41,32,40,40,65,32,58,49,50,50,55,32,40,85,32,40,75,32,40,
-75,32,40,75,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,
-40,90,32,40,90,32,40,90,32,75,41,41,41,41,41,41,41,41,41,41,
-41,41,41,32,40,40,65,32,58,49,50,50,56,32,40,85,32,40,75,32,
-40,75,32,40,75,32,40,75,32,40,75,32,40,90,32,40,90,32,40,90,
-32,40,90,32,40,90,32,40,90,32,75,41,41,41,41,41,41,41,41,41,
-41,41,41,41,32,40,40,65,32,58,49,50,50,57,32,40,85,32,40,75,
-32,40,75,32,40,75,32,40,75,32,40,90,32,40,90,32,40,90,32,40,
-90,32,40,90,32,40,90,32,40,90,32,75,41,41,41,41,41,41,41,41,
-41,41,41,41,41,32,40,40,65,32,58,49,50,51,48,32,40,85,32,40,
-75,32,40,75,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,
-40,90,32,40,90,32,40,90,32,40,90,32,75,41,41,41,41,41,41,41,
-41,41,41,41,41,41,32,40,40,65,32,58,49,50,51,49,32,40,85,32,
-40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,90,
-32,40,90,32,40,90,32,40,90,32,40,90,32,75,41,41,41,41,41,41,
-41,41,41,41,41,41,41,32,40,40,65,32,58,49,50,51,50,32,40,85,
-32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,
-75,32,40,90,32,40,90,32,40,90,32,40,90,32,75,41,41,41,41,41,
-41,41,41,41,41,41,41,41,32,40,40,65,32,58,49,50,51,51,32,40,
-85,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,
-40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,75,41,41,41,41,
-41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,49,50,51,52,32,
-40,85,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,
-32,40,75,32,40,75,32,40,75,32,40,90,32,40,90,32,75,41,41,41,
-41,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,49,50,51,53,
-32,40,85,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,
-75,32,40,75,32,40,75,32,40,90,32,40,90,32,40,90,32,75,41,41,
-41,41,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,49,50,51,
-54,32,40,85,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,
-40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,90,32,40,90,
-32,40,85,32,40,90,32,75,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,32,40,40,65,32,58,49,50,51,55,32,40,85,32,40,75,
-32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,
-75,32,40,75,32,40,75,32,40,90,32,40,90,32,40,85,32,40,75,32,
-75,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,
-65,32,58,49,50,51,56,32,40,85,32,40,75,32,40,75,32,40,75,32,
-40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,
-32,40,90,32,40,90,32,40,85,32,40,75,32,65,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,49,50,51,57,
-32,40,85,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,
-75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,90,32,75,41,41,
-41,41,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,49,50,52,
-48,32,40,85,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,
-40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,75,41,
-41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,49,50,
-52,49,32,40,85,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,
-32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,40,75,32,65,
-41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,49,
-50,52,50,32,40,40,66,32,40,40,95,51,51,32,95,53,57,41,32,95,
-54,52,41,41,32,40,40,66,32,85,41,32,40,40,66,32,40,66,32,40,
-66,32,40,66,32,40,66,32,90,41,41,41,41,41,32,40,40,66,32,40,
-66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
-40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,95,54,51,41,41,
-41,41,41,41,41,41,41,41,41,41,41,32,40,40,67,39,32,40,67,39,
-32,40,67,39,32,40,67,39,32,67,41,41,41,41,32,95,49,50,50,52,
-41,41,41,41,41,41,32,40,40,65,32,58,49,50,52,51,32,40,40,66,
-32,40,40,95,51,51,32,95,53,57,41,32,95,54,52,41,41,32,40,40,
-66,32,85,41,32,40,40,66,32,40,66,32,40,66,32,90,41,41,41,32,
-40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
-66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
-95,54,51,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,67,
-39,32,40,67,39,32,67,41,41,32,95,49,50,50,52,41,41,41,41,41,
-41,32,40,40,65,32,58,49,50,52,52,32,40,40,66,32,40,40,95,51,
-51,32,95,53,57,41,32,95,54,52,41,41,32,40,40,66,32,85,41,32,
-40,40,66,32,40,66,32,40,66,32,40,66,32,90,41,41,41,41,32,40,
-40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
-32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,95,
-54,51,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,67,39,
-32,40,67,39,32,40,67,39,32,67,41,41,41,32,95,49,50,50,52,41,
-41,41,41,41,41,32,40,40,65,32,58,49,50,52,53,32,40,40,66,32,
-40,40,95,51,51,32,95,53,57,41,32,95,54,52,41,41,32,40,40,66,
-32,85,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
-40,66,32,40,66,32,90,41,41,41,41,41,41,41,32,40,40,66,32,40,
-66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
-40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,95,54,51,41,41,
-41,41,41,41,41,41,41,41,41,41,41,32,40,40,67,39,32,40,67,39,
-32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,
-41,41,41,41,32,95,49,50,50,52,41,41,41,41,41,41,32,40,40,65,
-32,58,49,50,52,54,32,40,40,66,32,40,40,95,51,51,32,95,53,57,
-41,32,95,54,52,41,41,32,40,40,66,32,85,41,32,40,40,66,32,40,
-66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
-90,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
-40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
-32,40,66,32,40,66,32,40,66,32,95,54,51,41,41,41,41,41,41,41,
-41,41,41,41,41,41,32,40,40,67,39,32,40,67,39,32,40,67,39,32,
-40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,41,
-41,41,41,41,32,95,49,50,50,52,41,41,41,41,41,41,32,40,40,65,
-32,58,49,50,52,55,32,40,40,66,32,40,40,95,51,51,32,95,53,57,
-41,32,95,54,52,41,41,32,40,40,66,32,85,41,32,40,40,66,32,40,
-66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
-40,66,32,40,66,32,40,66,32,40,40,67,39,32,66,41,32,66,41,41,
-41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,
-32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
-66,32,40,66,32,40,66,32,90,41,41,41,41,41,41,41,41,41,41,41,
-41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
-32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
-66,32,40,66,32,40,66,32,95,54,51,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,
-40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
-32,40,66,32,40,67,39,32,67,41,41,41,41,41,41,41,41,41,41,41,
-41,41,32,40,40,66,32,40,40,67,39,32,40,67,39,32,40,67,39,32,
-40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,
-40,67,39,32,40,67,39,32,67,39,41,41,41,41,41,41,41,41,41,41,
-32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
-40,66,32,40,66,32,40,66,32,40,66,32,67,39,41,41,41,41,41,41,
-41,41,41,41,32,95,49,50,50,52,41,41,41,32,40,40,66,32,40,66,
-32,67,41,41,32,80,41,41,41,41,41,41,41,41,41,32,40,40,65,32,
-58,49,50,52,56,32,40,40,66,32,40,40,95,51,51,32,95,53,57,41,
-32,95,54,52,41,41,32,40,40,66,32,85,41,32,40,40,66,32,40,66,
-32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
-66,32,40,66,32,40,66,32,40,40,67,39,32,66,41,32,66,41,41,41,
-41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
-40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
-32,40,66,32,40,66,32,40,66,32,90,41,41,41,41,41,41,41,41,41,
-41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
-32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
-66,32,40,66,32,40,66,32,40,66,32,95,54,51,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
-40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
-32,40,66,32,40,66,32,40,67,39,32,67,41,41,41,41,41,41,41,41,
-41,41,41,41,41,32,40,40,66,32,40,40,67,39,32,40,67,39,32,40,
-67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,
-67,39,32,40,67,39,32,40,67,39,32,67,39,41,41,41,41,41,41,41,
-41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
-40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,67,39,41,41,41,
-41,41,41,41,41,41,41,32,95,49,50,50,52,41,41,41,32,40,40,66,
-32,40,66,32,67,41,41,32,40,67,32,80,41,41,41,41,41,41,41,41,
-41,41,32,40,40,65,32,58,49,50,52,57,32,40,40,66,32,40,40,95,
-51,51,32,95,53,57,41,32,95,54,52,41,41,32,40,40,66,32,85,41,
-32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
-40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,40,67,39,32,
-66,41,32,66,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,66,
-32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
-66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
-90,41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,
-40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
-32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
-66,32,95,54,51,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
-40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,67,
-39,32,67,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,66,
-32,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,
-39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,
-39,32,67,39,41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,
-66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
-40,66,32,40,66,32,67,39,41,41,41,41,41,41,41,41,41,41,32,95,
-49,50,50,52,41,41,41,32,40,40,67,39,32,40,67,39,32,67,41,41,
-32,80,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,49,50,53,
-48,32,40,40,66,32,40,40,95,51,51,32,95,53,57,41,32,95,54,52,
-41,41,32,40,40,66,32,85,41,32,40,40,66,32,40,66,32,40,66,32,
-40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
-32,90,41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,
-40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
-32,40,66,32,40,66,32,40,66,32,40,66,32,95,54,51,41,41,41,41,
-41,41,41,41,41,41,41,41,41,32,40,40,67,39,32,40,67,39,32,40,
-67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,
-67,39,32,40,67,39,32,67,41,41,41,41,41,41,41,41,41,32,95,49,
-50,50,52,41,41,41,41,41,41,32,40,40,65,32,58,49,50,53,49,32,
-40,40,66,32,40,40,95,51,51,32,95,53,57,41,32,95,54,52,41,41,
-32,40,40,66,32,85,41,32,40,40,66,32,40,66,32,40,66,32,40,66,
-32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
-66,32,90,41,41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,
-66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
-40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,95,54,51,41,41,
-41,41,41,41,41,41,41,41,41,41,41,32,40,40,67,39,32,40,67,39,
-32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,
-32,40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,41,41,41,41,
-41,41,41,41,32,95,49,50,50,52,41,41,41,41,41,41,32,40,40,65,
-32,58,49,50,53,50,32,40,40,66,32,40,40,95,51,51,32,95,53,57,
-41,32,95,54,52,41,41,32,40,40,66,32,85,41,32,40,40,66,32,40,
-66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
-40,66,32,40,66,32,40,66,32,40,66,32,90,41,41,41,41,41,41,41,
-41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,
-66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
-40,66,32,40,66,32,95,54,51,41,41,41,41,41,41,41,41,41,41,41,
-41,41,32,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,
-40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,
-40,67,39,32,40,67,39,32,67,41,41,41,41,41,41,41,41,41,41,41,
-32,95,49,50,50,52,41,41,41,41,41,41,32,40,40,65,32,58,49,50,
-53,51,32,40,40,66,32,40,66,32,40,40,95,51,51,32,95,53,57,41,
-32,40,95,54,53,32,95,49,50,51,53,41,41,41,41,32,40,40,40,67,
-39,32,66,41,32,40,66,39,32,40,40,66,32,40,95,51,52,32,95,53,
-57,41,41,32,95,49,50,52,54,41,41,41,32,40,40,40,67,39,32,66,
-41,32,40,95,51,51,32,95,53,57,41,41,32,40,40,40,67,39,32,66,
-41,32,40,40,66,32,40,95,51,52,32,95,53,57,41,41,32,95,49,50,
-52,54,41,41,32,40,95,51,53,32,95,53,57,41,41,41,41,41,41,32,
-40,40,65,32,58,49,50,53,52,32,40,40,66,32,40,40,95,51,51,32,
-95,53,57,41,32,95,54,52,41,41,32,40,40,66,32,85,41,32,40,40,
-66,32,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,
-67,39,32,66,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
-40,66,32,40,66,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,
-39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,95,51,52,32,95,
-53,57,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,
-40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
-32,40,66,32,40,66,32,40,66,32,40,66,32,95,54,51,41,41,41,41,
-41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,67,
-41,41,41,32,40,40,40,67,39,32,40,67,39,32,67,41,41,32,95,49,
-50,50,52,41,32,95,49,50,55,51,41,41,41,41,41,41,32,40,40,40,
-67,39,32,66,41,32,40,95,51,51,32,95,53,57,41,41,32,40,40,66,
-32,40,66,32,40,40,95,51,51,32,95,53,57,41,32,95,54,52,41,41,
-41,32,40,40,66,32,40,66,32,85,41,41,32,40,40,66,32,40,66,32,
-40,66,32,40,66,32,90,41,41,41,41,32,40,40,40,67,39,32,66,41,
-32,40,40,66,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,
-32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,
-32,40,67,39,32,40,67,39,32,40,67,39,32,40,95,51,52,32,95,53,
-57,41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,
-40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
-32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,95,54,51,41,
-41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,67,39,32,40,67,
-39,32,40,67,39,32,40,67,39,32,67,41,41,41,41,32,40,40,66,32,
-40,66,32,40,66,32,67,41,41,41,32,95,49,50,50,52,41,41,41,41,
-41,32,40,95,51,53,32,95,53,57,41,41,41,41,41,41,41,41,41,41,
-32,40,40,65,32,58,49,50,53,53,32,40,40,66,32,40,66,32,40,40,
-95,51,51,32,95,53,57,41,32,95,54,52,41,41,41,32,40,40,66,32,
-40,66,32,85,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,
-40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
-32,40,66,32,40,66,32,40,66,32,40,66,32,40,95,50,55,48,32,95,
-54,51,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,
-40,66,32,40,66,32,40,40,67,39,32,40,67,39,32,40,67,39,32,40,
-67,39,32,40,67,39,32,40,67,39,32,66,41,41,41,41,41,41,32,95,
-49,50,50,52,41,41,41,32,95,49,48,49,49,41,41,41,41,41,32,40,
-40,65,32,58,49,50,53,54,32,40,40,66,32,40,66,32,40,40,95,51,
-51,32,95,53,57,41,32,95,54,52,41,41,41,32,40,40,66,32,40,66,
-32,85,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
-32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
-66,32,40,66,32,40,66,32,40,66,32,40,95,50,55,48,32,95,54,51,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,66,
-32,40,66,32,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,
-32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,
-32,66,41,41,41,41,41,41,41,41,41,32,95,49,50,50,52,41,41,41,
-32,95,49,48,49,49,41,41,41,41,41,32,40,40,65,32,58,49,50,53,
-55,32,40,40,40,67,39,32,40,95,51,51,32,95,53,57,41,41,32,40,
-40,95,52,52,32,95,53,57,41,32,40,85,32,40,40,66,32,40,66,32,
-40,66,32,40,40,67,39,32,66,41,32,40,40,66,32,40,95,51,51,32,
-95,53,57,41,41,32,40,95,49,50,56,56,32,95,54,55,51,41,41,41,
-41,41,41,32,40,40,66,32,40,40,83,39,32,40,83,39,32,66,41,41,
-32,40,40,40,67,39,32,40,67,39,32,67,39,41,41,32,40,40,66,32,
-40,66,32,67,41,41,32,80,41,41,32,95,49,50,49,55,41,41,41,32,
-40,40,40,83,39,32,66,41,32,40,66,39,32,40,40,66,32,40,83,39,
-32,40,67,39,32,40,67,39,32,83,41,41,41,41,32,40,40,40,67,39,
-32,40,67,39,32,67,41,41,32,40,40,66,32,40,66,32,40,40,67,39,
-32,67,39,41,32,40,40,66,32,67,39,41,32,83,39,41,41,41,41,32,
-40,40,40,67,39,32,40,67,39,32,67,41,41,32,40,40,66,32,40,66,
-32,40,40,67,39,32,67,39,41,32,83,39,41,41,41,32,40,40,66,32,
-40,66,32,40,67,32,66,41,41,41,32,40,40,66,32,40,66,32,40,40,
-83,39,32,66,41,32,80,41,41,41,32,40,40,40,67,39,32,40,67,39,
-32,40,83,39,32,40,67,39,32,40,67,39,32,67,41,41,41,41,41,32,
-40,40,40,67,39,32,40,67,39,32,40,83,39,32,40,67,39,32,40,67,
-39,32,67,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,
-83,39,32,40,67,39,32,40,67,39,32,67,41,41,41,41,41,32,40,40,
-40,67,39,32,40,67,39,32,40,83,39,32,40,67,39,32,40,67,39,32,
-67,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,83,39,
-32,40,67,39,32,40,67,39,32,67,41,41,41,41,41,32,40,40,40,67,
-39,32,40,67,39,32,40,83,39,32,40,67,39,32,40,67,39,32,67,41,
-41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,83,39,32,40,
-67,39,32,40,67,39,32,67,41,41,41,41,41,32,40,40,40,67,39,32,
-40,67,39,32,40,83,39,32,40,67,39,32,40,67,39,32,67,41,41,41,
-41,41,32,40,40,40,67,39,32,40,67,39,32,40,83,39,32,40,67,39,
-32,40,67,39,32,67,41,41,41,41,41,32,40,40,40,67,39,32,40,67,
-39,32,40,83,39,32,40,67,39,32,40,67,39,32,67,41,41,41,41,41,
-32,40,40,40,67,39,32,40,67,39,32,40,83,39,32,40,67,39,32,40,
-67,39,32,67,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,
-40,83,39,32,40,67,39,32,40,67,39,32,67,41,41,41,41,41,32,40,
-40,40,67,39,32,40,67,39,32,40,83,39,32,40,67,39,32,40,67,39,
-32,67,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,83,
-39,32,40,67,39,32,40,67,39,32,67,41,41,41,41,41,32,40,40,40,
-67,39,32,40,67,39,32,40,83,39,32,40,67,39,32,40,67,39,32,67,
-41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,83,39,32,
-40,67,39,32,40,67,39,32,67,41,41,41,41,41,32,40,40,40,67,39,
-32,40,67,39,32,40,83,39,32,40,67,39,32,67,41,41,41,41,32,40,
-40,66,32,40,66,32,40,66,32,40,66,32,40,67,32,67,39,41,41,41,
-41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,66,
-32,40,66,32,40,67,39,32,67,41,41,41,32,40,40,66,32,40,66,32,
-40,66,32,40,67,32,67,39,41,41,41,41,32,40,40,66,32,40,66,32,
-40,66,32,40,66,32,40,95,50,55,48,32,40,95,51,53,32,95,53,57,
-41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,40,67,39,32,66,
-41,32,80,41,41,41,32,40,40,66,32,67,41,32,40,40,40,67,39,32,
-40,67,39,32,95,49,50,48,56,41,41,32,40,67,32,95,49,48,48,50,
-41,41,32,95,52,56,48,41,41,41,41,41,41,41,32,40,90,32,75,41,
-41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,
-75,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,
-40,90,32,75,41,41,41,32,75,41,41,32,75,41,41,32,40,90,32,75,
-41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,
-40,90,32,40,90,32,75,41,41,41,41,32,40,90,32,75,41,41,41,32,
-40,90,32,75,41,41,41,32,75,41,41,32,75,41,41,32,40,90,32,75,
-41,41,41,41,41,41,32,40,90,32,75,41,41,41,41,32,40,90,32,75,
-41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,85,
-41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,67,
-39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,66,32,40,95,50,
-55,48,32,40,95,51,53,32,95,53,57,41,41,41,41,41,41,41,41,32,
-40,40,66,32,40,66,32,40,66,32,40,40,67,39,32,66,41,32,40,66,
-39,32,80,41,41,41,41,41,32,40,40,66,32,40,66,32,40,67,39,32,
-40,67,39,32,40,95,49,50,48,56,32,95,49,48,48,49,41,41,41,41,
-41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,
-79,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,
-40,40,66,32,40,66,32,40,83,39,32,67,41,41,41,32,40,40,40,67,
-39,32,66,41,32,40,66,39,32,80,41,41,32,40,40,67,39,32,95,52,
-49,50,41,32,95,57,48,50,41,41,41,41,32,40,40,67,39,32,95,52,
-49,50,41,32,95,57,48,50,41,41,41,32,75,41,41,41,41,41,32,40,
-40,67,32,40,95,52,51,49,32,40,40,40,67,39,32,66,41,32,40,40,
-66,32,80,41,32,95,56,55,56,41,41,32,95,56,51,56,41,41,41,32,
-40,40,40,95,49,57,52,32,95,50,48,55,41,32,40,40,95,53,49,53,
-32,95,50,57,49,41,32,40,95,51,55,51,32,35,45,49,41,41,41,32,
-40,40,95,53,49,53,32,95,50,57,49,41,32,40,95,51,55,51,32,35,
-45,50,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,
-40,95,51,51,32,95,53,57,41,32,40,95,54,53,32,95,49,50,51,54,
-41,41,41,32,40,40,66,32,40,66,32,40,95,50,55,48,32,95,49,50,
-52,55,41,41,41,32,40,67,32,40,95,52,49,52,32,40,40,95,50,55,
-48,32,95,50,55,55,41,32,40,95,49,48,49,50,32,95,49,50,50,49,
-41,41,41,41,41,41,41,41,32,40,40,65,32,58,49,50,53,56,32,40,
-40,66,32,40,40,67,39,32,40,95,51,51,32,95,53,57,41,41,32,40,
-95,49,50,56,56,32,95,54,55,51,41,41,41,32,40,40,66,32,40,66,
-32,40,40,95,51,51,32,95,53,57,41,32,95,54,52,41,41,41,32,40,
-40,66,32,40,66,32,85,41,41,32,40,40,66,32,40,66,32,40,66,32,
-40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
-32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,95,50,55,
-48,32,95,54,51,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,32,40,40,66,32,40,66,32,40,40,67,39,32,40,67,39,32,40,67,
-39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,
-39,32,40,67,39,32,40,67,39,32,40,67,39,32,66,41,41,41,41,41,
-41,41,41,41,41,41,32,95,49,50,50,52,41,41,41,32,40,40,66,32,
-40,66,32,95,52,56,49,41,41,32,80,41,41,41,41,41,41,41,32,40,
-40,65,32,58,49,50,53,57,32,40,75,32,40,40,66,32,40,66,32,40,
-40,95,51,51,32,95,53,57,41,32,40,95,54,53,32,95,49,50,51,57,
-41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,66,39,32,40,40,
-66,32,40,95,51,52,32,95,53,57,41,41,32,40,40,95,52,53,32,95,
-53,57,41,32,95,49,50,54,49,41,41,41,41,32,40,40,40,67,39,32,
-66,41,32,40,95,51,51,32,95,53,57,41,41,32,40,40,40,67,39,32,
-66,41,32,40,40,66,32,40,95,51,52,32,95,53,57,41,41,32,95,49,
-50,53,48,41,41,32,40,95,51,53,32,95,53,57,41,41,41,41,41,41,
-41,32,40,40,65,32,58,49,50,54,48,32,40,75,32,40,40,66,32,40,
-66,32,40,66,32,40,40,95,51,51,32,95,53,57,41,32,40,95,54,53,
-32,95,49,50,51,57,41,41,41,41,41,32,40,40,40,67,39,32,40,67,
-39,32,66,41,41,32,40,40,66,32,66,39,41,32,40,40,66,32,40,66,
-32,40,95,51,52,32,95,53,57,41,41,41,32,40,40,66,32,40,66,32,
-95,49,50,54,49,41,41,32,80,41,41,41,41,32,40,40,40,67,39,32,
-66,41,32,40,95,51,51,32,95,53,57,41,41,32,40,40,40,67,39,32,
-66,41,32,40,40,66,32,40,95,51,52,32,95,53,57,41,41,32,95,49,
-50,53,48,41,41,32,40,95,51,53,32,95,53,57,41,41,41,41,41,41,
-41,32,40,40,65,32,58,49,50,54,49,32,40,85,32,40,40,66,32,40,
-40,67,39,32,40,95,51,51,32,95,53,57,41,41,32,40,40,40,67,39,
-32,40,95,51,51,32,95,53,57,41,41,32,40,95,49,50,56,56,32,95,
-54,55,51,41,41,32,95,49,50,56,57,41,41,41,32,40,40,40,83,39,
-32,83,41,32,40,40,66,32,40,40,83,39,32,95,52,48,57,41,32,40,
-40,66,32,95,49,52,48,57,41,32,40,40,67,32,79,41,32,75,41,41,
-41,41,32,40,95,49,50,54,52,32,95,54,55,51,41,41,41,32,40,40,
-40,83,39,32,83,41,32,40,40,40,67,39,32,40,67,39,32,83,41,41,
-32,40,40,40,67,39,32,40,67,39,32,83,41,41,32,40,40,40,67,39,
-32,40,67,39,32,83,41,41,32,40,40,40,67,39,32,40,67,39,32,83,
-41,41,32,40,40,40,67,39,32,40,67,39,32,83,41,41,32,40,40,40,
-67,39,32,40,67,39,32,83,41,41,32,40,40,40,67,39,32,40,67,39,
-32,83,41,41,32,40,40,40,67,39,32,40,67,39,32,83,41,41,32,40,
-40,40,67,39,32,40,67,39,32,83,41,41,32,40,40,40,67,39,32,40,
-67,39,32,83,41,41,32,40,40,40,67,39,32,40,67,39,32,83,41,41,
-32,40,40,40,67,39,32,40,67,39,32,83,41,41,32,40,40,40,67,39,
-32,40,67,39,32,83,41,41,32,40,40,40,67,39,32,40,67,39,32,83,
-41,41,32,40,40,40,67,39,32,40,67,39,32,83,41,41,32,40,40,40,
-67,39,32,40,67,39,32,83,41,41,32,40,40,66,32,40,67,32,40,40,
-67,32,83,39,41,32,75,41,41,41,32,40,40,40,67,39,32,40,83,39,
-32,40,67,39,32,67,41,41,41,32,40,40,40,67,39,32,40,83,39,32,
-40,67,39,32,67,41,41,41,32,40,40,40,67,39,32,40,83,39,32,40,
-67,39,32,67,41,41,41,32,40,40,40,67,39,32,40,83,39,32,40,67,
-39,32,67,41,41,41,32,40,40,40,67,39,32,40,83,39,32,40,67,39,
-32,67,41,41,41,32,40,40,40,67,39,32,40,83,39,32,40,67,39,32,
-67,41,41,41,32,40,40,40,67,39,32,40,83,39,32,40,67,39,32,67,
-41,41,41,32,40,40,40,67,39,32,40,83,39,32,40,67,39,32,67,41,
-41,41,32,40,40,40,67,39,32,40,83,39,32,40,67,39,32,67,41,41,
-41,32,40,40,40,67,39,32,40,83,39,32,40,67,39,32,67,41,41,41,
-32,40,40,40,67,39,32,40,83,39,32,40,67,39,32,67,41,41,41,32,
-40,40,40,67,39,32,40,83,39,32,40,67,39,32,67,41,41,41,32,40,
-40,40,67,39,32,40,83,39,32,40,67,39,32,67,41,41,41,32,40,40,
-40,67,39,32,40,83,39,32,40,67,39,32,67,41,41,41,32,40,40,40,
-67,39,32,40,83,39,32,40,67,39,32,67,41,41,41,32,40,40,40,67,
-39,32,40,83,39,32,67,41,41,32,40,40,66,32,40,40,83,39,32,40,
-67,39,32,67,39,41,41,32,40,40,66,32,85,41,32,75,41,41,41,32,
-40,40,40,67,39,32,40,83,39,32,40,67,39,32,40,67,39,32,67,41,
-41,41,41,32,40,40,40,67,39,32,40,83,39,32,40,67,39,32,40,67,
-39,32,67,41,41,41,41,32,40,40,40,67,39,32,40,83,39,32,40,67,
-39,32,40,67,39,32,67,41,41,41,41,32,40,40,40,67,39,32,40,83,
-39,32,40,67,39,32,40,67,39,32,67,41,41,41,41,32,40,40,40,67,
-39,32,40,83,39,32,40,67,39,32,40,67,39,32,67,41,41,41,41,32,
-40,40,40,67,39,32,40,83,39,32,40,67,39,32,40,67,39,32,67,41,
-41,41,41,32,40,40,40,67,39,32,40,83,39,32,40,67,39,32,40,67,
-39,32,67,41,41,41,41,32,40,40,40,67,39,32,40,83,39,32,40,67,
-39,32,40,67,39,32,67,41,41,41,41,32,40,40,40,67,39,32,40,83,
-39,32,40,67,39,32,40,67,39,32,67,41,41,41,41,32,40,40,40,67,
-39,32,40,83,39,32,40,67,39,32,40,67,39,32,67,41,41,41,41,32,
-40,40,40,67,39,32,40,83,39,32,40,67,39,32,40,67,39,32,67,41,
-41,41,41,32,40,40,40,67,39,32,40,83,39,32,40,67,39,32,40,67,
-39,32,67,41,41,41,41,32,40,40,40,67,39,32,40,83,39,32,40,67,
-39,32,40,67,39,32,67,41,41,41,41,32,40,40,40,67,39,32,40,83,
-39,32,40,67,39,32,40,67,39,32,67,41,41,41,41,32,40,40,40,67,
-39,32,40,83,39,32,40,67,39,32,40,67,39,32,67,41,41,41,41,32,
-40,40,40,67,39,32,40,83,39,32,40,67,39,32,40,67,39,32,67,41,
-41,41,41,32,40,40,40,67,39,32,40,83,39,32,40,67,39,32,67,41,
-41,41,32,40,40,66,32,40,66,32,40,66,32,40,67,32,67,39,41,41,
-41,41,32,40,40,66,32,40,40,67,39,32,66,41,32,40,66,39,32,40,
-40,66,32,67,41,32,40,67,32,40,40,67,32,40,95,50,49,49,32,95,
-57,55,52,41,41,32,40,95,57,55,57,32,95,49,49,57,54,41,41,41,
-41,41,41,41,32,40,40,66,32,67,41,32,95,49,50,54,51,41,41,41,
-41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,75,41,
-41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,40,90,
-32,75,41,41,41,32,75,41,41,32,75,41,41,32,40,90,32,75,41,41,
-41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,40,90,
-32,40,90,32,75,41,41,41,41,32,40,90,32,75,41,41,41,32,40,90,
-32,75,41,41,41,32,75,41,41,32,75,41,41,32,40,90,32,75,41,41,
-41,41,32,40,90,32,75,41,41,41,32,75,41,41,32,40,90,32,75,41,
-41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,75,
-41,41,32,75,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,
-41,41,32,40,90,32,75,41,41,41,32,40,90,32,40,90,32,75,41,41,
-41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,75,
-41,41,32,75,41,41,32,40,90,32,75,41,41,41,41,32,40,90,32,75,
-41,41,41,32,75,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,
-41,41,41,32,40,90,32,75,41,41,41,32,75,41,41,32,75,41,41,32,
-40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,
-41,41,41,32,40,90,32,40,90,32,75,41,41,41,41,32,40,90,32,75,
-41,41,41,32,40,90,32,75,41,41,41,32,75,41,41,32,75,41,41,32,
-40,90,32,75,41,41,41,32,40,95,49,50,54,50,32,95,54,55,51,41,
-41,41,41,41,41,32,40,40,65,32,58,49,50,54,50,32,40,40,40,67,
-39,32,40,67,39,32,40,67,39,32,40,95,51,51,32,95,53,57,41,41,
-41,41,32,40,40,40,67,39,32,66,41,32,95,49,52,49,52,41,32,95,
-56,50,51,41,41,32,95,49,50,53,55,41,41,32,40,40,65,32,58,49,
-50,54,51,32,40,75,32,40,40,66,32,40,66,32,40,40,95,51,51,32,
-95,53,57,41,32,40,95,54,53,32,95,49,50,51,56,41,41,41,41,32,
-40,40,66,32,40,66,32,40,66,32,95,49,50,52,57,41,41,41,32,95,
-49,52,51,56,41,41,41,41,32,40,40,65,32,58,49,50,54,52,32,40,
-75,32,40,40,66,32,40,66,32,40,40,95,51,51,32,95,53,57,41,32,
-40,95,54,53,32,95,49,50,51,55,41,41,41,41,32,40,40,66,32,40,
-66,32,40,66,32,95,49,50,52,56,41,41,41,32,40,40,66,32,40,66,
-32,95,52,56,49,41,41,32,80,41,41,41,41,41,32,40,40,65,32,58,
-49,50,54,53,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,
-67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,41,41,
-41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,
-39,32,40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,41,41,41,
-41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,
-32,40,67,39,32,66,41,41,41,41,41,32,40,40,66,32,40,66,32,40,
-66,32,40,66,32,40,66,32,40,67,39,32,67,41,41,41,41,41,41,32,
-40,40,66,32,40,66,32,40,66,32,40,66,32,40,67,39,32,67,41,41,
-41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,
-39,32,40,67,39,32,67,41,41,41,41,41,32,40,40,40,67,39,32,40,
-67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,41,41,
-41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,
-66,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,
-40,40,67,32,95,49,50,50,52,41,32,35,49,41,41,32,40,40,67,32,
-40,95,52,49,52,32,40,95,50,55,55,32,95,49,52,52,54,41,41,41,
-32,95,49,50,55,52,41,41,41,32,40,40,67,32,40,95,52,49,52,32,
-40,95,50,55,55,32,95,49,52,52,54,41,41,41,32,95,49,50,55,53,
-41,41,41,32,95,51,48,52,41,41,32,95,49,50,50,53,41,41,41,41,
-32,40,40,40,67,39,32,67,41,32,40,40,67,32,80,41,32,95,52,56,
-48,41,41,32,95,52,56,48,41,41,41,32,95,52,56,48,41,41,32,95,
-52,56,48,41,41,32,40,40,65,32,58,49,50,54,54,32,95,56,55,57,
-41,32,40,40,65,32,58,49,50,54,55,32,40,40,95,49,50,56,50,32,
-95,56,55,57,41,32,95,56,55,57,41,41,32,40,40,65,32,58,49,50,
-54,56,32,40,40,95,50,55,48,32,40,95,49,50,56,50,32,95,56,55,
-57,41,41,32,40,40,95,49,50,56,50,32,95,56,55,57,41,32,95,56,
-55,57,41,41,41,32,40,40,65,32,58,49,50,54,57,32,40,40,95,50,
-55,48,32,40,95,49,50,56,50,32,95,56,56,48,41,41,32,40,40,95,
-49,50,56,50,32,95,56,55,57,41,32,95,56,55,57,41,41,41,32,40,
-40,65,32,58,49,50,55,48,32,40,40,95,49,50,56,50,32,95,56,55,
-57,41,32,40,40,95,49,50,56,50,32,95,56,55,57,41,32,95,56,56,
-48,41,41,41,32,40,40,65,32,58,49,50,55,49,32,40,40,40,95,57,
-55,49,32,34,98,117,105,108,116,105,110,34,41,32,35,48,41,32,35,48,
-41,41,32,40,40,65,32,58,49,50,55,50,32,40,95,57,56,48,32,95,
-49,50,55,49,41,41,32,40,40,65,32,58,49,50,55,51,32,40,40,40,
-66,32,95,49,52,52,51,41,32,40,40,40,83,39,32,79,41,32,40,40,
-66,32,40,80,32,40,95,49,50,55,50,32,34,80,114,105,109,105,116,105,
-118,101,115,46,84,121,112,101,34,41,41,41,32,40,40,40,67,39,32,79,
-41,32,40,40,80,32,34,80,114,105,109,105,116,105,118,101,115,46,84,121,
-112,101,34,41,32,95,49,50,54,54,41,41,32,75,41,41,41,32,40,40,
-40,83,39,32,79,41,32,40,40,66,32,40,80,32,40,95,49,50,55,50,
-32,34,84,121,112,101,34,41,41,41,32,40,40,40,67,39,32,79,41,32,
-40,40,80,32,34,80,114,105,109,105,116,105,118,101,115,46,84,121,112,101,
-34,41,32,95,49,50,54,54,41,41,32,75,41,41,41,32,40,40,40,83,
-39,32,79,41,32,40,40,66,32,40,80,32,40,95,49,50,55,50,32,34,
-67,111,110,115,116,114,97,105,110,116,34,41,41,41,32,40,40,40,67,39,
-32,79,41,32,40,40,80,32,34,80,114,105,109,105,116,105,118,101,115,46,
-67,111,110,115,116,114,97,105,110,116,34,41,32,95,49,50,54,54,41,41,
-32,75,41,41,41,32,40,40,40,83,39,32,79,41,32,40,40,66,32,40,
-80,32,40,95,49,50,55,50,32,34,80,114,105,109,105,116,105,118,101,115,
-46,67,111,110,115,116,114,97,105,110,116,34,41,41,41,32,40,40,40,67,
-39,32,79,41,32,40,40,80,32,34,80,114,105,109,105,116,105,118,101,115,
-46,67,111,110,115,116,114,97,105,110,116,34,41,32,95,49,50,54,54,41,
-41,32,75,41,41,41,32,40,40,40,83,39,32,79,41,32,40,40,66,32,
-40,80,32,40,95,49,50,55,50,32,34,80,114,105,109,105,116,105,118,101,
-115,46,83,121,109,98,111,108,34,41,41,41,32,40,40,40,67,39,32,79,
-41,32,40,40,80,32,34,80,114,105,109,105,116,105,118,101,115,46,83,121,
-109,98,111,108,34,41,32,95,49,50,54,54,41,41,32,75,41,41,41,32,
-40,40,40,83,39,32,79,41,32,40,40,66,32,40,80,32,40,95,49,50,
-55,50,32,34,83,121,109,98,111,108,34,41,41,41,32,40,40,40,67,39,
-32,79,41,32,40,40,80,32,34,80,114,105,109,105,116,105,118,101,115,46,
-83,121,109,98,111,108,34,41,32,95,49,50,54,54,41,41,32,75,41,41,
-41,32,40,40,40,83,39,32,79,41,32,40,40,66,32,40,80,32,40,95,
-49,50,55,50,32,95,49,49,57,56,41,41,41,32,40,40,40,67,39,32,
-79,41,32,40,40,80,32,95,49,49,57,56,41,32,95,49,50,54,56,41,
-41,32,75,41,41,41,32,40,40,40,67,39,32,79,41,32,40,40,66,32,
-40,80,32,40,95,49,50,55,50,32,34,45,62,34,41,41,41,32,40,40,
-40,67,39,32,79,41,32,40,40,80,32,95,49,49,57,56,41,32,95,49,
-50,54,56,41,41,32,75,41,41,41,32,75,41,41,41,41,41,41,41,41,
-41,32,40,40,66,32,95,49,50,48,53,41,32,40,40,66,32,95,56,50,
-51,41,32,95,49,50,55,50,41,41,41,41,32,40,40,65,32,58,49,50,
-55,52,32,40,40,40,83,32,40,40,40,67,39,32,40,67,39,32,40,40,
-83,39,32,95,52,56,50,41,32,40,40,40,83,39,32,79,41,32,40,40,
-66,32,40,80,32,40,95,49,50,55,50,32,34,45,62,34,41,41,41,32,
-40,40,40,67,39,32,79,41,32,40,40,80,32,95,49,49,57,56,41,32,
-95,49,50,54,56,41,41,32,75,41,41,41,32,40,40,40,83,39,32,79,
-41,32,40,40,66,32,40,80,32,40,95,49,50,55,50,32,34,61,62,34,
-41,41,41,32,40,40,40,67,39,32,79,41,32,40,40,80,32,95,49,49,
-57,55,41,32,95,49,50,54,57,41,41,32,75,41,41,41,32,40,40,40,
-83,39,32,79,41,32,40,40,66,32,40,80,32,40,95,49,50,55,50,32,
-40,40,79,32,35,49,50,54,41,32,75,41,41,41,41,32,40,40,40,67,
-39,32,79,41,32,40,40,80,32,95,49,49,57,54,41,32,95,49,50,55,
-48,41,41,32,75,41,41,41,32,40,40,40,67,39,32,79,41,32,40,40,
-66,32,40,80,32,40,95,49,50,55,50,32,40,40,95,52,56,50,32,95,
-49,49,57,48,41,32,34,91,93,34,41,41,41,41,32,40,40,40,67,39,
-32,79,41,32,40,40,80,32,40,40,95,52,56,50,32,95,49,49,57,48,
-41,32,34,91,93,34,41,41,32,95,49,50,54,55,41,41,32,75,41,41,
-41,32,75,41,41,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,
-32,40,67,39,32,95,52,49,50,41,41,41,32,40,40,40,67,39,32,40,
-67,39,32,40,67,39,32,40,83,39,32,40,83,32,80,41,41,41,41,41,
-32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,
-67,39,32,79,41,41,41,41,41,32,40,40,66,32,40,66,32,40,40,67,
-39,32,66,41,32,40,40,66,32,40,67,39,32,95,50,55,48,41,41,32,
-40,40,67,32,66,41,32,95,57,56,50,41,41,41,41,41,32,40,40,40,
-67,39,32,66,41,32,40,66,39,32,40,40,66,32,95,50,55,48,41,32,
-40,40,66,32,95,56,52,48,41,32,40,40,40,67,39,32,79,41,32,40,
-40,67,32,95,56,55,54,41,32,95,49,50,54,54,41,41,32,75,41,41,
-41,41,41,32,40,40,40,83,39,32,66,41,32,40,95,52,49,52,32,95,
-49,50,56,50,41,41,32,40,67,32,95,52,54,53,41,41,41,41,41,32,
-75,41,41,32,40,95,56,56,49,32,95,49,50,55,49,41,41,41,32,40,
-40,40,95,49,57,53,32,95,50,48,55,41,32,40,40,95,53,49,53,32,
-95,50,57,49,41,32,40,95,51,55,51,32,35,50,41,41,41,32,40,40,
-95,53,49,53,32,95,50,57,49,41,32,40,95,51,55,51,32,35,49,48,
-41,41,41,41,41,32,40,40,66,32,95,49,50,48,53,41,32,40,40,66,
-32,95,56,50,51,41,32,95,49,50,55,50,41,41,41,41,32,95,56,50,
-51,41,32,40,95,57,55,57,32,40,40,79,32,35,49,48,55,41,32,75,
-41,41,41,41,32,40,40,65,32,58,49,50,55,53,32,40,40,95,52,49,
-50,32,40,40,83,32,40,40,40,67,39,32,83,41,32,40,40,40,83,39,
-32,40,67,39,32,40,67,39,32,40,83,32,80,41,41,41,41,32,40,40,
-40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,79,41,41,41,
-41,32,40,40,40,67,39,32,66,41,32,40,66,39,32,40,40,66,32,40,
-83,39,32,95,50,55,48,41,41,32,40,40,66,32,40,66,32,95,49,50,
-48,53,41,41,32,40,40,66,32,40,66,32,40,95,50,55,48,32,95,56,
-51,57,41,41,41,32,40,40,40,67,39,32,40,83,39,32,95,56,52,51,
-41,41,32,40,40,40,67,39,32,40,67,39,32,79,41,41,32,40,67,32,
-80,41,41,32,75,41,41,32,73,41,41,41,41,41,41,32,40,40,40,67,
-39,32,66,41,32,40,66,39,32,40,40,66,32,95,50,55,48,41,32,95,
-56,52,48,41,41,41,32,40,40,40,83,39,32,40,67,39,32,40,95,52,
-49,52,32,95,49,50,56,48,41,41,41,32,40,67,32,95,49,50,55,57,
-41,41,32,73,41,41,41,41,32,75,41,41,32,40,95,56,56,49,32,95,
-49,50,55,49,41,41,41,32,40,95,52,49,50,32,95,49,50,55,55,41,
-41,41,32,40,40,66,32,40,95,52,49,49,32,40,40,40,67,39,32,79,
-41,32,40,40,40,67,39,32,95,56,55,54,41,32,40,40,66,32,95,57,
-55,57,41,32,40,40,66,32,40,95,52,56,50,32,40,40,79,32,35,57,
-55,41,32,75,41,41,41,32,40,95,49,55,49,52,32,95,50,57,55,41,
-41,41,41,32,95,56,55,57,41,41,32,75,41,41,41,32,40,40,95,49,
-57,53,32,95,50,48,55,41,32,40,40,95,53,49,53,32,95,50,57,49,
-41,32,40,95,51,55,51,32,35,49,41,41,41,41,41,41,32,40,40,40,
-95,49,57,53,32,95,50,48,55,41,32,40,40,95,53,49,53,32,95,50,
-57,49,41,32,40,95,51,55,51,32,35,50,41,41,41,32,40,40,95,53,
-49,53,32,95,50,57,49,41,32,40,95,51,55,51,32,35,49,48,41,41,
-41,41,41,32,40,40,65,32,58,49,50,55,54,32,95,56,50,51,41,32,
-40,40,65,32,58,49,50,55,55,32,40,85,32,40,90,32,95,56,50,51,
-41,41,41,32,40,40,65,32,58,49,50,55,56,32,95,56,50,52,41,32,
-40,40,65,32,58,49,50,55,57,32,40,40,66,32,40,95,52,49,54,32,
-95,49,50,55,56,41,41,32,95,49,50,55,54,41,41,32,40,40,65,32,
-58,49,50,56,48,32,40,40,66,32,95,49,50,55,56,41,32,40,95,49,
-50,55,56,32,40,40,95,49,51,57,53,32,95,49,50,55,49,41,32,34,
-80,114,105,109,105,116,105,118,101,115,46,45,62,34,41,41,41,41,32,40,
-40,65,32,58,49,50,56,49,32,40,40,66,32,95,49,50,55,56,41,32,
-40,95,49,50,55,56,32,40,40,95,49,51,57,53,32,95,49,50,55,49,
-41,32,34,80,114,105,109,105,116,105,118,101,115,46,61,62,34,41,41,41,
-41,32,40,40,65,32,58,49,50,56,50,32,95,49,50,56,48,41,32,40,
-40,65,32,58,49,50,56,51,32,40,40,67,32,40,40,67,32,40,40,67,
-32,40,40,67,32,40,40,67,32,40,40,67,32,40,40,67,32,40,40,67,
-32,40,40,67,32,40,40,67,32,40,40,67,32,40,40,67,32,40,40,67,
-32,40,40,67,32,40,40,67,32,40,40,67,32,40,40,80,32,40,75,32,
-95,52,57,56,41,41,32,40,40,40,67,39,32,67,41,32,40,40,40,67,
-39,32,67,41,32,40,40,40,67,39,32,67,41,32,40,40,40,67,39,32,
-67,41,32,40,40,40,67,39,32,67,41,32,40,40,40,67,39,32,67,41,
-32,40,40,40,67,39,32,67,41,32,40,40,40,67,39,32,67,41,32,40,
-40,40,67,39,32,67,41,32,40,40,40,67,39,32,67,41,32,40,40,40,
-67,39,32,67,41,32,40,40,40,67,39,32,67,41,32,40,40,40,67,39,
-32,67,41,32,40,40,40,67,39,32,67,41,32,40,40,40,67,39,32,67,
-41,32,40,40,67,32,40,40,40,67,39,32,67,39,41,32,40,85,32,40,
-75,32,95,52,57,56,41,41,41,32,40,40,40,67,39,32,40,67,39,32,
-67,41,41,32,40,40,40,67,39,32,40,67,39,32,67,41,41,32,40,40,
-40,67,39,32,40,67,39,32,67,41,41,32,40,40,40,67,39,32,40,67,
-39,32,67,41,41,32,40,40,40,67,39,32,40,67,39,32,67,41,41,32,
-40,40,40,67,39,32,40,67,39,32,67,41,41,32,40,40,40,67,39,32,
-40,67,39,32,67,41,41,32,40,40,40,67,39,32,40,67,39,32,67,41,
-41,32,40,40,40,67,39,32,40,67,39,32,67,41,41,32,40,40,40,67,
-39,32,40,67,39,32,67,41,41,32,40,40,40,67,39,32,40,67,39,32,
-67,41,41,32,40,40,40,67,39,32,40,67,39,32,67,41,41,32,40,40,
-40,67,39,32,40,67,39,32,67,41,41,32,40,40,40,67,39,32,40,67,
-39,32,67,41,41,32,40,40,40,67,39,32,40,67,39,32,67,41,41,32,
-40,40,40,67,39,32,40,67,39,32,67,41,41,32,40,40,40,67,39,32,
-67,41,32,40,40,66,32,40,67,32,67,39,41,41,32,40,40,66,32,40,
-66,32,40,67,32,40,40,67,32,40,40,40,83,39,32,95,49,50,49,41,
-32,40,95,57,56,54,32,34,45,62,34,41,41,32,40,95,57,56,54,32,
-34,80,114,105,109,105,116,105,118,101,115,46,45,62,34,41,41,41,32,95,
-52,57,56,41,41,41,41,32,40,40,66,32,40,66,32,95,52,57,57,41,
-41,32,40,67,32,80,41,41,41,41,41,32,40,75,32,40,75,32,95,52,
-57,56,41,41,41,41,32,40,75,32,40,75,32,95,52,57,56,41,41,41,
-41,32,40,75,32,95,52,57,56,41,41,41,32,40,75,32,40,75,32,95,
-52,57,56,41,41,41,41,32,40,75,32,40,75,32,95,52,57,56,41,41,
-41,41,32,40,75,32,40,75,32,95,52,57,56,41,41,41,41,32,40,75,
-32,95,52,57,56,41,41,41,32,40,75,32,95,52,57,56,41,41,41,32,
-40,75,32,40,75,32,95,52,57,56,41,41,41,41,32,40,75,32,40,75,
-32,95,52,57,56,41,41,41,41,32,40,75,32,40,75,32,95,52,57,56,
-41,41,41,41,32,40,75,32,40,75,32,40,75,32,95,52,57,56,41,41,
-41,41,41,32,40,75,32,40,75,32,95,52,57,56,41,41,41,41,32,40,
-75,32,40,75,32,95,52,57,56,41,41,41,41,32,40,75,32,95,52,57,
-56,41,41,41,32,40,75,32,95,52,57,56,41,41,41,32,40,75,32,40,
-75,32,95,52,57,56,41,41,41,41,41,32,40,75,32,40,75,32,95,52,
-57,56,41,41,41,41,32,40,75,32,95,52,57,56,41,41,41,32,40,75,
-32,40,75,32,95,52,57,56,41,41,41,41,32,40,75,32,40,75,32,95,
-52,57,56,41,41,41,41,32,40,75,32,40,75,32,95,52,57,56,41,41,
-41,41,32,40,75,32,95,52,57,56,41,41,41,32,40,75,32,95,52,57,
-56,41,41,41,32,40,75,32,40,75,32,95,52,57,56,41,41,41,41,32,
-40,75,32,40,75,32,95,52,57,56,41,41,41,41,32,40,75,32,40,75,
-32,95,52,57,56,41,41,41,41,32,40,75,32,40,75,32,40,75,32,95,
-52,57,56,41,41,41,41,41,32,40,75,32,40,75,32,95,52,57,56,41,
-41,41,41,32,40,75,32,40,75,32,95,52,57,56,41,41,41,41,32,40,
-75,32,95,52,57,56,41,41,41,32,40,75,32,95,52,57,56,41,41,41,
-32,40,75,32,40,75,32,95,52,57,56,41,41,41,41,41,32,40,75,32,
-40,75,32,95,52,57,56,41,41,41,41,32,40,75,32,95,52,57,56,41,
-41,41,32,40,75,32,40,75,32,95,52,57,56,41,41,41,41,32,40,75,
-32,40,75,32,95,52,57,56,41,41,41,41,32,40,75,32,40,75,32,95,
-52,57,56,41,41,41,41,32,40,75,32,95,52,57,56,41,41,41,32,40,
-75,32,95,52,57,56,41,41,41,32,40,75,32,40,75,32,95,52,57,56,
-41,41,41,41,32,40,75,32,40,75,32,95,52,57,56,41,41,41,41,32,
-40,75,32,40,75,32,95,52,57,56,41,41,41,41,32,40,75,32,40,75,
-32,40,75,32,95,52,57,56,41,41,41,41,41,32,40,75,32,40,75,32,
-95,52,57,56,41,41,41,41,32,40,75,32,40,75,32,95,52,57,56,41,
-41,41,41,32,40,75,32,95,52,57,56,41,41,41,32,40,75,32,95,52,
-57,56,41,41,41,32,40,75,32,40,75,32,95,52,57,56,41,41,41,41,
-32,40,40,65,32,58,49,50,56,52,32,40,40,67,32,40,40,67,32,40,
-40,67,32,40,40,67,32,40,40,67,32,40,40,67,32,40,40,67,32,40,
-40,67,32,40,40,67,32,40,40,67,32,40,40,67,32,40,40,67,32,40,
-40,67,32,40,40,67,32,40,40,67,32,40,40,67,32,40,40,80,32,40,
-75,32,95,52,57,56,41,41,32,40,40,40,67,39,32,67,41,32,40,40,
-40,67,39,32,67,41,32,40,40,40,67,39,32,67,41,32,40,40,40,67,
-39,32,67,41,32,40,40,40,67,39,32,67,41,32,40,40,40,67,39,32,
-67,41,32,40,40,40,67,39,32,67,41,32,40,40,40,67,39,32,67,41,
-32,40,40,40,67,39,32,67,41,32,40,40,40,67,39,32,67,41,32,40,
-40,40,67,39,32,67,41,32,40,40,40,67,39,32,67,41,32,40,40,40,
-67,39,32,67,41,32,40,40,40,67,39,32,67,41,32,40,40,40,67,39,
-32,67,41,32,40,40,67,32,40,40,40,67,39,32,67,39,41,32,40,85,
-32,40,75,32,95,52,57,56,41,41,41,32,40,40,40,67,39,32,40,67,
-39,32,67,41,41,32,40,40,40,67,39,32,40,67,39,32,67,41,41,32,
-40,40,40,67,39,32,40,67,39,32,67,41,41,32,40,40,40,67,39,32,
-40,67,39,32,67,41,41,32,40,40,40,67,39,32,40,67,39,32,67,41,
-41,32,40,40,40,67,39,32,40,67,39,32,67,41,41,32,40,40,40,67,
-39,32,40,67,39,32,67,41,41,32,40,40,40,67,39,32,40,67,39,32,
-67,41,41,32,40,40,40,67,39,32,40,67,39,32,67,41,41,32,40,40,
-40,67,39,32,40,67,39,32,67,41,41,32,40,40,40,67,39,32,40,67,
-39,32,67,41,41,32,40,40,40,67,39,32,40,67,39,32,67,41,41,32,
-40,40,40,67,39,32,40,67,39,32,67,41,41,32,40,40,40,67,39,32,
-40,67,39,32,67,41,41,32,40,40,40,67,39,32,40,67,39,32,67,41,
-41,32,40,40,40,67,39,32,40,67,39,32,67,41,41,32,40,40,40,67,
-39,32,67,41,32,40,40,66,32,40,67,32,67,39,41,41,32,40,40,66,
-32,40,66,32,40,67,32,40,40,67,32,40,40,40,83,39,32,95,49,50,
-49,41,32,40,95,57,56,54,32,34,61,62,34,41,41,32,40,95,57,56,
-54,32,34,80,114,105,109,105,116,105,118,101,115,46,61,62,34,41,41,41,
-32,95,52,57,56,41,41,41,41,32,40,40,66,32,40,66,32,95,52,57,
-57,41,41,32,40,67,32,80,41,41,41,41,41,32,40,75,32,40,75,32,
-95,52,57,56,41,41,41,41,32,40,75,32,40,75,32,95,52,57,56,41,
-41,41,41,32,40,75,32,95,52,57,56,41,41,41,32,40,75,32,40,75,
-32,95,52,57,56,41,41,41,41,32,40,75,32,40,75,32,95,52,57,56,
-41,41,41,41,32,40,75,32,40,75,32,95,52,57,56,41,41,41,41,32,
-40,75,32,95,52,57,56,41,41,41,32,40,75,32,95,52,57,56,41,41,
-41,32,40,75,32,40,75,32,95,52,57,56,41,41,41,41,32,40,75,32,
-40,75,32,95,52,57,56,41,41,41,41,32,40,75,32,40,75,32,95,52,
-57,56,41,41,41,41,32,40,75,32,40,75,32,40,75,32,95,52,57,56,
-41,41,41,41,41,32,40,75,32,40,75,32,95,52,57,56,41,41,41,41,
-32,40,75,32,40,75,32,95,52,57,56,41,41,41,41,32,40,75,32,95,
-52,57,56,41,41,41,32,40,75,32,95,52,57,56,41,41,41,32,40,75,
-32,40,75,32,95,52,57,56,41,41,41,41,41,32,40,75,32,40,75,32,
-95,52,57,56,41,41,41,41,32,40,75,32,95,52,57,56,41,41,41,32,
-40,75,32,40,75,32,95,52,57,56,41,41,41,41,32,40,75,32,40,75,
-32,95,52,57,56,41,41,41,41,32,40,75,32,40,75,32,95,52,57,56,
-41,41,41,41,32,40,75,32,95,52,57,56,41,41,41,32,40,75,32,95,
-52,57,56,41,41,41,32,40,75,32,40,75,32,95,52,57,56,41,41,41,
-41,32,40,75,32,40,75,32,95,52,57,56,41,41,41,41,32,40,75,32,
-40,75,32,95,52,57,56,41,41,41,41,32,40,75,32,40,75,32,40,75,
-32,95,52,57,56,41,41,41,41,41,32,40,75,32,40,75,32,95,52,57,
-56,41,41,41,41,32,40,75,32,40,75,32,95,52,57,56,41,41,41,41,
-32,40,75,32,95,52,57,56,41,41,41,32,40,75,32,95,52,57,56,41,
-41,41,32,40,75,32,40,75,32,95,52,57,56,41,41,41,41,41,32,40,
-75,32,40,75,32,95,52,57,56,41,41,41,41,32,40,75,32,95,52,57,
-56,41,41,41,32,40,75,32,40,75,32,95,52,57,56,41,41,41,41,32,
-40,75,32,40,75,32,95,52,57,56,41,41,41,41,32,40,75,32,40,75,
-32,95,52,57,56,41,41,41,41,32,40,75,32,95,52,57,56,41,41,41,
-32,40,75,32,95,52,57,56,41,41,41,32,40,75,32,40,75,32,95,52,
-57,56,41,41,41,41,32,40,75,32,40,75,32,95,52,57,56,41,41,41,
-41,32,40,75,32,40,75,32,95,52,57,56,41,41,41,41,32,40,75,32,
-40,75,32,40,75,32,95,52,57,56,41,41,41,41,41,32,40,75,32,40,
-75,32,95,52,57,56,41,41,41,41,32,40,75,32,40,75,32,95,52,57,
-56,41,41,41,41,32,40,75,32,95,52,57,56,41,41,41,32,40,75,32,
-95,52,57,56,41,41,41,32,40,75,32,40,75,32,95,52,57,56,41,41,
-41,41,32,40,40,65,32,58,49,50,56,53,32,40,40,66,32,40,66,32,
-40,40,95,51,51,32,95,53,57,41,32,95,54,52,41,41,41,32,40,40,
-66,32,40,66,32,85,41,41,32,40,40,66,32,40,66,32,40,66,32,40,
-66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
-40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,95,54,51,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,
-32,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,
-39,32,40,67,39,32,40,67,39,32,66,41,41,41,41,41,41,41,32,95,
-49,50,50,52,41,41,41,32,95,51,48,54,41,41,41,41,41,32,40,40,
-65,32,58,49,50,56,54,32,40,40,66,32,95,54,53,41,32,40,40,40,
-67,39,32,95,50,55,50,41,32,95,51,48,53,41,32,95,49,50,51,50,
-41,41,41,32,40,40,65,32,58,49,50,56,55,32,40,40,40,83,39,32,
-40,83,39,32,67,41,41,32,40,40,66,32,40,66,32,40,67,32,83,39,
-41,41,41,32,40,40,66,32,40,66,32,67,41,41,32,95,49,51,53,55,
-41,41,41,32,40,40,66,32,40,66,32,67,41,41,32,95,49,50,57,49,
-41,41,41,32,40,40,65,32,58,49,50,56,56,32,40,40,66,32,89,41,
-32,40,40,40,67,39,32,40,67,39,32,89,41,41,32,40,40,40,83,39,
-32,40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,41,41,32,40,
-40,40,67,39,32,40,83,39,32,40,67,39,32,40,83,39,32,40,67,39,
-32,83,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,
-39,32,40,67,39,32,40,67,39,32,83,41,41,41,41,41,32,40,40,40,
-67,39,32,40,67,39,32,40,67,39,32,40,83,39,32,40,83,39,32,67,
-41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,
-40,67,39,32,40,67,39,32,83,41,41,41,41,41,32,40,40,40,67,39,
-32,40,83,39,32,40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,
-41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,
-39,32,40,67,39,32,83,41,41,41,41,41,32,40,40,40,67,39,32,40,
-67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,83,41,41,41,41,
-41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,
-40,67,39,32,83,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,
-32,40,67,39,32,40,67,39,32,40,67,39,32,83,41,41,41,41,41,32,
-40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,
-39,32,83,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,
-67,39,32,40,67,39,32,40,67,39,32,83,41,41,41,41,41,32,40,40,
-40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,
-83,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,
-32,40,67,39,32,40,67,39,32,83,41,41,41,41,41,32,40,40,40,67,
-39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,83,39,32,83,41,
-41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,
-67,39,32,67,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,
-67,39,32,40,67,39,32,40,67,39,32,83,39,41,41,41,41,41,32,40,
-40,40,67,39,32,40,83,39,32,66,41,41,32,40,40,66,32,40,66,32,
-40,83,39,32,67,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,
-83,32,73,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,
-32,40,66,32,40,40,95,51,51,32,95,53,57,41,32,40,95,54,53,32,
-95,49,50,50,57,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,
-40,40,83,39,32,40,67,39,32,40,83,39,32,67,41,41,41,32,40,40,
-66,32,40,66,32,40,40,67,39,32,67,41,32,95,49,48,49,48,41,41,
-41,32,40,40,66,32,40,66,32,40,95,50,55,48,32,40,95,51,53,32,
-95,53,57,41,41,41,41,32,40,67,32,40,95,52,49,54,32,95,49,50,
-55,56,41,41,41,41,41,41,41,32,40,40,40,83,39,32,40,67,39,32,
-40,67,39,32,40,67,39,32,67,41,41,41,41,32,40,40,66,32,40,66,
-32,40,66,32,40,66,32,40,40,67,39,32,67,41,32,40,40,40,67,39,
-32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,
-41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,
-40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,
-40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,
-39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,
-83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,
-32,40,40,40,67,39,32,83,41,32,40,40,67,32,40,40,67,32,83,39,
-41,32,75,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,
-41,32,75,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,
-41,32,40,90,32,75,41,41,41,32,75,41,41,32,75,41,41,32,40,90,
-32,75,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,
-41,32,40,90,32,40,90,32,75,41,41,41,41,32,40,90,32,75,41,41,
-41,32,40,90,32,75,41,41,41,32,75,41,41,32,75,41,41,41,41,41,
-41,32,40,40,66,32,40,40,67,39,32,40,67,39,32,66,41,41,32,40,
-40,66,32,40,66,32,67,41,41,32,40,40,66,32,40,40,83,39,32,40,
-83,39,32,67,39,41,41,32,40,40,66,32,40,40,67,39,32,40,95,50,
-49,50,32,95,50,57,53,41,41,32,95,52,50,56,41,41,32,95,52,50,
-56,41,41,41,32,40,40,40,67,39,32,66,41,32,40,66,39,32,40,66,
-39,32,95,50,55,48,41,41,41,32,40,40,66,32,40,66,32,95,57,48,
-50,41,41,32,40,40,67,39,32,95,52,50,57,41,32,40,95,52,49,50,
-32,95,56,55,56,41,41,41,41,41,41,41,41,32,40,40,40,67,39,32,
-40,67,39,32,95,50,55,48,41,41,32,40,40,40,67,39,32,66,41,32,
-95,49,49,56,51,41,32,40,95,56,56,53,32,95,56,56,55,41,41,41,
-32,34,98,97,100,32,115,121,110,111,110,121,109,32,117,115,101,34,41,41,
-41,41,32,95,49,51,57,57,41,41,41,41,41,41,32,40,40,40,67,39,
-32,66,41,32,40,66,39,32,40,66,39,32,40,67,39,32,40,95,51,51,
-32,95,53,57,41,41,41,41,41,32,40,40,40,67,39,32,66,41,32,67,
-39,41,32,40,67,32,95,52,56,49,41,41,41,41,41,32,40,90,32,75,
-41,41,41,32,75,41,41,32,40,40,66,32,90,41,32,40,40,40,67,39,
-32,40,83,39,32,67,41,41,32,40,40,40,67,39,32,40,83,39,32,67,
-41,41,32,40,40,66,32,40,40,67,39,32,67,41,32,40,40,40,83,39,
-32,67,41,32,40,40,40,83,39,32,67,41,32,40,40,40,83,39,32,67,
-41,32,40,40,40,83,39,32,80,41,32,75,41,32,75,41,41,32,75,41,
-41,32,75,41,41,32,75,41,41,41,32,40,90,32,40,95,51,53,32,95,
-53,57,41,41,41,41,32,75,41,41,32,75,41,41,41,41,32,40,90,32,
-75,41,41,41,32,40,90,32,75,41,41,41,32,75,41,41,32,75,41,41,
-32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,
-75,41,41,41,32,40,90,32,40,90,32,75,41,41,41,41,32,90,41,41,
-32,40,90,32,75,41,41,41,32,40,40,66,32,90,41,32,40,40,66,32,
-40,66,32,40,95,50,55,48,32,40,95,51,53,32,95,53,57,41,41,41,
-41,32,40,67,32,40,95,52,49,54,32,95,49,50,55,56,41,41,41,41,
-41,41,32,75,41,41,32,40,40,66,32,40,40,67,39,32,40,67,39,32,
-66,41,41,32,40,40,66,32,66,39,41,32,95,52,48,57,41,41,41,32,
-40,40,67,39,32,66,41,32,40,40,66,32,40,95,50,56,53,32,95,53,
-55,41,41,32,95,56,52,48,41,41,41,41,41,32,95,49,51,57,57,41,
-41,32,95,52,56,48,41,41,41,32,40,40,65,32,58,49,50,56,57,32,
-40,40,67,32,40,40,40,67,39,32,67,41,32,40,40,40,67,39,32,83,
-41,32,40,40,40,83,39,32,67,41,32,40,40,40,67,39,32,83,41,32,
-40,40,40,67,39,32,67,41,32,40,40,40,67,39,32,83,41,32,40,40,
-40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,
-39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,
-83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,
-32,40,40,40,83,39,32,83,41,32,40,40,67,32,40,40,40,67,39,32,
-83,39,41,32,40,40,67,32,40,40,83,32,73,41,32,40,90,32,40,95,
-51,53,32,95,53,57,41,41,41,41,32,40,40,40,67,39,32,66,41,32,
-40,40,66,32,40,95,51,51,32,95,53,57,41,41,32,95,49,50,56,57,
-41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,95,51,51,
-32,95,53,57,41,41,32,95,49,50,56,57,41,41,32,40,40,66,32,40,
-66,32,40,95,50,55,48,32,40,95,51,53,32,95,53,57,41,41,41,41,
-32,95,56,50,52,41,41,41,41,41,32,40,90,32,75,41,41,41,32,75,
-41,41,32,40,40,66,32,90,41,32,40,40,40,67,39,32,40,83,39,32,
-67,41,41,32,40,40,40,67,39,32,40,83,39,32,67,41,41,32,40,40,
-66,32,40,40,67,39,32,67,41,32,40,40,40,83,39,32,67,41,32,40,
-40,40,83,39,32,67,41,32,40,40,40,83,39,32,67,41,32,40,40,40,
-83,39,32,80,41,32,75,41,32,75,41,41,32,75,41,41,32,75,41,41,
-32,75,41,41,41,32,40,90,32,40,95,51,53,32,95,53,57,41,41,41,
-41,32,75,41,41,32,75,41,41,41,41,32,40,90,32,75,41,41,41,32,
-40,90,32,75,41,41,41,32,75,41,41,32,75,41,41,32,40,90,32,75,
-41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,
-40,90,32,40,90,32,75,41,41,41,41,32,40,40,66,32,40,40,67,39,
-32,40,95,50,56,53,32,95,53,55,41,41,32,40,95,50,55,53,32,95,
-56,51,54,41,41,41,32,95,49,50,56,57,41,41,41,32,40,90,32,75,
-41,41,41,32,40,40,66,32,40,40,83,39,32,40,95,51,51,32,95,53,
-57,41,41,32,95,49,50,56,54,41,41,32,40,40,40,67,39,32,66,41,
-32,40,40,66,32,80,41,32,40,95,51,53,32,95,53,57,41,41,41,32,
-40,40,66,32,40,40,67,39,32,40,95,51,51,32,95,53,57,41,41,32,
-95,49,50,56,57,41,41,32,40,40,40,67,39,32,40,83,39,32,40,95,
-51,52,32,95,53,57,41,41,41,32,95,49,50,56,53,41,32,40,95,51,
-53,32,95,53,57,41,41,41,41,41,41,41,32,75,41,41,32,40,40,40,
-67,39,32,66,41,32,40,40,66,32,40,95,50,56,53,32,95,53,55,41,
-41,32,95,56,52,48,41,41,32,95,49,50,56,57,41,41,41,32,40,95,
-49,51,57,57,32,95,54,55,51,41,41,41,32,40,40,65,32,58,49,50,
-57,48,32,40,40,66,32,40,66,32,40,66,32,40,40,95,51,51,32,95,
-53,57,41,32,40,95,54,53,32,95,49,50,51,53,41,41,41,41,41,32,
-40,40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,66,32,66,39,
-41,32,40,40,66,32,40,66,32,95,50,55,48,41,41,32,95,49,49,56,
-51,41,41,41,32,40,40,66,32,40,40,67,39,32,95,52,56,50,41,32,
-40,40,80,32,34,116,121,112,101,34,41,32,34,107,105,110,100,34,41,41,
-41,32,40,95,52,56,50,32,34,32,101,114,114,111,114,58,32,34,41,41,
-41,41,41,32,40,40,65,32,58,49,50,57,49,32,40,40,40,83,39,32,
-66,41,32,40,40,66,32,40,67,39,32,66,41,41,32,40,40,66,32,40,
-66,32,40,95,51,51,32,95,53,57,41,41,41,32,95,49,50,56,56,41,
-41,41,32,40,40,40,83,39,32,66,41,32,40,40,66,32,40,67,39,32,
-66,41,41,32,40,40,66,32,40,66,32,40,95,51,51,32,95,53,57,41,
-41,41,32,95,49,50,56,56,41,41,41,32,95,49,50,57,50,41,41,41,
-32,40,40,65,32,58,49,50,57,50,32,40,40,66,32,89,41,32,40,40,
-66,32,40,66,32,40,66,32,40,40,83,39,32,83,41,32,40,40,40,67,
-39,32,40,67,39,32,83,41,41,32,40,40,40,67,39,32,40,67,39,32,
-83,41,41,32,40,40,40,67,39,32,40,67,39,32,83,41,41,32,40,40,
-40,67,39,32,40,67,39,32,83,41,41,32,40,40,40,67,39,32,40,67,
-39,32,83,41,41,32,40,40,40,67,39,32,40,67,39,32,83,41,41,32,
-40,40,40,67,39,32,40,67,39,32,83,41,41,32,40,40,40,67,39,32,
-40,67,39,32,83,41,41,32,40,40,40,67,39,32,40,67,39,32,83,41,
-41,32,40,40,40,67,39,32,40,67,39,32,83,41,41,32,40,40,40,67,
-39,32,40,67,39,32,83,41,41,32,40,40,40,67,39,32,40,67,39,32,
-83,41,41,32,40,40,40,67,39,32,40,67,39,32,83,41,41,32,40,40,
-40,67,39,32,40,67,39,32,83,41,41,32,40,40,40,67,39,32,40,67,
-39,32,83,41,41,32,40,40,40,67,39,32,40,67,39,32,83,41,41,32,
-40,40,67,32,40,40,40,67,39,32,67,39,41,32,83,39,41,32,40,40,
-40,67,39,32,40,83,39,32,67,41,41,32,40,40,40,67,39,32,40,83,
-39,32,67,41,41,32,40,40,40,67,39,32,40,83,39,32,67,41,41,32,
-40,40,40,67,39,32,40,83,39,32,67,41,41,32,40,40,40,67,39,32,
-40,83,39,32,67,41,41,32,40,40,40,67,39,32,40,83,39,32,67,41,
-41,32,40,40,40,67,39,32,40,83,39,32,67,41,41,32,40,40,40,67,
-39,32,40,83,39,32,67,41,41,32,40,40,40,67,39,32,40,83,39,32,
-67,41,41,32,40,40,40,67,39,32,40,83,39,32,67,41,41,32,40,40,
-40,67,39,32,40,83,39,32,67,41,41,32,40,40,40,67,39,32,40,83,
-39,32,67,41,41,32,40,40,40,67,39,32,40,83,39,32,67,41,41,32,
-40,40,40,67,39,32,40,83,39,32,67,41,41,32,40,40,40,67,39,32,
-40,83,39,32,67,41,41,32,40,40,40,67,39,32,40,83,39,32,67,41,
-41,32,40,40,67,32,40,40,40,67,39,32,83,39,41,32,67,39,41,32,
-40,40,40,67,39,32,40,67,39,32,67,41,41,32,40,40,67,39,32,67,
-41,32,40,95,50,49,49,32,95,57,55,52,41,41,41,32,40,40,95,51,
-53,32,95,53,57,41,32,95,49,52,53,48,41,41,41,41,32,40,90,32,
-75,41,41,41,32,40,90,32,75,41,41,41,32,75,41,41,32,40,90,32,
-75,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,
-32,75,41,41,32,75,41,41,32,40,90,32,75,41,41,41,32,40,90,32,
-75,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,40,90,32,75,
-41,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,
-32,75,41,41,32,75,41,41,32,40,90,32,75,41,41,41,41,32,40,90,
-32,75,41,41,41,32,40,90,32,75,41,41,41,32,75,41,41,32,40,90,
-32,75,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,
-41,32,75,41,41,32,75,41,41,32,40,90,32,75,41,41,41,32,40,90,
-32,75,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,40,90,32,
-75,41,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,
-41,32,75,41,41,32,75,41,41,32,40,90,32,75,41,41,41,41,41,41,
-32,40,40,66,32,40,40,67,39,32,40,83,39,32,40,83,39,32,83,41,
-41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,
-32,83,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,
-32,40,67,39,32,83,41,41,41,41,32,40,40,40,67,39,32,40,67,39,
-32,40,67,39,32,40,83,39,32,83,41,41,41,41,32,40,40,40,67,39,
-32,40,67,39,32,40,67,39,32,40,67,39,32,83,41,41,41,41,32,40,
-40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,83,41,41,
-41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,
-32,83,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,
-32,40,67,39,32,83,41,41,41,41,32,40,40,40,67,39,32,40,67,39,
-32,40,67,39,32,40,67,39,32,83,41,41,41,41,32,40,40,40,67,39,
-32,40,67,39,32,40,67,39,32,40,67,39,32,83,41,41,41,41,32,40,
-40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,83,41,41,
-41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,
-32,83,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,
-32,40,67,39,32,83,41,41,41,41,32,40,40,40,67,39,32,40,67,39,
-32,40,67,39,32,40,67,39,32,83,41,41,41,41,32,40,40,40,67,39,
-32,40,67,39,32,40,67,39,32,40,67,39,32,83,41,41,41,41,32,40,
-40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,83,41,41,
-41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,
-32,83,41,41,41,41,32,40,40,66,32,40,66,32,40,40,67,39,32,66,
-41,32,40,40,67,32,83,39,41,32,75,41,41,41,41,32,40,40,40,67,
-39,32,40,67,39,32,40,67,39,32,40,83,39,32,40,67,39,32,67,41,
-41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,
-83,39,32,40,67,39,32,67,41,41,41,41,41,32,40,40,40,67,39,32,
-40,67,39,32,40,67,39,32,40,83,39,32,40,67,39,32,67,41,41,41,
-41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,83,39,
-32,40,67,39,32,67,41,41,41,41,41,32,40,40,40,67,39,32,40,67,
-39,32,40,67,39,32,40,83,39,32,40,67,39,32,67,41,41,41,41,41,
-32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,83,39,32,40,
-67,39,32,67,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,
-40,67,39,32,40,83,39,32,40,67,39,32,67,41,41,41,41,41,32,40,
-40,40,67,39,32,40,67,39,32,40,67,39,32,40,83,39,32,40,67,39,
-32,67,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,
-39,32,40,83,39,32,40,67,39,32,67,41,41,41,41,41,32,40,40,40,
-67,39,32,40,67,39,32,40,67,39,32,40,83,39,32,40,67,39,32,67,
-41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,
-40,83,39,32,40,67,39,32,67,41,41,41,41,41,32,40,40,40,67,39,
-32,40,67,39,32,40,67,39,32,40,83,39,32,40,67,39,32,67,41,41,
-41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,83,
-39,32,40,67,39,32,67,41,41,41,41,41,32,40,40,40,67,39,32,40,
-67,39,32,40,67,39,32,40,83,39,32,40,67,39,32,67,41,41,41,41,
-41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,83,39,32,
-40,67,39,32,67,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,
-32,40,67,39,32,83,41,41,41,32,40,40,66,32,40,66,32,40,40,67,
-39,32,40,67,39,32,67,39,41,41,32,40,40,66,32,40,66,32,67,39,
-41,41,32,40,40,67,32,66,41,32,75,41,41,41,41,41,32,40,40,40,
-83,39,32,40,83,39,32,40,67,39,32,66,41,41,41,32,40,40,66,32,
-40,66,32,40,66,32,40,67,39,32,66,41,41,41,41,32,40,66,32,40,
-66,32,40,66,32,40,95,51,52,32,95,53,57,41,41,41,41,41,41,32,
-73,41,41,41,32,40,90,32,75,41,41,41,32,75,41,41,32,40,90,32,
-75,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,
-32,75,41,41,32,75,41,41,32,40,90,32,75,41,41,41,32,40,90,32,
-75,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,40,90,32,75,
-41,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,
-32,75,41,41,32,75,41,41,32,40,90,32,75,41,41,41,41,32,40,90,
-32,75,41,41,41,32,75,41,41,32,40,90,32,75,41,41,41,32,40,90,
-32,75,41,41,41,32,40,90,32,75,41,41,41,32,75,41,41,32,75,41,
-41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,40,90,
-32,75,41,41,41,32,40,90,32,40,90,32,75,41,41,41,41,32,40,90,
-32,75,41,41,41,32,40,90,32,75,41,41,41,32,40,40,40,67,39,32,
-40,83,39,32,67,41,41,32,40,40,40,67,39,32,83,41,32,40,40,40,
-67,39,32,40,83,39,32,67,39,41,41,32,40,40,40,67,39,32,83,41,
-32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,
-40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,
-67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,
-32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,
-41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,
-40,40,40,67,39,32,83,41,32,40,40,67,32,40,40,67,32,83,39,41,
-32,75,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,
-32,75,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,
-32,40,90,32,75,41,41,41,32,75,41,41,32,75,41,41,32,40,90,32,
-75,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,
-32,40,90,32,40,90,32,75,41,41,41,41,32,40,90,32,75,41,41,41,
-32,40,90,32,75,41,41,41,32,40,40,40,67,39,32,40,67,39,32,67,
-41,41,32,40,40,67,39,32,67,41,32,40,95,50,49,49,32,95,50,57,
-53,41,41,41,32,40,40,95,51,53,32,95,53,57,41,32,95,49,52,53,
-48,41,41,41,41,32,75,41,41,32,40,90,32,75,41,41,41,41,32,75,
-41,41,32,40,90,32,75,41,41,41,41,32,40,40,40,83,39,32,40,83,
-39,32,40,83,39,32,83,41,41,41,32,40,40,40,67,39,32,40,67,39,
-32,40,67,39,32,40,67,39,32,83,41,41,41,41,32,40,40,40,67,39,
-32,40,67,39,32,40,67,39,32,40,67,39,32,83,41,41,41,41,32,40,
-40,66,32,40,66,32,40,40,67,39,32,66,41,32,40,40,66,32,67,41,
-32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,
-40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,
-67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,
-32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,
-41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,
-40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,
-67,32,40,40,67,32,83,39,41,32,75,41,41,32,40,90,32,75,41,41,
-41,32,40,90,32,75,41,41,41,32,75,41,41,32,40,90,32,75,41,41,
-41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,75,41,
-41,32,75,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,
-41,32,40,90,32,75,41,41,41,32,40,90,32,40,90,32,75,41,41,41,
-41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,41,41,41,
-32,40,40,66,32,40,66,32,67,41,41,32,95,49,50,57,51,41,41,41,
-32,75,41,41,32,40,90,32,75,41,41,41,32,40,40,40,83,39,32,40,
-83,39,32,40,83,39,32,83,41,41,41,32,40,40,40,67,39,32,40,67,
-39,32,40,67,39,32,40,67,39,32,83,41,41,41,41,32,40,40,40,67,
-39,32,40,67,39,32,40,67,39,32,40,67,39,32,83,41,41,41,41,32,
-40,40,66,32,40,66,32,40,66,32,40,40,67,39,32,67,41,32,40,40,
-40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,
-39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,
-83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,
-32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,
-40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,
-67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,67,32,40,
-40,67,32,83,39,41,32,75,41,41,32,40,90,32,75,41,41,41,32,40,
-90,32,75,41,41,41,32,75,41,41,32,40,90,32,75,41,41,41,32,40,
-90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,75,41,41,32,75,
-41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,40,
-90,32,75,41,41,41,32,40,90,32,40,90,32,75,41,41,41,41,32,40,
-90,32,75,41,41,41,32,40,90,32,75,41,41,41,41,41,41,32,40,40,
-66,32,40,66,32,67,41,41,32,95,49,50,57,51,41,41,41,32,75,41,
-41,32,40,90,32,75,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
-40,66,32,40,40,95,51,51,32,95,53,57,41,32,40,95,54,53,32,95,
-49,50,51,53,41,41,41,41,41,41,32,40,40,66,32,40,40,83,39,32,
-40,83,39,32,40,83,39,32,80,41,41,41,32,95,49,52,51,53,41,41,
-32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,66,32,66,
-39,41,32,40,40,66,32,40,66,32,95,50,55,48,41,41,32,95,49,50,
-57,48,41,41,41,32,40,40,66,32,40,66,32,40,95,52,56,50,32,34,
-99,97,110,110,111,116,32,117,110,105,102,121,32,34,41,41,41,32,40,40,
-40,67,39,32,66,41,32,40,40,66,32,95,52,56,50,41,32,95,57,50,
-48,41,41,32,40,40,66,32,40,95,52,56,50,32,34,32,97,110,100,32,
-34,41,41,32,95,57,50,48,41,41,41,41,41,41,41,41,41,41,41,41,
-32,40,40,65,32,58,49,50,57,51,32,40,40,66,32,40,66,32,40,40,
-83,39,32,66,41,32,40,40,66,32,40,95,51,51,32,95,53,57,41,41,
-32,95,49,50,56,54,41,41,41,41,32,40,40,40,83,39,32,40,83,39,
-32,40,67,39,32,40,83,39,32,80,41,41,41,41,32,95,49,50,57,52,
-41,32,40,40,66,32,40,66,32,67,41,41,32,95,49,50,57,49,41,41,
-41,41,32,40,40,65,32,58,49,50,57,52,32,40,40,40,83,39,32,40,
-83,39,32,40,83,39,32,83,41,41,41,32,40,40,40,67,39,32,40,67,
-39,32,40,67,39,32,40,67,39,32,83,41,41,41,41,32,40,40,40,67,
-39,32,40,67,39,32,40,67,39,32,40,67,39,32,83,41,41,41,41,32,
-40,40,66,32,40,66,32,40,66,32,40,40,83,39,32,67,41,32,40,40,
-40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,
-39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,
-83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,
-32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,
-40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,
-67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,67,32,40,
-40,67,32,83,39,41,32,75,41,41,32,40,90,32,75,41,41,41,32,40,
-90,32,75,41,41,41,32,75,41,41,32,40,90,32,75,41,41,41,32,40,
-90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,75,41,41,32,75,
-41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,40,
-90,32,75,41,41,41,32,40,90,32,40,90,32,75,41,41,41,41,32,40,
-90,32,75,41,41,41,32,40,90,32,75,41,41,41,41,41,41,32,40,40,
-66,32,40,66,32,40,66,32,40,66,32,40,40,67,39,32,40,95,51,51,
-32,95,53,57,41,41,32,95,49,50,56,54,41,41,41,41,41,32,40,40,
-66,32,40,66,32,40,40,83,39,32,40,67,39,32,80,41,41,32,95,49,
-50,56,53,41,41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,
-32,95,49,50,57,49,41,32,95,56,51,56,41,41,41,41,41,32,75,41,
-41,32,40,90,32,75,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
-40,40,83,39,32,40,95,51,51,32,95,53,57,41,41,32,40,40,66,32,
-95,49,52,48,51,41,32,40,40,67,32,79,41,32,75,41,41,41,41,41,
-41,32,40,40,66,32,40,66,32,40,40,83,39,32,40,83,39,32,67,41,
-41,32,40,40,40,83,39,32,66,41,32,40,40,66,32,67,41,32,40,95,
-52,53,51,32,40,95,50,49,49,32,95,50,57,53,41,41,41,41,32,95,
-49,50,56,53,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,66,
-41,41,32,40,40,66,32,66,39,41,32,40,40,66,32,40,66,32,95,50,
-55,48,41,41,32,95,49,50,57,48,41,41,41,32,40,40,66,32,40,66,
-32,40,95,52,56,50,32,34,99,121,99,108,105,99,32,34,41,41,41,32,
-40,40,40,67,39,32,66,41,32,40,40,66,32,95,52,56,50,41,32,40,
-40,66,32,95,57,50,48,41,32,95,56,51,56,41,41,41,32,40,40,66,
-32,40,95,52,56,50,32,34,32,61,32,34,41,41,32,95,57,50,48,41,
-41,41,41,41,41,41,41,32,40,40,65,32,58,49,50,57,53,32,40,40,
-40,95,51,51,32,95,53,57,41,32,95,54,52,41,32,40,85,32,40,40,
-66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,90,41,41,
-41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
-32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
-66,32,95,54,51,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,
-40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,
-40,67,39,32,67,41,41,41,41,41,41,32,95,49,50,50,52,41,32,95,
-51,48,52,41,41,41,41,41,41,32,40,40,65,32,58,49,50,57,54,32,
-40,40,40,95,50,56,53,32,95,53,55,41,32,95,56,51,56,41,32,95,
-49,50,57,55,41,41,32,40,40,65,32,58,49,50,57,55,32,40,40,40,
-95,51,51,32,95,53,57,41,32,95,54,52,41,32,40,85,32,40,40,40,
-67,39,32,40,83,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,
-67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,
-67,39,32,40,67,39,32,67,41,41,41,41,41,41,41,41,41,41,41,41,
-32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,67,39,32,40,67,
-39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,
-39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,
-39,32,40,95,51,52,32,95,53,57,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
-32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
-66,32,40,66,32,95,54,51,41,41,41,41,41,41,41,41,41,41,41,41,
-41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
-32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
-40,83,39,32,95,50,55,48,41,32,95,49,53,57,56,41,41,41,41,41,
-41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,
-66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
-40,66,32,67,41,41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,
-40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
-32,40,66,32,40,66,32,67,41,41,41,41,41,41,41,41,41,41,32,40,
-40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
-32,40,66,32,40,66,32,67,41,41,41,41,41,41,41,41,41,32,40,40,
-66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
-40,66,32,67,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,
-40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,
-41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
-40,66,32,67,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,
-32,40,66,32,40,66,32,67,41,41,41,41,41,32,40,40,66,32,40,66,
-32,40,66,32,40,66,32,67,41,41,41,41,32,40,40,66,32,40,66,32,
-40,66,32,67,41,41,41,32,40,40,66,32,40,66,32,67,41,41,32,40,
-40,66,32,67,41,32,95,49,50,50,52,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,32,40,95,51,53,32,95,53,57,41,41,41,32,40,
-40,67,32,40,95,53,48,57,32,95,50,57,49,41,41,32,35,49,41,41,
-41,41,41,32,40,40,65,32,58,49,50,57,56,32,40,40,79,32,35,51,
-54,41,32,75,41,41,32,40,40,65,32,58,49,50,57,57,32,40,40,66,
-32,40,66,32,40,40,95,51,51,32,95,53,57,41,32,95,49,50,57,55,
-41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,95,50,55,48,32,
-40,95,51,53,32,95,53,57,41,41,41,41,41,32,40,40,40,67,39,32,
-66,41,32,40,66,39,32,40,40,66,32,95,50,55,48,41,32,95,57,56,
-48,41,41,41,32,40,40,40,67,39,32,66,41,32,95,52,56,50,41,32,
-40,40,66,32,40,95,52,56,50,32,40,40,79,32,35,51,54,41,32,75,
-41,41,41,32,40,95,49,55,49,52,32,95,50,57,55,41,41,41,41,41,
-41,41,32,40,40,65,32,58,49,51,48,48,32,40,40,66,32,40,66,32,
-40,66,32,40,40,95,51,51,32,95,53,57,41,32,40,95,54,53,32,95,
-49,50,50,56,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,
-40,83,39,32,67,41,41,41,32,40,40,66,32,40,40,67,39,32,40,83,
-39,32,67,41,41,32,95,49,52,52,49,41,41,32,40,40,40,67,39,32,
-66,41,32,95,49,49,56,51,41,32,40,95,56,56,53,32,95,56,56,55,
-41,41,41,41,32,40,40,66,32,85,41,32,40,40,66,32,40,66,32,40,
-66,32,40,95,51,53,32,95,53,57,41,41,41,41,32,40,40,66,32,40,
-66,32,80,41,41,32,40,40,66,32,95,57,49,52,41,32,40,95,56,56,
-53,32,95,56,56,55,41,41,41,41,41,41,41,41,32,40,40,65,32,58,
-49,51,48,49,32,40,40,66,32,40,66,32,40,40,95,51,51,32,95,53,
-57,41,32,40,95,54,53,32,95,49,50,51,53,41,41,41,41,32,40,40,
-40,67,39,32,67,39,41,32,95,49,51,48,48,41,32,40,40,80,32,34,
-118,97,108,117,101,34,41,32,34,116,121,112,101,34,41,41,41,41,32,40,
-40,65,32,58,49,51,48,50,32,40,75,32,40,89,32,40,40,66,32,40,
-83,32,73,41,41,32,40,40,40,83,39,32,66,41,32,40,40,66,32,40,
-83,39,32,83,41,41,32,40,40,66,32,40,66,32,40,40,67,39,32,67,
-41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,
-40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,
-40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,
-39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,
-83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,
-32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,
-40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,67,
-32,40,40,67,32,83,39,41,32,75,41,41,32,40,90,32,75,41,41,41,
-32,40,90,32,75,41,41,41,32,75,41,41,32,40,90,32,75,41,41,41,
-32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,75,41,41,
-32,75,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,
-32,40,90,32,75,41,41,41,32,40,90,32,40,90,32,75,41,41,41,41,
-32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,75,41,41,
-32,75,41,41,41,41,32,40,40,67,39,32,40,67,39,32,40,67,39,32,
-40,95,51,51,32,95,53,57,41,41,41,41,32,95,49,51,48,51,41,41,
-41,41,32,40,40,66,32,40,40,67,39,32,66,41,32,40,40,66,32,67,
-41,32,40,40,66,32,40,67,32,95,49,50,56,52,41,41,32,40,95,51,
-53,32,95,53,57,41,41,41,41,41,32,40,40,66,32,40,66,32,85,41,
-41,32,40,40,66,32,40,40,83,39,32,66,41,32,40,66,39,32,40,40,
-66,32,40,95,51,51,32,95,53,57,41,41,32,40,40,66,32,95,49,51,
-55,49,41,32,40,95,56,56,53,32,95,56,56,56,41,41,41,41,41,41,
-32,40,40,66,32,40,66,32,40,40,67,39,32,66,41,32,40,40,66,32,
-40,83,39,32,40,95,51,52,32,95,53,57,41,41,41,32,40,67,32,95,
-49,50,53,56,41,41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,
-66,39,32,66,41,41,32,40,40,66,32,40,67,39,32,80,41,41,32,40,
-40,40,67,39,32,66,41,32,95,56,50,52,41,32,95,56,50,51,41,41,
-41,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,49,51,48,51,
-32,40,40,40,83,39,32,67,41,32,40,40,66,32,40,40,83,39,32,83,
-39,41,32,95,52,48,57,41,41,32,40,40,66,32,40,40,83,39,32,66,
-41,32,40,40,66,32,40,95,51,51,32,95,53,57,41,41,32,40,40,95,
-52,52,32,95,53,57,41,32,40,95,50,55,52,32,95,49,50,57,54,41,
-41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,95,
-51,53,32,95,53,57,41,41,41,41,41,32,40,40,40,67,39,32,66,41,
-32,40,66,39,32,40,66,39,32,80,41,41,41,32,40,40,66,32,40,67,
-39,32,95,57,48,50,41,41,32,40,40,66,32,95,52,50,57,41,32,40,
-95,52,49,50,32,95,56,55,56,41,41,41,41,41,41,41,41,32,40,40,
-66,32,40,66,32,40,95,51,53,32,95,53,57,41,41,41,32,80,41,41,
-41,32,40,40,65,32,58,49,51,48,52,32,40,40,83,32,40,40,67,32,
-66,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,67,41,32,40,
-40,40,83,39,32,67,41,32,40,40,40,83,39,32,67,41,32,40,40,40,
-83,39,32,67,41,32,40,40,40,83,39,32,67,41,32,40,40,40,83,39,
-32,67,41,32,40,40,40,83,39,32,67,41,32,40,40,40,83,39,32,67,
-41,32,40,40,40,83,39,32,67,41,32,40,40,40,83,39,32,67,41,32,
-40,40,40,83,39,32,67,41,32,40,40,40,83,39,32,67,41,32,40,40,
-40,83,39,32,67,41,32,40,40,40,83,39,32,67,41,32,40,40,40,83,
-39,32,67,41,32,40,40,40,83,39,32,67,41,32,40,40,40,83,39,32,
-80,41,32,75,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,
-41,32,75,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,
-41,32,40,90,32,75,41,41,41,32,75,41,41,32,75,41,41,32,40,90,
-32,75,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,
-41,32,40,90,32,40,90,32,75,41,41,41,41,32,40,90,32,75,41,41,
-41,32,40,90,32,75,41,41,41,32,75,41,41,32,75,41,41,41,32,95,
-49,51,48,51,41,41,41,32,40,95,51,53,32,95,53,57,41,41,41,32,
-40,40,65,32,58,49,51,48,53,32,40,75,32,40,40,66,32,40,66,32,
-40,66,32,40,40,95,51,51,32,95,53,57,41,32,40,95,54,53,32,95,
-49,50,50,56,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
-40,66,32,95,49,50,52,50,41,41,41,41,32,40,40,40,67,39,32,66,
-41,32,40,66,39,32,95,49,52,52,53,41,41,32,40,67,32,95,49,50,
-48,53,41,41,41,41,41,41,32,40,40,65,32,58,49,51,48,54,32,40,
-40,66,32,40,66,32,40,66,32,40,66,32,40,40,95,51,51,32,95,53,
-57,41,32,40,95,54,53,32,95,49,50,51,51,41,41,41,41,41,41,32,
-40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,40,95,51,
-51,32,95,53,57,41,32,40,95,54,53,32,95,49,50,50,56,41,41,41,
-41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
-32,40,66,32,95,49,50,52,50,41,41,41,41,41,41,32,40,40,66,32,
-40,40,83,39,32,40,83,39,32,40,83,39,32,66,41,41,41,32,40,40,
-66,32,40,66,32,66,39,41,41,32,40,40,40,67,39,32,66,41,32,40,
-66,39,32,95,49,52,52,54,41,41,32,40,40,40,67,39,32,40,67,39,
-32,79,41,41,32,40,67,32,95,49,50,48,53,41,41,32,75,41,41,41,
-41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,66,
-32,66,39,41,32,40,40,66,32,40,66,32,40,67,39,32,95,49,52,52,
-54,41,41,41,32,40,40,66,32,67,41,32,95,57,56,55,41,41,41,41,
-32,40,40,40,67,39,32,40,67,39,32,79,41,41,32,40,67,32,95,49,
-50,48,53,41,41,32,75,41,41,41,41,41,41,41,32,40,40,65,32,58,
-49,51,48,55,32,40,40,66,32,40,66,32,40,66,32,40,40,95,51,51,
-32,95,53,57,41,32,40,95,54,53,32,95,49,50,51,51,41,41,41,41,
-41,32,40,40,40,83,39,32,40,83,39,32,40,67,39,32,66,41,41,41,
-32,95,49,51,48,54,41,32,40,40,66,32,40,66,32,40,66,32,95,56,
-50,51,41,41,41,32,40,40,66,32,67,41,32,95,57,56,55,41,41,41,
-41,41,32,40,40,65,32,58,49,51,48,56,32,40,40,40,67,39,32,40,
-83,39,32,40,67,39,32,95,50,55,48,41,41,41,32,95,49,51,48,53,
-41,32,95,56,50,51,41,41,32,40,40,65,32,58,49,51,48,57,32,40,
-40,66,32,40,95,52,53,32,95,53,57,41,41,32,40,40,66,32,95,50,
-55,55,41,32,95,49,51,48,56,41,41,41,32,40,40,65,32,58,49,51,
-49,48,32,40,40,66,32,40,66,32,40,40,95,51,51,32,95,53,57,41,
-32,40,95,54,53,32,95,49,50,50,55,41,41,41,41,32,40,40,66,32,
-40,66,32,40,66,32,95,49,50,52,51,41,41,41,32,40,40,40,83,39,
-32,66,41,32,95,49,52,52,53,41,32,40,40,66,32,95,49,50,48,53,
-41,32,95,56,50,51,41,41,41,41,41,32,40,40,65,32,58,49,51,49,
-49,32,40,40,95,52,53,32,95,53,57,41,32,40,95,50,55,55,32,95,
-49,51,49,48,41,41,41,32,40,40,65,32,58,49,51,49,50,32,40,40,
-66,32,40,66,32,40,40,95,51,51,32,95,53,57,41,32,40,95,54,53,
-32,95,49,50,50,57,41,41,41,41,32,40,40,66,32,40,66,32,40,66,
-32,95,49,50,52,52,41,41,41,32,95,49,48,49,49,41,41,41,32,40,
-40,65,32,58,49,51,49,51,32,40,40,66,32,40,66,32,40,40,95,51,
-51,32,95,53,57,41,32,95,54,52,41,41,41,32,40,40,66,32,40,66,
-32,85,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,
-67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,
-67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,
-67,39,32,40,67,39,32,40,95,51,52,32,95,53,57,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,
-66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
-40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,95,
-50,55,48,32,95,54,51,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,32,40,40,66,32,40,66,32,40,40,67,39,32,40,67,39,32,
-66,41,41,32,95,49,50,50,52,41,41,41,32,95,49,48,49,49,41,41,
-41,32,40,40,95,51,53,32,95,53,57,41,32,95,49,52,53,48,41,41,
-41,41,41,32,40,40,65,32,58,49,51,49,52,32,40,40,66,32,40,66,
-32,40,66,32,40,66,32,40,40,95,51,51,32,95,53,57,41,32,40,95,
-54,53,32,95,49,50,50,56,41,41,41,41,41,41,32,40,40,40,67,39,
-32,40,67,39,32,40,67,39,32,66,41,41,41,32,40,40,66,32,40,66,
-32,66,39,41,41,32,40,40,66,32,40,66,32,40,66,32,40,95,51,52,
-32,95,53,57,41,41,41,41,32,95,49,51,48,56,41,41,41,32,40,40,
-40,67,39,32,66,41,32,40,95,51,51,32,95,53,57,41,41,32,40,40,
-40,67,39,32,66,41,32,40,40,66,32,40,95,51,52,32,95,53,57,41,
-41,32,95,49,50,52,50,41,41,32,40,95,51,53,32,95,53,57,41,41,
-41,41,41,41,32,40,40,65,32,58,49,51,49,53,32,40,40,66,32,40,
-66,32,40,66,32,40,40,95,51,51,32,95,53,57,41,32,40,95,54,53,
-32,95,49,50,50,56,41,41,41,41,41,32,40,40,40,67,39,32,40,67,
-39,32,66,41,41,32,40,40,66,32,66,39,41,32,40,40,66,32,40,66,
-32,40,95,51,52,32,95,53,57,41,41,41,32,95,49,51,48,57,41,41,
-41,32,40,40,40,67,39,32,66,41,32,40,95,51,51,32,95,53,57,41,
-41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,95,51,52,32,
-95,53,57,41,41,32,95,49,50,52,50,41,41,32,40,95,51,53,32,95,
-53,57,41,41,41,41,41,41,32,40,40,65,32,58,49,51,49,54,32,40,
-40,66,32,40,66,32,40,40,95,51,51,32,95,53,57,41,32,40,95,54,
-53,32,95,49,50,50,55,41,41,41,41,32,40,40,40,67,39,32,66,41,
-32,40,66,39,32,40,40,66,32,40,95,51,52,32,95,53,57,41,41,32,
-40,40,66,32,95,49,51,49,49,41,32,40,95,52,49,50,32,40,85,32,
-80,41,41,41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,95,51,
-51,32,95,53,57,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,
-32,40,95,51,52,32,95,53,57,41,41,32,95,49,50,52,51,41,41,32,
-40,95,51,53,32,95,53,57,41,41,41,41,41,41,32,40,40,65,32,58,
-49,51,49,55,32,40,40,40,83,39,32,40,95,51,52,32,95,53,57,41,
-41,32,40,40,95,52,53,32,95,53,57,41,32,95,49,51,49,57,41,41,
-32,40,40,40,67,39,32,40,95,51,51,32,95,53,57,41,41,32,95,49,
-51,50,48,41,32,40,40,40,83,39,32,40,95,51,52,32,95,53,57,41,
-41,32,40,40,95,52,53,32,95,53,57,41,32,95,49,51,50,56,41,41,
-32,40,40,40,67,39,32,40,95,51,51,32,95,53,57,41,41,32,95,49,
-51,50,49,41,32,40,40,40,83,39,32,40,95,51,52,32,95,53,57,41,
-41,32,95,49,51,49,56,41,32,95,49,51,52,49,41,41,41,41,41,41,
-32,40,40,65,32,58,49,51,49,56,32,40,40,66,32,40,95,50,55,48,
-32,95,49,50,53,50,41,41,32,40,40,66,32,40,95,50,55,48,32,95,
-52,55,52,41,41,32,40,40,66,32,40,95,52,56,49,32,95,52,56,48,
-41,41,32,40,95,52,49,49,32,40,40,67,32,40,40,67,32,40,40,67,
-32,40,40,67,32,40,40,67,32,40,40,67,32,40,40,67,32,40,40,67,
-32,40,40,67,32,40,40,80,32,40,75,32,40,75,32,75,41,41,41,32,
-40,75,32,40,75,32,75,41,41,41,41,32,40,75,32,40,75,32,75,41,
-41,41,41,32,40,75,32,40,75,32,75,41,41,41,41,32,40,75,32,40,
-75,32,75,41,41,41,41,32,40,75,32,75,41,41,41,32,40,75,32,40,
-75,32,40,75,32,75,41,41,41,41,41,32,40,75,32,40,75,32,75,41,
-41,41,41,32,40,75,32,40,75,32,40,75,32,40,75,32,75,41,41,41,
-41,41,41,32,40,75,32,40,75,32,40,75,32,40,75,32,75,41,41,41,
-41,41,41,32,40,40,67,32,79,41,32,75,41,41,41,41,41,41,41,32,
-40,40,65,32,58,49,51,49,57,32,40,40,67,32,40,40,40,67,39,32,
-83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,
-32,40,40,40,67,39,32,67,41,32,40,40,40,67,39,32,83,41,32,40,
-40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,
-67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,67,32,40,
-40,67,32,83,39,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,
-41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,40,
-90,32,75,41,41,41,32,75,41,41,32,40,90,32,40,90,32,75,41,41,
-41,41,32,40,40,66,32,40,66,32,40,40,95,51,51,32,95,53,57,41,
-32,40,95,54,53,32,95,49,50,51,51,41,41,41,41,32,40,40,66,32,
-40,67,39,32,40,95,52,53,32,95,53,57,41,41,41,32,40,40,67,39,
-32,40,67,39,32,95,49,51,49,51,41,41,32,40,95,57,56,55,32,95,
-54,55,51,41,41,41,41,41,41,32,40,90,32,40,90,32,40,90,32,75,
-41,41,41,41,41,32,40,90,32,40,90,32,40,90,32,75,41,41,41,41,
-41,32,75,41,41,32,40,40,95,51,53,32,95,53,57,41,32,95,49,52,
-53,48,41,41,41,32,40,40,65,32,58,49,51,50,48,32,40,40,66,32,
-40,95,50,55,48,32,95,49,50,53,52,41,41,32,40,40,40,67,39,32,
-40,95,51,51,32,95,53,57,41,41,32,40,40,95,52,52,32,95,53,57,
-41,32,95,49,51,50,50,41,41,32,40,40,40,83,39,32,40,95,51,52,
-32,95,53,57,41,41,32,40,40,95,52,53,32,95,53,57,41,32,95,49,
-51,50,52,41,41,32,40,40,95,52,52,32,95,53,57,41,32,95,49,51,
-50,57,41,41,41,41,41,32,40,40,65,32,58,49,51,50,49,32,40,40,
-66,32,40,95,50,55,48,32,95,49,50,53,52,41,41,32,40,40,40,67,
-39,32,40,95,51,51,32,95,53,57,41,41,32,40,40,95,52,52,32,95,
-53,57,41,32,95,49,51,51,51,41,41,32,40,40,40,67,39,32,40,95,
-51,51,32,95,53,57,41,41,32,40,40,66,32,40,40,95,52,52,32,95,
-53,57,41,32,95,49,51,51,57,41,41,32,95,52,49,48,41,41,32,40,
-40,66,32,40,95,51,53,32,95,53,57,41,41,32,95,52,49,48,41,41,
-41,41,41,32,40,40,65,32,58,49,51,50,50,32,40,40,66,32,40,40,
-95,51,52,32,95,53,57,41,32,95,49,50,57,53,41,41,32,40,40,83,
-32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,67,41,32,40,
-40,40,67,39,32,67,41,32,40,40,40,67,39,32,83,41,32,40,40,40,
-67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,67,32,40,
-40,40,67,39,32,83,39,41,32,40,40,67,32,40,40,80,32,40,40,67,
-32,66,41,32,40,40,66,32,40,66,32,40,40,67,39,32,95,50,55,48,
-41,32,40,40,67,32,95,49,51,50,51,41,32,95,56,55,57,41,41,41,
-41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,
-40,66,32,40,95,50,55,48,32,40,95,51,53,32,95,53,57,41,41,41,
-41,41,32,40,40,67,39,32,40,67,39,32,95,56,48,56,41,41,32,80,
-41,41,41,41,41,41,32,40,40,67,32,66,41,32,40,40,66,32,40,66,
-32,40,40,67,39,32,95,50,55,48,41,32,40,40,67,32,95,49,51,50,
-51,41,32,95,56,55,57,41,41,41,41,32,40,40,66,32,40,66,32,90,
-41,41,32,40,40,66,32,40,66,32,40,66,32,40,95,50,55,48,32,40,
-95,51,53,32,95,53,57,41,41,41,41,41,32,40,40,67,39,32,40,67,
-39,32,95,56,48,57,41,41,32,80,41,41,41,41,41,41,41,32,40,40,
-67,32,66,41,32,40,40,40,83,39,32,40,83,39,32,83,41,41,32,40,
-40,40,67,39,32,40,67,39,32,40,67,39,32,83,41,41,41,32,40,40,
-40,67,39,32,40,67,39,32,40,67,39,32,83,41,41,41,32,40,40,40,
-67,39,32,40,67,39,32,40,67,39,32,83,41,41,41,32,40,40,40,67,
-39,32,40,67,39,32,40,67,39,32,83,41,41,41,32,40,40,40,67,39,
-32,66,41,32,40,66,39,32,40,40,66,32,67,41,32,40,40,40,67,39,
-32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,
-41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,
-40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,
-40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,
-39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,67,32,40,40,
-67,32,83,39,41,32,75,41,41,32,40,90,32,75,41,41,41,32,40,90,
-32,75,41,41,41,32,75,41,41,32,40,90,32,75,41,41,41,32,40,90,
-32,75,41,41,41,32,40,90,32,75,41,41,41,32,75,41,41,32,75,41,
-41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,40,90,
-32,75,41,41,41,32,40,90,32,40,90,32,75,41,41,41,41,41,41,32,
-40,40,66,32,40,40,67,39,32,66,41,32,40,40,66,32,40,67,39,32,
-95,50,55,48,41,41,32,95,49,51,50,51,41,41,41,32,40,40,66,32,
-40,66,32,40,66,32,40,66,32,40,95,50,55,48,32,40,95,51,53,32,
-95,53,57,41,41,41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,
-40,66,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,95,56,
-49,48,41,41,32,80,41,41,41,32,95,56,51,54,41,41,41,41,41,32,
-40,90,32,75,41,41,41,32,75,41,41,32,75,41,41,32,40,90,32,75,
-41,41,41,32,40,40,66,32,40,66,32,40,40,67,39,32,95,50,55,48,
-41,32,40,40,67,32,95,49,51,50,51,41,32,95,56,55,57,41,41,41,
-41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,
-40,66,32,40,95,50,55,48,32,40,95,51,53,32,95,53,57,41,41,41,
-41,41,32,40,40,67,39,32,40,67,39,32,95,56,49,48,41,41,32,80,
-41,41,41,41,41,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,
-75,41,41,41,32,75,41,41,32,40,90,32,40,90,32,75,41,41,41,41,
-32,40,90,32,75,41,41,41,32,40,40,66,32,40,40,67,39,32,66,41,
-32,66,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,40,
-67,39,32,95,50,55,48,41,32,40,40,67,32,95,49,51,50,51,41,32,
-95,56,56,48,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,
-32,40,66,32,90,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
-40,66,32,40,66,32,40,95,50,55,48,32,40,95,51,53,32,95,53,57,
-41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,67,39,32,67,
-41,41,41,32,40,40,40,67,39,32,67,39,41,32,40,40,66,32,67,39,
-41,32,95,56,49,54,41,41,32,80,41,41,41,41,41,41,41,41,32,40,
-40,40,67,39,32,66,41,32,40,66,39,32,40,66,39,32,40,40,66,32,
-95,50,55,48,41,32,40,40,67,32,95,49,51,50,51,41,32,95,56,56,
-48,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,90,41,41,
-41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,95,50,55,48,
-32,40,95,51,53,32,95,53,57,41,41,41,41,41,41,32,40,40,66,32,
-40,66,32,67,41,41,32,40,40,66,32,67,41,32,40,67,32,95,56,49,
-55,41,41,41,41,41,41,41,41,32,75,41,41,32,40,95,51,53,32,95,
-53,57,41,41,41,41,32,40,40,65,32,58,49,51,50,51,32,40,40,40,
-67,39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,40,95,
-51,51,32,95,53,57,41,41,41,32,40,40,66,32,40,66,32,40,95,50,
-55,48,32,95,49,50,53,52,41,41,41,32,40,67,32,40,40,40,67,39,
-32,89,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,83,39,
-32,80,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,95,
-51,51,32,95,53,57,41,41,32,95,49,51,52,55,41,41,32,40,40,66,
-32,40,66,32,40,95,51,53,32,95,53,57,41,41,41,32,40,40,66,32,
-80,41,32,95,52,52,50,41,41,41,41,41,32,40,40,66,32,40,66,32,
-40,67,32,66,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,
-32,40,40,67,39,32,40,95,51,51,32,95,53,57,41,41,32,95,49,51,
-52,55,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,40,
-83,39,32,40,83,39,32,95,50,55,48,41,41,32,40,95,49,51,49,52,
-32,95,54,55,51,41,41,41,41,41,32,40,40,40,67,39,32,66,41,32,
-40,40,66,32,67,39,41,32,67,39,41,41,32,40,40,67,39,32,40,67,
-39,32,95,52,56,49,41,41,32,95,56,55,54,41,41,41,41,41,41,41,
-32,95,52,56,48,41,41,41,41,41,32,85,41,41,32,40,40,65,32,58,
-49,51,50,52,32,40,40,67,32,40,40,40,67,39,32,67,41,32,40,40,
-40,67,39,32,40,67,39,32,67,41,41,32,40,40,40,67,39,32,40,67,
-39,32,40,67,39,32,83,41,41,41,32,40,40,40,67,39,32,40,67,39,
-32,40,67,39,32,83,41,41,41,32,40,40,40,67,39,32,40,67,39,32,
-40,83,39,32,67,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,
-67,39,32,83,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,
-39,32,83,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,
-32,83,41,41,41,32,40,40,40,67,39,32,40,67,39,32,67,41,41,32,
-40,40,40,67,39,32,40,67,39,32,40,67,39,32,83,39,41,41,41,32,
-40,40,40,67,39,32,40,67,39,32,67,41,41,32,40,40,67,32,40,40,
-40,67,39,32,83,39,41,32,83,39,41,32,40,40,66,32,40,66,32,40,
-83,32,66,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,
-90,41,41,41,41,32,40,40,66,32,40,66,32,40,40,67,39,32,66,41,
-32,40,66,39,32,40,40,66,32,40,95,51,52,32,95,53,57,41,41,32,
-40,40,67,32,95,49,51,50,54,41,32,95,56,55,57,41,41,41,41,41,
-41,32,40,40,66,32,40,40,67,39,32,66,41,32,67,41,41,32,40,40,
-66,32,40,66,32,40,95,50,55,48,32,40,95,52,54,51,32,95,57,55,
-52,41,41,41,41,32,95,52,49,49,41,41,41,41,41,41,41,32,40,40,
-66,32,40,66,32,40,83,32,66,41,41,41,32,40,40,66,32,40,66,32,
-40,66,32,40,66,32,90,41,41,41,41,32,40,40,66,32,40,66,32,40,
-40,67,39,32,66,41,32,40,66,39,32,40,40,66,32,40,95,51,52,32,
-95,53,57,41,41,32,40,40,67,32,95,49,51,50,54,41,32,95,56,55,
-57,41,41,41,41,41,41,32,40,40,67,39,32,66,41,32,67,41,41,41,
-41,41,41,32,40,40,40,67,39,32,66,41,32,95,49,51,50,54,41,32,
-95,49,51,50,53,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,
-75,41,41,41,32,75,41,41,32,40,90,32,40,90,32,75,41,41,41,41,
-32,40,90,32,75,41,41,41,32,40,90,32,40,40,66,32,90,41,32,40,
-40,66,32,40,83,32,66,41,41,32,40,40,66,32,40,66,32,40,66,32,
-90,41,41,41,32,40,40,66,32,40,40,67,39,32,66,41,32,40,66,39,
-32,40,40,66,32,40,95,51,52,32,95,53,57,41,41,32,40,40,67,32,
-95,49,51,50,54,41,32,95,56,56,48,41,41,41,41,41,32,40,40,40,
-67,39,32,66,41,32,67,41,32,40,95,52,49,49,32,40,40,67,32,40,
-40,80,32,40,75,32,40,75,32,75,41,41,41,32,40,75,32,40,75,32,
-75,41,41,41,41,32,40,90,32,40,40,66,32,40,95,52,49,49,32,40,
-40,67,32,79,41,32,75,41,41,41,32,40,40,83,32,79,41,32,40,40,
-40,67,39,32,79,41,32,95,49,51,51,54,41,32,75,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,32,40,90,32,40,90,32,40,90,32,75,
-41,41,41,41,41,32,75,41,41,32,40,40,95,51,53,32,95,53,57,41,
-32,95,49,52,53,48,41,41,41,32,40,40,66,32,40,66,32,40,40,95,
-51,51,32,95,53,57,41,32,40,95,54,53,32,95,49,50,51,51,41,41,
-41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,83,39,32,
-95,49,50,53,53,41,41,32,40,67,32,40,95,57,56,55,32,95,54,55,
-51,41,41,41,41,32,40,40,67,39,32,95,52,49,50,41,32,40,95,57,
-56,55,32,95,54,55,51,41,41,41,41,41,41,32,40,85,32,40,75,32,
-40,75,32,40,40,40,83,39,32,80,41,32,40,90,32,40,40,67,32,79,
-41,32,75,41,41,41,32,40,40,40,67,39,32,66,41,32,95,52,56,49,
-41,32,40,95,52,49,50,32,95,53,57,56,41,41,41,41,41,41,41,41,
-32,40,40,65,32,58,49,51,50,53,32,40,40,67,32,40,40,67,32,40,
-40,67,32,40,40,67,32,40,40,67,32,40,40,67,32,40,40,67,32,40,
-40,67,32,40,40,67,32,40,40,67,32,40,40,67,32,40,40,67,32,40,
-40,67,32,40,40,67,32,40,40,67,32,40,40,67,32,40,40,80,32,40,
-75,32,95,56,55,57,41,41,32,40,75,32,40,75,32,95,56,55,57,41,
-41,41,41,32,40,75,32,40,75,32,95,56,55,57,41,41,41,41,32,40,
-75,32,95,56,55,57,41,41,41,32,40,75,32,40,75,32,95,56,55,57,
-41,41,41,41,32,40,75,32,40,75,32,95,56,55,57,41,41,41,41,32,
-40,75,32,40,75,32,95,56,55,57,41,41,41,41,32,40,75,32,95,56,
-55,57,41,41,41,32,40,75,32,95,56,55,57,41,41,41,32,40,75,32,
-40,75,32,95,56,55,57,41,41,41,41,32,40,75,32,40,75,32,95,56,
-55,57,41,41,41,41,32,40,75,32,40,75,32,95,56,55,57,41,41,41,
-41,32,40,75,32,40,75,32,40,75,32,95,56,55,57,41,41,41,41,41,
-32,65,41,41,32,40,75,32,40,75,32,95,56,55,57,41,41,41,41,32,
-40,75,32,95,56,55,57,41,41,41,32,40,75,32,95,56,55,57,41,41,
-41,32,40,75,32,40,75,32,95,56,55,57,41,41,41,41,32,40,40,65,
-32,58,49,51,50,54,32,40,40,67,32,66,41,32,40,40,66,32,40,40,
-67,39,32,66,41,32,40,95,49,51,48,55,32,95,54,55,51,41,41,41,
-32,40,67,32,95,49,51,50,55,41,41,41,41,32,40,40,65,32,58,49,
-51,50,55,32,40,67,32,40,95,52,49,52,32,40,85,32,40,75,32,95,
-49,50,56,50,41,41,41,41,41,32,40,40,65,32,58,49,51,50,56,32,
-40,40,67,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,
-41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,
-40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,
-40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,
-39,32,67,41,32,40,40,67,32,40,40,67,32,83,39,41,32,40,90,32,
-75,41,41,41,32,40,90,32,75,41,41,41,32,40,40,67,32,66,41,32,
-40,40,66,32,40,40,67,39,32,66,41,32,40,40,40,83,39,32,40,83,
-39,32,40,95,51,52,32,95,53,57,41,41,41,32,95,49,51,49,50,41,
-32,40,40,66,32,40,66,32,40,40,95,51,51,32,95,53,57,41,32,40,
-95,54,53,32,95,49,50,51,51,41,41,41,41,32,40,40,66,32,40,67,
-39,32,95,49,51,49,50,41,41,32,40,67,32,40,95,57,56,55,32,95,
-54,55,51,41,41,41,41,41,41,41,32,40,67,32,95,56,52,48,41,41,
-41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,
-75,41,41,32,40,90,32,40,90,32,75,41,41,41,41,32,40,90,32,75,
-41,41,41,32,40,90,32,40,90,32,40,90,32,75,41,41,41,41,41,32,
-40,90,32,40,90,32,40,90,32,75,41,41,41,41,41,32,75,41,41,32,
-40,40,95,51,53,32,95,53,57,41,32,95,49,52,53,48,41,41,41,32,
-40,40,65,32,58,49,51,50,57,32,40,40,66,32,40,40,95,51,52,32,
-95,53,57,41,32,95,49,50,57,53,41,41,32,40,40,83,32,40,40,40,
-67,39,32,67,41,32,40,40,40,67,39,32,67,41,32,40,40,40,67,39,
-32,67,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,67,
-41,32,40,40,40,67,39,32,83,41,32,40,40,67,32,40,40,40,67,39,
-32,67,39,41,32,40,40,67,32,40,40,80,32,40,40,83,32,66,41,32,
-40,40,66,32,90,41,32,40,40,66,32,40,66,32,40,40,67,39,32,95,
-50,55,48,41,32,95,49,51,51,49,41,41,41,32,40,40,40,67,39,32,
-66,41,32,40,40,66,32,40,95,50,56,53,32,95,53,55,41,41,32,95,
-56,48,56,41,41,32,40,40,95,52,52,32,95,53,57,41,32,95,49,51,
-51,50,41,41,41,41,41,41,32,40,40,83,32,66,41,32,40,40,66,32,
-90,41,32,40,40,66,32,40,66,32,40,40,67,39,32,95,50,55,48,41,
-32,95,49,51,51,49,41,41,41,32,40,40,40,67,39,32,66,41,32,40,
-40,66,32,40,95,50,56,53,32,95,53,55,41,41,32,95,56,48,57,41,
-41,32,95,49,51,51,50,41,41,41,41,41,41,32,40,40,83,32,66,41,
-32,40,40,66,32,90,41,32,40,40,66,32,40,66,32,40,40,67,39,32,
-95,50,55,48,41,32,95,49,51,51,49,41,41,41,32,40,40,40,67,39,
-32,66,41,32,40,40,66,32,40,95,50,56,53,32,95,53,55,41,41,32,
-95,56,49,48,41,41,32,95,49,51,52,55,41,41,41,41,41,41,32,40,
-90,32,75,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,
-40,95,50,56,53,32,95,53,55,41,41,32,95,56,49,50,41,41,32,40,
-95,49,51,52,54,32,95,56,55,57,41,41,41,41,32,75,41,41,32,40,
-40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,
-40,95,50,56,53,32,95,53,55,41,41,41,32,95,56,49,52,41,41,32,
-40,95,49,51,52,54,32,95,56,55,57,41,41,41,41,32,40,90,32,75,
-41,41,41,32,40,40,66,32,40,40,83,39,32,66,41,32,66,41,41,32,
-40,40,66,32,40,66,32,40,66,32,90,41,41,41,32,40,40,66,32,40,
-66,32,40,66,32,40,66,32,40,40,67,39,32,95,50,55,48,41,32,95,
-49,51,51,49,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,
-40,67,39,32,66,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,
-95,49,53,32,95,53,56,41,41,41,41,32,40,40,40,67,39,32,40,67,
-39,32,66,41,41,32,40,40,66,32,40,66,32,40,95,49,53,32,95,53,
-56,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,95,
-49,53,32,95,53,56,41,41,32,40,40,66,32,40,40,95,50,56,53,32,
-95,53,55,41,32,95,56,49,54,41,41,32,95,49,51,51,48,41,41,41,
-32,40,95,51,53,32,95,53,57,41,41,41,41,32,40,40,95,52,52,32,
-95,53,57,41,32,40,85,32,40,40,67,32,40,40,40,67,39,32,67,39,
-41,32,40,40,66,32,40,83,39,32,40,95,49,53,32,95,53,56,41,41,
-41,32,40,40,66,32,40,66,32,40,40,95,50,56,53,32,95,53,55,41,
-32,80,41,41,41,32,40,67,32,40,95,52,52,32,95,53,57,41,41,41,
-41,41,32,40,67,32,40,95,52,52,32,95,53,57,41,41,41,41,32,40,
-40,40,83,39,32,40,95,51,51,32,95,53,57,41,41,32,40,40,95,49,
-51,48,48,32,95,54,55,51,41,32,34,102,117,110,100,101,112,34,41,41,
-32,40,90,32,40,95,51,53,32,95,53,57,41,41,41,41,41,41,41,41,
-41,32,40,40,95,52,52,32,95,53,57,41,32,40,40,83,32,40,40,40,
-67,39,32,67,41,32,40,40,67,32,40,40,67,32,83,39,41,32,40,90,
-32,75,41,41,41,32,40,90,32,75,41,41,41,32,40,40,40,67,39,32,
-66,41,32,40,40,66,32,40,95,50,56,53,32,95,53,55,41,41,32,95,
-56,54,57,41,41,32,40,40,95,49,51,52,56,32,95,54,55,51,41,32,
-40,95,49,51,53,49,32,95,56,55,57,41,41,41,41,41,32,40,95,51,
-53,32,95,53,57,41,41,41,41,41,41,41,41,41,32,40,40,40,83,39,
-32,66,41,32,40,66,39,32,40,66,39,32,40,40,66,32,95,50,55,48,
-41,32,95,49,51,51,49,41,41,41,41,32,40,40,40,67,39,32,40,67,
-39,32,40,67,39,32,66,41,41,41,32,40,40,66,32,40,66,32,40,66,
-32,40,95,49,53,32,95,53,56,41,41,41,41,32,40,40,40,67,39,32,
-40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,40,95,49,53,32,
-95,53,56,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,
-40,95,50,56,53,32,95,53,55,41,41,32,95,56,49,55,41,41,32,95,
-49,51,51,48,41,41,41,32,40,95,49,51,52,54,32,95,56,56,48,41,
-41,41,41,32,40,95,51,53,32,95,53,57,41,41,41,41,41,32,40,40,
-66,32,40,40,95,50,56,53,32,95,53,55,41,32,95,56,49,56,41,41,
-32,40,40,95,52,52,32,95,53,57,41,32,40,95,49,51,52,54,32,95,
-56,55,57,41,41,41,41,41,32,40,95,51,53,32,95,53,57,41,41,41,
-41,32,40,40,65,32,58,49,51,51,48,32,40,40,95,52,52,32,95,53,
-57,41,32,40,95,49,51,52,54,32,95,56,56,48,41,41,41,32,40,40,
-65,32,58,49,51,51,49,32,40,40,67,32,83,41,32,40,40,66,32,40,
-67,32,66,41,41,32,40,40,66,32,40,66,32,40,40,67,39,32,40,67,
-39,32,95,50,55,48,41,41,32,40,95,49,51,49,52,32,95,54,55,51,
-41,41,41,41,32,40,67,32,95,49,51,51,49,41,41,41,41,41,32,40,
-40,65,32,58,49,51,51,50,32,40,85,32,40,40,40,83,39,32,66,41,
-32,40,66,39,32,40,66,39,32,40,40,66,32,95,50,55,48,41,32,95,
-49,51,51,49,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,
-67,39,32,66,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,95,
-49,53,32,95,53,56,41,41,41,41,32,40,40,40,67,39,32,40,67,39,
-32,66,41,41,32,40,40,66,32,40,66,32,40,95,49,53,32,95,53,56,
-41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,95,50,
-56,53,32,95,53,55,41,41,32,95,56,55,53,41,41,32,95,49,51,51,
-48,41,41,41,32,40,95,49,52,32,95,53,56,41,41,41,41,32,40,40,
-95,49,56,54,32,40,40,66,32,40,40,95,50,56,53,32,95,53,55,41,
-32,95,49,56,51,41,41,32,40,40,95,52,52,32,95,53,57,41,32,40,
-85,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,95,50,56,53,
-32,95,53,55,41,41,32,80,41,41,32,40,40,95,49,51,52,56,32,95,
-54,55,51,41,32,40,95,49,51,53,49,32,95,56,55,57,41,41,41,41,
-41,41,41,32,40,40,66,32,40,40,95,50,56,53,32,95,53,55,41,32,
-95,49,56,52,41,41,32,40,40,95,52,52,32,95,53,57,41,32,40,85,
-32,40,40,66,32,85,41,32,40,40,40,67,39,32,40,67,39,32,66,41,
-41,32,40,40,66,32,40,66,32,40,95,50,56,53,32,95,53,55,41,41,
-41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,95,50,55,50,41,
-32,80,41,41,32,80,41,41,41,32,40,40,95,49,51,52,56,32,95,54,
-55,51,41,32,40,95,49,51,53,49,32,95,56,55,57,41,41,41,41,41,
-41,41,41,41,41,41,41,32,40,40,65,32,58,49,51,51,51,32,40,40,
-83,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,
-40,40,40,83,39,32,67,41,32,40,40,40,67,39,32,83,41,32,40,40,
-40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,
-39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,
-83,41,32,40,40,67,32,40,40,67,32,83,39,41,32,40,90,32,75,41,
-41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,40,
-90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,75,41,41,32,40,
-90,32,40,90,32,75,41,41,41,41,32,40,90,32,75,41,41,41,32,40,
-40,66,32,40,66,32,40,40,67,39,32,66,41,32,66,41,41,41,32,40,
-40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,40,
-95,51,51,32,95,53,57,41,32,40,95,54,53,32,95,49,50,51,51,41,
-41,41,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,
-39,32,40,83,39,32,40,67,39,32,40,67,39,32,67,41,41,41,41,41,
-41,32,40,40,66,32,40,40,67,39,32,40,67,39,32,66,41,41,32,40,
-40,66,32,40,66,32,40,83,39,32,40,83,39,32,40,83,39,32,40,83,
-39,32,40,95,51,52,32,95,53,57,41,41,41,41,41,41,41,32,40,40,
-66,32,40,66,32,40,40,67,39,32,66,41,32,40,40,66,32,40,67,39,
-32,66,41,41,32,40,40,66,32,40,66,32,95,49,50,53,54,41,41,32,
-40,67,32,40,95,57,56,55,32,95,54,55,51,41,41,41,41,41,41,41,
-32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,83,39,32,40,67,
-39,32,67,41,41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,
-32,40,40,66,32,40,66,32,67,41,41,32,40,40,40,67,39,32,40,67,
-39,32,67,41,41,32,40,67,32,80,41,41,32,40,95,56,51,56,32,35,
-48,41,41,41,41,32,40,95,52,49,50,32,40,40,67,32,40,40,40,67,
-39,32,67,41,32,40,40,67,32,40,40,67,32,83,39,41,32,40,90,32,
-75,41,41,41,32,40,90,32,75,41,41,41,32,75,41,41,32,40,40,40,
-110,111,77,97,116,99,104,32,34,115,114,99,47,77,105,99,114,111,72,115,
-47,84,121,112,101,67,104,101,99,107,46,104,115,34,41,32,35,49,50,48,
-51,41,32,35,50,53,41,41,41,41,41,41,32,40,40,67,39,32,95,49,
-51,51,52,41,32,40,95,52,49,50,32,95,56,55,56,41,41,41,41,41,
-41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
-66,32,40,95,50,55,48,32,40,95,51,53,32,95,53,57,41,41,41,41,
-41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,66,39,32,40,66,
-39,32,40,66,39,32,40,66,39,32,95,52,56,49,41,41,41,41,41,32,
-40,40,66,32,40,66,32,40,66,32,40,66,32,95,52,49,49,41,41,41,
-41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,
-67,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,
-40,67,39,32,67,41,32,40,40,67,32,40,40,67,32,83,39,41,32,40,
-90,32,75,41,41,41,32,40,90,32,75,41,41,41,41,41,41,41,32,40,
-40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,83,39,
-32,67,41,41,41,41,41,32,40,40,66,32,40,40,83,39,32,40,67,39,
-32,40,67,39,32,66,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
-40,67,39,32,40,83,39,32,79,41,41,41,41,41,32,40,40,66,32,40,
-66,32,40,66,32,40,66,32,40,40,67,39,32,95,50,55,48,41,32,95,
-56,49,50,41,41,41,41,41,32,40,40,66,32,40,40,83,39,32,66,41,
-32,40,66,39,32,40,40,66,32,95,50,55,48,41,32,95,56,52,48,41,
-41,41,41,32,40,40,66,32,40,66,32,40,66,32,95,49,50,56,49,41,
-41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,67,39,32,
-95,49,50,55,57,41,41,32,40,67,32,40,95,57,56,55,32,95,54,55,
-51,41,41,41,41,32,40,95,52,49,50,32,40,40,95,50,55,50,32,95,
-56,50,51,41,32,95,56,55,56,41,41,41,41,41,41,41,41,41,32,40,
-40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,79,41,41,
-41,41,32,40,40,66,32,40,40,67,39,32,40,83,39,32,40,67,39,32,
-95,50,55,48,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,83,
-39,32,80,41,41,41,32,40,40,66,32,40,66,32,40,67,32,95,56,49,
-49,41,41,41,32,40,40,40,67,39,32,40,67,39,32,79,41,41,32,40,
-40,66,32,40,66,32,40,95,50,55,48,32,40,95,56,55,48,32,95,52,
-56,48,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,95,56,55,
-49,41,41,32,40,40,40,67,39,32,40,67,39,32,79,41,41,32,40,40,
-66,32,40,66,32,40,80,32,95,52,56,48,41,41,41,32,40,40,66,32,
-40,66,32,40,95,56,50,52,32,95,49,51,51,53,41,41,41,32,40,40,
-66,32,40,66,32,40,95,56,50,55,32,95,57,55,55,41,41,41,32,40,
-40,66,32,40,66,32,95,56,54,48,41,41,32,40,40,40,67,39,32,66,
-41,32,40,40,66,32,95,52,56,50,41,32,95,57,56,50,41,41,32,40,
-40,66,32,40,95,52,56,50,32,40,40,79,32,35,52,54,41,32,75,41,
-41,41,32,95,57,56,50,41,41,41,41,41,41,41,32,75,41,41,32,95,
-52,56,48,41,41,41,32,75,41,41,41,32,95,56,49,49,41,41,41,32,
-40,40,66,32,40,67,32,40,95,52,53,53,32,95,57,55,52,41,41,41,
-32,40,95,52,49,49,32,40,40,67,32,40,40,80,32,40,40,40,67,39,
-32,40,67,39,32,79,41,41,32,80,41,32,75,41,41,32,40,75,32,40,
-75,32,75,41,41,41,41,32,40,75,32,40,75,32,75,41,41,41,41,41,
-41,41,32,75,41,41,41,32,95,49,51,51,54,41,41,41,32,40,95,49,
-51,57,57,32,95,54,55,51,41,41,41,41,41,41,41,32,40,95,52,49,
-49,32,40,40,83,32,40,40,80,32,40,75,32,40,75,32,75,41,41,41,
-32,40,75,32,40,75,32,75,41,41,41,41,32,40,90,32,40,90,32,40,
-40,67,32,79,41,32,75,41,41,41,41,41,41,41,41,41,41,32,40,90,
-32,40,90,32,40,90,32,75,41,41,41,41,41,32,75,41,41,32,40,40,
-66,32,40,95,51,53,32,95,53,57,41,41,32,40,40,67,32,79,41,32,
-75,41,41,41,41,32,40,40,65,32,58,49,51,51,52,32,40,40,66,32,
-95,52,49,50,41,32,40,40,66,32,85,41,32,40,40,40,83,39,32,40,
-67,39,32,66,41,41,32,40,40,66,32,40,66,32,80,41,41,32,40,40,
-67,39,32,95,52,49,50,41,32,40,67,32,40,95,52,53,49,32,95,57,
-55,52,41,41,41,41,41,32,40,40,67,39,32,95,52,49,50,41,32,40,
-67,32,40,95,52,53,49,32,95,57,55,52,41,41,41,41,41,41,41,32,
-40,40,65,32,58,49,51,51,53,32,40,40,95,50,55,48,32,40,95,56,
-50,55,32,95,57,55,55,41,41,32,40,95,56,54,49,32,34,110,111,68,
-101,102,97,117,108,116,34,41,41,41,32,40,40,65,32,58,49,51,51,54,
-32,40,40,67,32,95,57,56,56,41,32,34,36,100,102,108,116,34,41,41,
-32,40,40,65,32,58,49,51,51,55,32,40,40,83,32,83,41,32,40,40,
-66,32,90,41,32,40,40,66,32,90,41,32,40,40,66,32,95,49,50,56,
-49,41,32,95,49,51,51,56,41,41,41,41,41,32,40,40,65,32,58,49,
-51,51,56,32,40,40,83,32,40,85,32,40,95,50,53,32,34,116,117,112,
-108,101,67,111,110,115,116,114,97,105,110,116,115,34,41,41,41,32,40,40,
-66,32,40,67,32,80,41,41,32,40,90,32,40,90,32,40,40,40,83,39,
-32,95,49,50,55,57,41,32,40,40,66,32,40,95,56,56,49,32,95,57,
-55,55,41,41,32,95,52,50,56,41,41,32,73,41,41,41,41,41,41,32,
-40,40,65,32,58,49,51,51,57,32,40,40,83,32,40,40,40,67,39,32,
-83,41,32,40,40,40,83,39,32,67,41,32,40,40,40,67,39,32,83,41,
-32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,
-40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,
-67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,67,32,40,
-40,67,32,83,39,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,
-41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,40,
-90,32,75,41,41,41,32,75,41,41,32,40,90,32,40,90,32,75,41,41,
-41,41,32,40,90,32,75,41,41,41,32,40,90,32,40,90,32,40,90,32,
-75,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,
-32,40,83,39,32,67,41,41,41,41,32,40,40,40,67,39,32,40,67,39,
-32,40,67,39,32,40,83,39,32,40,67,39,32,40,67,39,32,40,40,83,
-39,32,40,95,51,51,32,95,53,57,41,41,32,40,40,67,32,95,49,50,
-57,57,41,32,34,105,110,115,116,34,41,41,41,41,41,41,41,41,32,40,
-40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
-32,40,66,32,40,40,95,51,51,32,95,53,57,41,32,40,95,54,53,32,
-95,49,50,51,52,41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,
-40,66,32,40,66,32,40,66,32,40,66,32,40,40,83,39,32,40,83,39,
-32,66,41,41,32,40,40,66,32,40,66,32,40,67,39,32,40,95,51,51,
-32,95,53,57,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,67,
-41,41,32,40,40,40,83,39,32,66,41,32,40,40,66,32,67,41,32,95,
-49,48,49,48,41,41,32,40,40,66,32,40,40,67,39,32,95,50,55,48,
-41,32,40,95,49,49,56,51,32,95,54,55,51,41,41,41,32,40,40,66,
-32,40,95,52,56,50,32,34,110,111,116,32,97,32,99,108,97,115,115,32,
-34,41,41,32,95,57,56,52,41,41,41,41,32,40,95,51,53,32,95,53,
-57,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,
-32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,85,41,41,41,
-41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,
-66,32,40,66,32,40,66,32,90,41,41,41,41,41,41,41,32,40,40,66,
-32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
-66,32,90,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,
-66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
-40,66,32,40,66,32,40,40,95,51,51,32,95,53,57,41,32,40,95,54,
-53,32,95,49,50,51,51,41,41,41,41,41,41,41,41,41,41,41,41,41,
-32,40,40,66,32,40,40,83,39,32,40,83,39,32,40,83,39,32,66,41,
-41,41,32,40,40,66,32,40,66,32,66,39,41,41,32,40,40,66,32,40,
-66,32,66,39,41,41,32,40,40,66,32,40,66,32,40,66,32,40,83,39,
-32,66,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,66,39,41,
-41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,67,39,32,
-40,67,39,32,40,95,51,52,32,95,53,57,41,41,41,41,41,41,41,32,
-40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,95,
-49,50,53,55,41,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,
-32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,79,41,41,
-41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,67,
-39,32,67,41,41,41,41,41,32,40,40,66,32,40,66,32,40,67,39,32,
-40,67,39,32,67,41,41,41,41,32,40,40,66,32,40,67,39,32,40,67,
-39,32,67,41,41,41,32,40,40,67,39,32,40,67,39,32,80,41,41,32,
-40,40,66,32,40,66,32,40,95,50,55,48,32,95,56,50,51,41,41,41,
-32,40,67,32,40,95,57,56,55,32,95,54,55,51,41,41,41,41,41,41,
-41,41,32,75,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,
-32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
-66,32,40,66,32,40,95,51,53,32,95,53,57,41,41,41,41,41,41,41,
-41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,66,39,32,40,66,
-39,32,40,66,39,32,40,66,39,32,40,66,39,32,40,66,39,32,40,66,
-39,32,40,66,39,32,79,41,41,41,41,41,41,41,41,41,32,40,40,40,
-67,39,32,40,67,39,32,40,67,39,32,66,41,41,41,32,40,40,66,32,
-40,66,32,66,39,41,41,32,40,40,66,32,40,66,32,66,39,41,41,32,
-40,40,66,32,40,66,32,40,66,32,40,83,39,32,66,41,41,41,41,32,
-40,40,66,32,40,66,32,40,66,32,66,39,41,41,41,32,40,40,66,32,
-40,66,32,40,66,32,40,66,32,79,41,41,41,41,32,40,40,66,32,40,
-66,32,40,66,32,40,67,32,95,56,49,50,41,41,41,41,32,40,40,40,
-67,39,32,66,41,32,40,66,39,32,40,40,66,32,95,50,55,48,41,32,
-95,49,51,52,48,41,41,41,32,95,49,51,51,55,41,41,41,41,41,41,
-41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,
-32,40,67,39,32,40,67,39,32,79,41,41,41,41,41,41,32,40,40,66,
-32,40,66,32,40,66,32,40,40,67,39,32,66,41,32,40,66,39,32,40,
-40,66,32,95,50,55,48,41,32,95,56,49,49,41,41,41,41,41,41,32,
-40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,95,50,55,
-48,32,40,95,56,52,50,32,95,52,56,48,41,41,41,41,41,41,41,32,
-40,40,66,32,40,40,67,39,32,66,41,32,40,66,39,32,40,66,39,32,
-40,40,66,32,40,95,52,49,54,32,95,56,50,52,41,41,32,40,40,66,
-32,40,95,50,55,48,32,95,56,50,51,41,41,32,95,49,51,52,52,41,
-41,41,41,41,41,32,40,40,66,32,40,40,83,39,32,40,67,39,32,66,
-41,41,32,40,40,66,32,40,66,32,95,52,56,50,41,41,32,40,40,66,
-32,95,52,49,50,41,32,40,40,66,32,95,50,55,52,41,32,40,40,66,
-32,40,95,50,55,48,32,95,56,50,51,41,41,32,40,40,67,32,95,57,
-56,48,41,32,95,49,51,55,48,41,41,41,41,41,41,41,32,40,40,66,
-32,40,66,32,95,52,49,50,41,41,32,40,40,66,32,40,40,67,39,32,
-40,83,39,32,95,50,55,48,41,41,32,40,40,66,32,40,66,32,95,52,
-57,51,41,41,32,40,40,66,32,40,66,32,40,95,50,55,48,32,95,56,
-50,51,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,95,
-50,55,48,41,32,95,57,56,51,41,41,32,95,49,51,51,54,41,41,41,
-41,41,32,40,40,66,32,40,67,32,40,95,52,53,53,32,95,57,55,52,
-41,41,41,32,40,95,52,49,49,32,40,40,67,32,40,40,80,32,40,40,
-40,67,39,32,40,67,39,32,79,41,41,32,40,40,40,67,39,32,66,41,
-32,80,41,32,95,56,50,54,41,41,32,75,41,41,32,40,75,32,40,75,
-32,75,41,41,41,41,32,40,75,32,40,75,32,75,41,41,41,41,41,41,
-41,41,41,41,41,41,32,75,41,41,41,41,41,41,41,41,41,41,41,41,
-32,40,95,56,56,53,32,95,56,56,56,41,41,41,32,95,49,50,49,54,
-41,41,41,32,75,41,41,32,40,40,66,32,40,95,51,53,32,95,53,57,
-41,41,32,40,40,67,32,79,41,32,75,41,41,41,41,32,40,40,65,32,
-58,49,51,52,48,32,40,40,83,32,83,41,32,40,40,66,32,90,41,32,
-40,40,66,32,90,41,32,95,56,52,48,41,41,41,41,32,40,40,65,32,
-58,49,51,52,49,32,40,40,40,83,39,32,40,95,51,52,32,95,53,57,
-41,41,32,40,40,95,52,53,32,95,53,57,41,32,95,49,51,52,50,41,
-41,32,40,40,95,52,52,32,95,53,57,41,32,40,40,66,32,40,40,95,
-51,52,32,95,53,57,41,32,95,49,50,57,53,41,41,32,40,95,49,51,
-52,53,32,95,54,55,51,41,41,41,41,41,32,40,40,65,32,58,49,51,
-52,50,32,40,40,66,32,40,40,95,51,51,32,95,53,57,41,32,40,95,
-54,53,32,95,49,50,51,51,41,41,41,32,40,40,40,67,39,32,67,41,
-32,40,40,40,67,39,32,40,67,39,32,83,41,41,32,40,40,40,67,39,
-32,40,67,39,32,83,41,41,32,40,40,40,67,39,32,40,67,39,32,67,
-41,41,32,40,40,40,67,39,32,40,67,39,32,83,41,41,32,40,40,40,
-67,39,32,40,67,39,32,67,41,41,32,40,40,40,67,39,32,40,67,39,
-32,83,41,41,32,40,40,40,67,39,32,40,67,39,32,67,41,41,32,40,
-40,40,67,39,32,67,41,32,40,40,40,67,39,32,40,67,39,32,83,39,
-41,41,32,40,40,67,32,40,40,67,32,83,39,41,32,40,40,66,32,40,
-67,32,66,41,41,32,40,40,40,67,39,32,40,83,39,32,40,67,39,32,
-40,67,39,32,40,95,52,53,32,95,53,57,41,41,41,41,41,32,40,40,
-66,32,40,66,32,40,66,32,40,66,32,85,41,41,41,41,32,40,40,40,
-83,39,32,66,41,32,40,40,66,32,40,67,39,32,40,67,39,32,40,67,
-39,32,40,67,39,32,83,41,41,41,41,41,32,40,40,66,32,40,66,32,
-40,66,32,40,66,32,40,66,32,40,40,67,39,32,67,39,41,32,40,95,
-49,51,48,54,32,95,54,55,51,41,41,41,41,41,41,41,32,40,40,66,
-32,40,66,32,40,40,83,39,32,66,41,32,40,66,39,32,40,66,39,32,
-40,40,66,32,95,50,55,48,41,32,95,56,52,48,41,41,41,41,41,41,
-32,40,40,66,32,40,66,32,40,66,32,40,40,67,39,32,66,41,32,40,
-66,39,32,40,40,66,32,95,50,55,48,41,32,95,56,52,48,41,41,41,
-41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,40,67,39,32,66,
-41,32,40,40,66,32,95,50,55,48,41,32,95,49,51,51,55,41,41,41,
-41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,66,41,41,
-41,32,40,40,66,32,40,66,32,40,66,32,40,95,52,49,52,32,40,40,
-95,50,55,50,32,95,49,50,56,48,41,32,95,53,57,57,41,41,41,41,
-41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,66,32,
-40,66,32,40,95,52,49,54,32,95,49,50,55,56,41,41,41,32,40,40,
-66,32,40,66,32,95,49,50,55,54,41,41,32,40,95,57,56,55,32,95,
-54,55,51,41,41,41,41,32,40,95,52,49,50,32,95,49,50,55,55,41,
-41,41,41,32,40,40,95,49,56,54,32,95,50,55,51,41,32,40,95,52,
-49,50,32,95,53,57,57,41,41,41,41,41,41,41,41,41,32,40,40,66,
-32,40,66,32,40,66,32,40,95,50,55,48,32,95,56,51,57,41,41,41,
-41,32,40,40,40,83,39,32,40,67,39,32,66,41,41,32,40,40,66,32,
-40,66,32,95,56,52,51,41,41,32,40,40,66,32,95,52,49,49,41,32,
-40,40,66,32,85,41,32,40,90,32,40,40,40,67,39,32,40,67,39,32,
-40,67,39,32,40,67,39,32,79,41,41,41,41,32,40,40,40,67,39,32,
-66,41,32,40,40,66,32,40,67,39,32,66,41,41,32,40,40,66,32,40,
-66,32,80,41,41,32,40,95,57,56,55,32,95,54,55,51,41,41,41,41,
-32,40,40,66,32,40,40,67,39,32,40,95,53,48,57,32,95,50,57,49,
-41,41,32,40,40,95,49,56,54,32,95,52,50,56,41,32,95,52,50,56,
-41,41,41,32,40,40,67,32,40,40,67,32,95,52,48,57,41,32,35,49,
-41,41,32,35,48,41,41,41,41,32,75,41,41,41,41,41,41,32,40,95,
-57,56,55,32,95,54,55,51,41,41,41,41,41,41,32,73,41,41,41,41,
-32,40,40,66,32,40,67,32,66,41,41,32,40,40,66,32,40,40,67,39,
-32,66,41,32,66,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,
-40,66,32,40,66,32,90,41,41,32,40,40,40,83,39,32,40,67,39,32,
-40,67,39,32,83,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,
-40,67,39,32,67,39,41,32,40,95,49,51,48,54,32,95,54,55,51,41,
-41,41,41,41,32,40,40,66,32,40,66,32,40,40,83,39,32,66,41,32,
-40,40,66,32,95,50,55,48,41,32,95,56,52,48,41,41,41,41,32,40,
-40,66,32,40,66,32,40,66,32,40,66,32,40,95,50,55,48,32,40,95,
-56,52,48,32,95,52,56,48,41,41,41,41,41,41,32,40,40,66,32,40,
-66,32,40,66,32,40,40,67,39,32,95,49,50,56,48,41,32,40,40,66,
-32,40,95,50,55,48,32,95,53,57,57,41,41,32,40,40,66,32,40,95,
-50,55,48,32,95,52,52,55,41,41,32,40,40,95,49,56,54,32,95,50,
-55,51,41,32,40,95,52,49,50,32,95,53,57,57,41,41,41,41,41,41,
-41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,66,
-32,40,66,32,40,95,52,49,54,32,95,49,50,55,56,41,41,41,32,40,
-40,66,32,40,66,32,95,49,50,55,54,41,41,32,40,95,57,56,55,32,
-95,54,55,51,41,41,41,41,32,40,95,52,49,50,32,95,49,50,55,55,
-41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,95,50,55,48,
-32,95,56,51,57,41,41,41,32,40,40,66,32,40,66,32,95,56,52,52,
-41,41,32,40,95,57,56,55,32,95,54,55,51,41,41,41,41,41,41,41,
-41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,
-40,95,49,51,48,55,32,95,54,55,51,41,41,41,32,75,41,41,32,40,
-75,32,40,95,49,51,48,55,32,95,54,55,51,41,41,41,41,32,40,90,
-32,75,41,41,41,32,40,40,66,32,40,40,67,39,32,66,41,32,66,41,
-41,32,40,40,66,32,40,66,32,40,67,39,32,67,41,41,41,32,40,40,
-66,32,40,67,39,32,67,41,41,32,95,49,51,52,51,41,41,41,41,41,
-32,40,90,32,40,90,32,40,90,32,75,41,41,41,41,41,32,75,41,41,
-32,40,40,95,51,53,32,95,53,57,41,32,95,49,52,53,48,41,41,41,
-41,32,40,40,65,32,58,49,51,52,51,32,40,40,66,32,40,66,32,40,
-66,32,40,66,32,40,66,32,40,40,95,51,51,32,95,53,57,41,32,40,
-95,54,53,32,95,49,50,51,51,41,41,41,41,41,41,41,32,40,40,40,
-67,39,32,40,83,39,32,40,67,39,32,40,67,39,32,40,67,39,32,83,
-41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,
-40,67,39,32,66,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
-40,66,32,40,67,39,32,67,41,41,41,41,41,32,40,40,40,83,39,32,
-40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,
-83,41,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,83,
-39,32,40,67,39,32,40,67,39,32,40,83,39,32,40,67,39,32,83,41,
-41,41,41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,
-40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,
-40,67,39,32,67,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,
-40,66,32,40,40,83,39,32,66,41,32,40,66,39,32,40,40,66,32,40,
-67,39,32,40,83,39,32,40,67,39,32,40,95,51,52,32,95,53,57,41,
-41,41,41,41,32,40,40,66,32,40,66,32,40,40,67,39,32,83,41,32,
-40,67,32,40,95,49,51,48,54,32,95,54,55,51,41,41,41,41,41,32,
-40,40,66,32,40,66,32,40,66,32,40,95,50,55,48,32,95,56,51,57,
-41,41,41,41,32,40,40,40,83,39,32,40,67,39,32,40,83,39,32,95,
-56,52,51,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,
-32,79,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,
-67,39,32,80,41,41,32,40,95,57,56,55,32,95,54,55,51,41,41,41,
-32,95,52,50,56,41,41,32,75,41,41,32,40,95,57,56,55,32,95,54,
-55,51,41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,40,83,
-39,32,66,41,32,40,40,66,32,40,67,39,32,40,83,39,32,40,83,39,
-32,66,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,
-40,95,51,52,32,95,53,57,41,41,41,41,41,32,40,40,66,32,40,66,
-32,40,66,32,40,95,52,53,32,95,53,57,41,41,41,41,32,40,40,40,
-67,39,32,40,67,39,32,40,67,39,32,67,41,41,41,32,40,40,66,32,
-40,66,32,40,66,32,40,40,67,39,32,67,41,32,40,40,67,32,40,40,
-67,32,83,39,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,
-41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,67,
-39,32,83,41,41,32,40,40,66,32,40,66,32,40,40,67,39,32,67,39,
-41,32,40,95,49,51,48,54,32,95,54,55,51,41,41,41,41,32,40,40,
-40,83,39,32,66,41,32,40,66,39,32,40,40,66,32,95,50,55,48,41,
-32,95,56,52,48,41,41,41,32,40,40,66,32,40,66,32,95,49,50,56,
-49,41,41,32,40,40,66,32,40,67,32,95,49,50,55,57,41,41,32,40,
-95,52,49,50,32,40,40,95,50,55,50,32,95,56,50,51,41,32,95,56,
-55,56,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,95,
-50,55,48,32,95,56,50,51,41,41,41,32,40,95,57,56,55,32,95,54,
-55,51,41,41,41,41,41,32,40,95,49,51,57,57,32,95,54,55,51,41,
-41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,40,67,
-39,32,66,41,32,40,66,39,32,95,49,50,53,54,41,41,41,41,41,32,
-40,40,40,67,39,32,40,83,39,32,66,41,41,32,40,40,66,32,40,66,
-32,40,67,39,32,40,67,39,32,67,41,41,41,41,32,40,40,40,67,39,
-32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,40,67,39,32,
-67,41,41,41,32,40,40,66,32,40,66,32,67,41,41,32,40,67,32,80,
-41,41,41,41,32,40,95,52,49,50,32,40,40,67,32,40,40,40,67,39,
-32,67,41,32,40,40,67,32,40,40,67,32,83,39,41,32,40,90,32,75,
-41,41,41,32,40,90,32,75,41,41,41,32,75,41,41,32,40,40,40,110,
-111,77,97,116,99,104,32,34,115,114,99,47,77,105,99,114,111,72,115,47,
-84,121,112,101,67,104,101,99,107,46,104,115,34,41,32,35,49,51,49,54,
-41,32,35,50,53,41,41,41,41,41,41,32,40,40,66,32,95,49,51,51,
-52,41,32,40,95,52,49,50,32,95,56,55,56,41,41,41,41,41,41,41,
-41,32,95,49,51,52,52,41,41,32,40,40,40,83,39,32,66,41,32,40,
-66,39,32,40,40,66,32,95,50,55,48,41,32,95,56,52,48,41,41,41,
-32,40,40,66,32,40,66,32,40,95,52,49,52,32,95,49,50,56,48,41,
-41,41,32,40,40,66,32,40,67,32,95,49,50,55,57,41,41,32,40,95,
-52,49,50,32,95,49,50,55,55,41,41,41,41,41,41,32,40,40,40,67,
-39,32,66,41,32,95,52,56,50,41,32,40,95,52,49,50,32,40,40,67,
-32,40,40,40,67,39,32,67,41,32,40,40,67,32,40,40,67,32,83,39,
-41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,65,41,
-41,32,40,40,40,110,111,77,97,116,99,104,32,34,115,114,99,47,77,105,
-99,114,111,72,115,47,84,121,112,101,67,104,101,99,107,46,104,115,34,41,
-32,35,49,51,49,53,41,32,35,50,53,41,41,41,41,41,41,41,32,40,
-95,52,49,49,32,40,40,83,32,40,40,80,32,40,75,32,40,75,32,75,
-41,41,41,32,40,75,32,40,75,32,75,41,41,41,41,32,40,90,32,40,
-90,32,40,40,67,32,79,41,32,75,41,41,41,41,41,41,41,32,40,67,
-32,40,95,57,56,55,32,95,54,55,51,41,41,41,41,41,32,40,40,65,
-32,58,49,51,52,52,32,40,40,67,32,95,57,56,56,41,32,34,36,67,
-34,41,41,32,40,40,65,32,58,49,51,52,53,32,40,40,40,67,39,32,
-83,41,32,40,40,40,67,39,32,40,67,39,32,83,41,41,32,40,40,40,
-67,39,32,40,67,39,32,83,41,41,32,40,40,40,67,39,32,40,67,39,
-32,83,41,41,32,40,40,40,67,39,32,40,67,39,32,83,41,41,32,40,
-40,40,83,39,32,40,67,39,32,67,41,41,32,40,40,40,67,39,32,40,
-67,39,32,83,41,41,32,40,40,40,67,39,32,40,67,39,32,83,41,41,
-32,40,40,66,32,40,40,67,39,32,67,41,32,40,40,40,67,39,32,83,
-41,32,40,40,67,32,40,40,67,32,83,39,41,32,40,90,32,75,41,41,
-41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,41,32,40,
-40,40,83,39,32,40,83,39,32,66,41,41,32,40,40,66,32,40,66,32,
-40,95,51,51,32,95,53,57,41,41,41,32,40,40,67,32,95,49,51,48,
-48,41,32,34,116,121,112,101,32,115,105,103,110,97,116,117,114,101,34,41,
-41,41,32,40,40,66,32,40,66,32,40,66,32,85,41,41,41,32,40,40,
-66,32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,40,66,32,40,
-66,32,40,40,95,51,51,32,95,53,57,41,32,40,95,54,53,32,95,49,
-50,51,51,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,40,67,
-39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,40,95,51,
-51,32,95,53,57,41,41,41,32,40,67,32,40,95,49,51,55,51,32,95,
-49,50,54,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
-40,66,32,40,40,95,51,52,32,95,53,57,41,32,95,49,52,51,52,41,
-41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,95,
-50,55,48,32,40,95,51,53,32,95,53,57,41,41,41,41,41,41,32,40,
-40,66,32,40,66,32,40,66,32,95,56,49,49,41,41,41,32,40,40,66,
-32,67,41,32,95,57,56,55,41,41,41,41,41,41,41,41,41,41,41,32,
-40,90,32,75,41,41,41,32,75,41,41,32,40,40,66,32,40,66,32,40,
-66,32,40,66,32,40,40,95,51,51,32,95,53,57,41,32,40,95,54,53,
-32,95,49,50,51,51,41,41,41,41,41,41,32,40,40,66,32,40,66,32,
-40,66,32,40,66,32,40,66,32,40,95,51,53,32,95,53,57,41,41,41,
-41,41,41,32,40,40,66,32,40,40,67,39,32,66,41,32,40,40,66,32,
-67,39,41,32,95,56,49,52,41,41,41,32,40,40,66,32,67,41,32,95,
-57,56,55,41,41,41,41,41,41,32,40,90,32,75,41,41,41,32,40,90,
-32,40,90,32,40,90,32,75,41,41,41,41,41,32,40,90,32,40,90,32,
-40,90,32,75,41,41,41,41,41,32,75,41,41,32,40,95,51,53,32,95,
-53,57,41,41,41,32,40,40,65,32,58,49,51,52,54,32,40,95,49,51,
-53,51,32,40,95,49,51,52,56,32,95,54,55,51,41,41,41,32,40,40,
-65,32,58,49,51,52,55,32,40,40,66,32,40,40,95,50,56,53,32,95,
-53,55,41,32,95,53,57,56,41,41,32,40,40,95,49,51,53,50,32,95,
-54,55,51,41,32,40,95,49,51,52,56,32,95,54,55,51,41,41,41,41,
-32,40,40,65,32,58,49,51,52,56,32,40,40,66,32,40,66,32,40,66,
-32,40,95,49,50,53,51,32,95,49,50,50,54,41,41,41,41,32,40,40,
-40,67,39,32,40,67,39,32,66,41,41,32,95,49,51,53,57,41,32,95,
-49,51,57,52,41,41,41,32,40,40,65,32,58,49,51,52,57,32,40,40,
-66,32,40,66,32,40,95,50,55,50,32,95,49,50,53,52,41,41,41,32,
-95,49,51,52,56,41,41,32,40,40,65,32,58,49,51,53,48,32,40,40,
-66,32,90,41,32,85,41,41,32,40,40,65,32,58,49,51,53,49,32,40,
-90,32,85,41,41,32,40,40,65,32,58,49,51,53,50,32,40,40,66,32,
-40,66,32,40,66,32,40,40,95,51,51,32,95,53,57,41,32,95,49,50,
-57,55,41,41,41,41,32,40,40,66,32,40,40,67,39,32,40,67,39,32,
-40,83,39,32,40,95,51,51,32,95,53,57,41,41,41,41,32,40,40,67,
-32,67,39,41,32,95,49,51,53,48,41,41,41,32,40,40,40,67,39,32,
-40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,40,95,51,51,32,
-95,53,57,41,41,41,32,95,49,51,53,54,41,41,32,40,40,66,32,40,
-66,32,40,95,51,53,32,95,53,57,41,41,41,32,80,41,41,41,41,41,
-32,40,40,65,32,58,49,51,53,51,32,40,40,67,32,66,41,32,95,49,
-51,53,49,41,41,32,40,40,65,32,58,49,51,53,52,32,40,40,83,32,
-95,49,51,53,50,41,32,95,49,51,53,57,41,41,32,40,40,65,32,58,
-49,51,53,53,32,40,40,66,32,89,41,32,40,40,40,83,39,32,66,41,
-32,40,40,66,32,67,41,32,40,40,66,32,40,40,83,39,32,83,39,41,
-32,95,49,50,56,52,41,41,32,40,40,66,32,95,49,51,53,51,41,32,
-95,49,51,53,57,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
-85,41,41,41,32,40,40,66,32,40,66,32,40,40,83,39,32,66,41,32,
-40,66,39,32,40,40,66,32,40,95,51,51,32,95,53,57,41,41,32,40,
-40,66,32,95,49,51,54,56,41,32,40,95,56,56,53,32,95,56,56,56,
-41,41,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,
-39,32,40,67,39,32,40,67,39,32,40,83,39,32,40,95,51,51,32,95,
-53,57,41,41,41,41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,
-66,39,32,40,40,66,32,40,67,39,32,66,41,41,32,40,40,66,32,40,
-66,32,40,67,39,32,95,50,55,48,41,41,41,32,40,40,66,32,67,41,
-32,95,49,50,54,48,41,41,41,41,41,32,67,41,41,32,40,40,66,32,
-40,66,32,40,95,50,55,48,32,40,95,51,53,32,95,53,57,41,41,41,
-41,32,40,40,66,32,95,56,52,49,41,32,40,40,40,67,39,32,79,41,
-32,95,56,50,51,41,32,75,41,41,41,41,41,41,41,41,41,32,40,40,
-65,32,58,49,51,53,54,32,40,75,32,40,40,66,32,40,40,95,51,51,
-32,95,53,57,41,32,40,95,54,53,32,95,49,50,51,50,41,41,41,32,
-40,40,40,67,39,32,67,41,32,40,40,40,83,39,32,67,41,32,95,51,
-48,53,41,32,40,40,66,32,40,95,51,53,32,95,53,57,41,41,32,95,
-56,51,56,41,41,41,32,40,95,51,53,32,95,53,57,41,41,41,41,41,
-32,40,40,65,32,58,49,51,53,55,32,40,40,66,32,40,66,32,40,66,
-32,40,66,32,40,40,95,51,51,32,95,53,57,41,32,40,95,54,53,32,
-95,49,50,51,50,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,
-40,67,39,32,40,83,39,32,67,41,41,32,40,40,40,83,39,32,66,41,
-32,40,40,66,32,83,41,32,95,51,48,53,41,41,32,40,40,66,32,40,
-66,32,40,66,32,95,49,50,52,53,41,41,41,32,95,51,48,54,41,41,
-41,41,41,32,40,40,66,32,40,66,32,67,41,41,32,95,49,50,57,49,
-41,41,41,41,32,40,40,65,32,58,49,51,53,56,32,40,40,80,32,40,
-95,49,51,53,54,32,95,54,55,51,41,41,32,40,95,51,53,32,95,53,
-57,41,41,41,32,40,40,65,32,58,49,51,53,57,32,40,40,40,67,39,
-32,40,67,39,32,40,67,39,32,40,95,51,51,32,95,53,57,41,41,41,
-41,32,95,49,51,54,48,41,32,40,95,51,53,32,95,53,57,41,41,41,
-32,40,40,65,32,58,49,51,54,48,32,40,40,40,67,39,32,40,67,39,
-32,83,41,41,32,40,40,40,67,39,32,40,67,39,32,40,83,39,32,67,
-41,41,41,32,40,40,40,83,39,32,40,83,39,32,40,67,39,32,40,67,
-39,32,67,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,
-39,32,40,67,39,32,83,41,41,41,41,32,40,40,40,67,39,32,40,67,
-39,32,40,67,39,32,67,41,41,41,32,40,40,40,67,39,32,40,67,39,
-32,40,67,39,32,40,67,39,32,83,39,41,41,41,41,32,40,40,40,83,
-39,32,40,83,39,32,40,67,39,32,83,41,41,41,32,40,40,40,83,39,
-32,40,83,39,32,40,67,39,32,83,41,41,41,32,40,40,40,83,39,32,
-40,83,39,32,40,67,39,32,83,41,41,41,32,40,40,40,83,39,32,40,
-83,39,32,40,67,39,32,67,41,41,41,32,40,40,40,83,39,32,40,83,
-39,32,40,67,39,32,83,41,41,41,32,40,40,40,83,39,32,40,83,39,
-32,40,67,39,32,83,41,41,41,32,40,40,40,83,39,32,40,83,39,32,
-40,67,39,32,83,41,41,41,32,40,40,40,83,39,32,40,83,39,32,40,
-67,39,32,67,41,41,41,32,40,40,40,83,39,32,40,83,39,32,40,67,
-39,32,67,41,41,41,32,40,40,40,83,39,32,40,83,39,32,40,83,39,
-32,83,41,41,41,32,40,40,40,67,39,32,40,83,39,32,40,67,39,32,
-67,41,41,41,32,40,40,40,83,39,32,40,83,39,32,40,67,39,32,67,
-41,41,41,32,40,40,40,83,39,32,40,83,39,32,67,41,41,32,40,40,
-66,32,40,66,32,40,83,32,83,39,41,41,41,32,40,40,40,83,39,32,
-40,83,39,32,40,67,39,32,40,67,39,32,83,41,41,41,41,32,40,40,
-66,32,40,66,32,40,66,32,40,66,32,40,83,32,40,95,57,56,54,32,
-95,49,51,55,48,41,41,41,41,41,41,32,40,40,40,83,39,32,40,67,
-39,32,66,41,41,32,40,40,66,32,40,66,32,40,67,39,32,67,41,41,
-41,32,40,40,66,32,40,66,32,40,66,32,40,83,32,95,57,57,54,41,
-41,41,41,32,40,40,40,83,39,32,66,41,32,40,66,39,32,40,40,66,
-32,40,67,39,32,40,95,51,51,32,95,53,57,41,41,41,32,95,49,51,
-48,49,41,41,41,32,40,40,66,32,40,66,32,40,66,32,85,41,41,41,
-32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,40,67,39,32,40,
-95,51,51,32,95,53,57,41,41,32,40,40,83,32,40,40,40,67,39,32,
-83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,83,39,32,67,41,
-32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,
-40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,
-67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,
-32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,
-41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,
-40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,
-67,32,40,40,67,32,83,39,41,32,75,41,41,32,40,90,32,75,41,41,
-41,32,40,90,32,75,41,41,41,32,75,41,41,32,40,90,32,75,41,41,
-41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,75,41,
-41,32,75,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,
-41,32,40,90,32,75,41,41,41,32,40,90,32,40,90,32,75,41,41,41,
-41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,40,40,
-40,67,39,32,66,41,32,40,40,66,32,40,95,50,56,49,32,95,53,55,
-41,41,32,95,52,57,51,41,41,32,95,49,50,56,54,41,41,41,32,75,
-41,41,32,40,90,32,75,41,41,41,32,40,95,51,53,32,95,53,57,41,
-41,41,41,41,41,41,32,40,40,66,32,40,67,39,32,40,67,39,32,67,
-41,41,41,32,95,49,52,49,51,41,41,41,41,41,41,41,32,40,40,67,
-32,95,49,52,48,48,41,32,40,40,80,32,95,57,49,56,41,32,95,56,
-56,56,41,41,41,41,41,32,40,40,66,32,40,66,32,40,40,67,39,32,
-40,95,51,51,32,95,53,57,41,41,32,40,40,40,67,39,32,95,49,50,
-57,57,41,32,40,95,56,56,53,32,95,56,56,55,41,41,32,95,49,51,
-55,48,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,83,39,
-32,40,95,51,52,32,95,53,57,41,41,41,41,32,40,40,40,67,39,32,
-40,67,39,32,66,41,41,32,40,40,66,32,85,41,32,40,90,32,95,49,
-51,57,57,41,41,41,32,95,49,50,53,56,41,41,32,40,40,66,32,40,
-95,51,53,32,95,53,57,41,41,32,95,56,50,51,41,41,41,41,41,41,
-32,40,40,40,83,39,32,66,41,32,40,66,39,32,40,40,66,32,40,67,
-39,32,66,41,41,32,40,40,66,32,40,66,32,40,95,51,51,32,95,53,
-57,41,41,41,32,95,49,51,53,52,41,41,41,41,32,40,40,66,32,40,
-66,32,40,66,32,40,66,32,85,41,41,41,41,32,40,40,40,83,39,32,
-66,41,32,40,40,66,32,40,83,39,32,66,41,41,32,40,40,66,32,66,
-39,41,32,40,40,66,32,40,66,32,40,67,39,32,40,95,51,51,32,95,
-53,57,41,41,41,41,32,95,49,51,54,53,41,41,41,41,32,40,40,66,
-32,40,66,32,40,66,32,40,66,32,40,66,32,85,41,41,41,41,41,32,
-40,40,40,83,39,32,66,41,32,40,66,39,32,40,40,66,32,40,67,39,
-32,66,41,41,32,40,40,66,32,40,66,32,40,67,39,32,66,41,41,41,
-32,40,40,66,32,40,66,32,40,66,32,40,95,51,51,32,95,53,57,41,
-41,41,41,32,95,49,52,49,48,41,41,41,41,41,32,40,40,66,32,40,
-67,39,32,40,67,39,32,40,67,39,32,67,41,41,41,41,32,40,40,40,
-67,39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,67,39,
-41,41,32,95,49,52,49,51,41,41,32,95,56,50,52,41,41,41,41,41,
-41,41,41,41,32,40,40,40,83,39,32,66,41,32,40,40,66,32,40,67,
-39,32,40,67,39,32,40,95,51,51,32,95,53,57,41,41,41,41,32,95,
-49,51,54,52,41,41,32,95,49,51,53,57,41,41,41,32,95,49,51,55,
-50,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
-40,66,32,40,40,95,51,51,32,95,53,57,41,32,40,95,54,53,32,95,
-49,50,51,53,41,41,41,41,41,41,41,41,32,40,40,40,83,39,32,40,
-83,39,32,40,67,39,32,40,67,39,32,40,83,39,32,40,83,39,32,80,
-41,41,41,41,41,41,32,40,40,40,83,39,32,40,67,39,32,40,67,39,
-32,40,67,39,32,40,67,39,32,67,41,41,41,41,41,32,40,40,40,67,
-39,32,40,83,39,32,40,67,39,32,40,67,39,32,40,83,39,32,40,83,
-39,32,67,41,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,
-40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,
-83,41,41,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,
-67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,83,
-41,41,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,
-39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,83,41,
-41,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,
-32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,83,41,41,
-41,41,41,41,41,32,40,40,40,83,39,32,40,83,39,32,40,83,39,32,
-40,83,39,32,40,83,39,32,40,67,39,32,40,83,39,32,67,41,41,41,
-41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,
-67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,83,41,41,41,41,
-41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
-40,40,83,39,32,66,41,32,40,40,67,32,67,39,41,32,75,41,41,41,
-41,41,41,41,32,40,40,66,32,40,40,83,39,32,66,41,32,40,66,39,
-32,40,66,39,32,40,66,39,32,40,40,66,32,40,67,39,32,66,41,41,
-32,40,40,66,32,40,66,32,40,95,51,51,32,95,53,57,41,41,41,32,
-85,41,41,41,41,41,41,41,32,40,40,66,32,40,40,83,39,32,66,41,
-32,40,66,39,32,40,40,66,32,40,83,39,32,40,67,39,32,40,67,39,
-32,67,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,
-40,67,32,83,41,41,41,41,41,32,40,40,40,83,39,32,40,83,39,32,
-40,67,39,32,40,83,39,32,40,67,39,32,67,41,41,41,41,41,32,40,
-40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,83,32,40,40,
-67,32,40,95,50,49,49,32,95,57,55,52,41,41,32,40,95,57,55,57,
-32,95,49,49,57,49,41,41,41,41,41,41,41,41,32,40,40,40,83,39,
-32,40,83,39,32,40,67,39,32,40,83,39,32,40,67,39,32,67,41,41,
-41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
-40,83,32,40,40,67,32,40,95,50,49,49,32,95,57,55,52,41,41,32,
-40,95,57,55,57,32,95,49,49,57,50,41,41,41,41,41,41,41,41,32,
-40,40,40,83,39,32,40,83,39,32,40,67,39,32,66,41,41,41,32,40,
-40,66,32,40,66,32,40,66,32,40,67,39,32,67,41,41,41,41,32,40,
-40,66,32,40,66,32,40,66,32,40,66,32,40,83,32,40,40,67,32,40,
-95,50,49,49,32,95,57,55,52,41,41,32,40,95,57,55,57,32,95,49,
-49,57,51,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,
-32,40,40,67,39,32,67,41,32,40,67,32,40,40,67,32,40,95,50,49,
-49,32,95,57,55,52,41,41,32,40,95,57,55,57,32,95,49,49,57,53,
-41,41,41,41,41,41,41,32,95,49,51,54,50,41,41,41,41,32,40,40,
-40,67,39,32,40,67,39,32,66,41,41,32,95,49,51,54,50,41,32,40,
-40,66,32,95,56,53,55,41,32,95,51,55,55,41,41,41,41,41,32,40,
-40,40,67,39,32,83,41,32,40,40,40,67,39,32,40,67,39,32,67,39,
-41,41,32,95,49,51,54,51,41,32,40,40,66,32,95,56,53,53,41,32,
-95,51,55,52,41,41,41,32,40,40,67,32,95,49,51,57,53,41,32,95,
-49,49,57,50,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,
-66,41,41,32,95,49,51,54,50,41,32,40,40,66,32,95,56,53,53,41,
-32,95,51,55,52,41,41,41,41,41,41,41,41,32,40,40,40,83,39,32,
-66,41,32,40,66,39,32,40,66,39,32,40,40,66,32,40,67,39,32,40,
-95,51,51,32,95,53,57,41,41,41,32,40,40,40,67,39,32,66,41,32,
-95,49,51,53,52,41,32,40,40,66,32,95,56,50,51,41,32,40,40,67,
-32,95,57,56,48,41,32,34,102,114,111,109,73,110,116,101,103,101,114,34,
-41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,
-32,85,41,41,41,41,32,40,40,40,83,39,32,66,41,32,40,66,39,32,
-40,40,66,32,40,83,39,32,66,41,41,32,40,40,66,32,40,66,32,40,
-67,39,32,40,95,51,51,32,95,53,57,41,41,41,41,32,95,49,51,54,
-53,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,
-66,32,85,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,
-66,32,90,41,41,41,41,32,40,40,66,32,40,67,39,32,40,67,39,32,
-40,67,39,32,67,41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,
-40,66,32,40,67,39,32,66,41,41,32,95,49,52,49,51,41,41,32,40,
-67,32,95,56,50,52,41,41,41,41,41,41,41,41,41,41,41,41,32,75,
-41,41,32,40,40,66,32,40,40,83,39,32,66,41,32,40,66,39,32,40,
-66,39,32,40,40,66,32,40,67,39,32,66,41,41,32,40,40,66,32,40,
-66,32,40,95,51,51,32,95,53,57,41,41,41,32,85,41,41,41,41,41,
-41,32,40,40,66,32,40,40,83,39,32,66,41,32,40,66,39,32,40,40,
-66,32,40,83,39,32,40,67,39,32,67,41,41,41,32,40,40,66,32,40,
-66,32,40,66,32,40,67,32,83,41,41,41,41,32,40,40,66,32,40,66,
-32,40,66,32,40,40,67,39,32,67,41,32,40,67,32,40,40,67,32,40,
-95,50,49,49,32,95,57,55,52,41,41,32,40,95,57,55,57,32,95,49,
-49,57,51,41,41,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,
-32,66,41,41,32,95,49,51,54,50,41,32,40,40,66,32,95,56,53,55,
-41,32,40,95,50,54,53,32,95,49,53,51,41,41,41,41,41,41,41,41,
-41,32,40,40,40,83,39,32,66,41,32,40,66,39,32,40,66,39,32,40,
-40,66,32,40,67,39,32,40,95,51,51,32,95,53,57,41,41,41,32,40,
-40,40,67,39,32,66,41,32,95,49,51,53,52,41,32,40,40,66,32,95,
-56,50,51,41,32,40,40,67,32,95,57,56,48,41,32,34,102,114,111,109,
-82,97,116,105,111,110,97,108,34,41,41,41,41,41,41,41,32,40,40,66,
-32,40,66,32,40,66,32,40,66,32,85,41,41,41,41,32,40,40,40,83,
-39,32,66,41,32,40,66,39,32,40,40,66,32,40,83,39,32,66,41,41,
-32,40,40,66,32,40,66,32,40,67,39,32,40,95,51,51,32,95,53,57,
-41,41,41,41,32,95,49,51,54,53,41,41,41,41,32,40,40,66,32,40,
-66,32,40,66,32,40,66,32,40,66,32,85,41,41,41,41,41,32,40,40,
-66,32,40,66,32,40,66,32,40,66,32,90,41,41,41,41,32,40,40,66,
-32,40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,41,41,32,40,
-40,40,67,39,32,66,41,32,40,40,66,32,40,67,39,32,66,41,41,32,
-95,49,52,49,51,41,41,32,40,67,32,95,56,50,52,41,41,41,41,41,
-41,41,41,41,41,41,41,32,75,41,41,32,75,41,41,32,75,41,41,32,
-75,41,41,32,95,49,51,54,50,41,41,32,40,40,66,32,40,80,32,40,
-75,32,40,40,95,49,52,32,95,53,56,41,32,95,52,57,56,41,41,41,
-41,32,40,40,40,67,39,32,40,67,39,32,40,95,51,51,32,95,53,57,
-41,41,41,32,40,40,66,32,40,40,67,39,32,40,95,51,51,32,95,53,
-57,41,41,32,95,49,50,56,57,41,41,32,95,49,50,56,56,41,41,32,
-40,40,67,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,
-41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,
-40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,
-40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,
-39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,
-83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,
-32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,
-40,67,32,40,40,40,67,39,32,83,39,41,32,40,85,32,40,40,66,32,
-40,95,49,52,32,95,53,56,41,41,32,95,52,57,57,41,41,41,32,40,
-90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,75,41,41,32,40,
-90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,
-41,41,32,75,41,41,32,75,41,41,32,40,90,32,75,41,41,41,32,40,
-90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,40,90,
-32,75,41,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,
-41,41,32,75,41,41,32,75,41,41,32,40,90,32,75,41,41,41,32,40,
-40,95,49,52,32,95,53,56,41,32,95,52,57,56,41,41,41,41,41,41,
-32,40,40,40,83,39,32,40,67,39,32,40,67,39,32,67,41,41,41,32,
-40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,83,41,
-41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,
-39,32,83,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,40,
-83,39,32,67,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,
-32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,67,32,40,40,67,
-32,83,39,41,32,75,41,41,32,75,41,41,32,75,41,41,32,75,41,41,
-32,75,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,90,41,
-41,41,32,40,40,66,32,40,67,39,32,67,41,41,32,40,40,40,67,39,
-32,83,41,32,40,40,40,67,39,32,40,83,39,32,67,39,41,41,32,95,
-49,52,49,51,41,32,95,56,50,55,41,41,32,40,40,67,32,95,49,51,
-57,53,41,32,95,49,49,57,57,41,41,41,41,41,41,32,75,41,41,32,
-75,41,41,32,95,49,51,57,57,41,41,41,41,41,32,40,40,40,67,39,
-32,66,41,32,40,40,66,32,40,67,39,32,66,41,41,32,40,40,66,32,
-40,66,32,40,95,51,51,32,95,53,57,41,41,41,32,95,49,51,53,52,
-41,41,41,32,40,40,66,32,40,66,32,85,41,41,32,40,40,40,67,39,
-32,66,41,32,40,66,39,32,40,66,39,32,40,40,66,32,40,95,51,51,
-32,95,53,57,41,41,32,95,49,51,53,56,41,41,41,41,32,40,40,40,
-67,39,32,66,41,32,40,40,66,32,40,67,39,32,40,67,39,32,40,95,
-51,51,32,95,53,57,41,41,41,41,32,40,40,67,39,32,40,67,39,32,
-40,95,52,52,32,95,53,57,41,41,41,32,40,67,32,95,49,51,56,48,
-41,41,41,41,32,40,40,66,32,40,66,32,40,95,51,53,32,95,53,57,
-41,41,41,32,95,56,50,56,41,41,41,41,41,41,41,32,40,40,66,32,
-40,66,32,40,40,67,39,32,66,41,32,40,40,66,32,95,50,55,48,41,
-32,95,49,51,57,49,41,41,41,41,32,40,40,40,67,39,32,40,67,39,
-32,40,67,39,32,66,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
-40,95,51,51,32,95,53,57,41,41,41,41,32,95,49,51,53,57,41,41,
-32,40,40,66,32,40,66,32,40,95,51,53,32,95,53,57,41,41,41,32,
-95,56,50,57,41,41,41,41,41,32,40,40,40,83,39,32,66,41,32,40,
-66,39,32,40,40,66,32,40,83,39,32,40,95,51,51,32,95,53,57,41,
-41,41,32,40,40,66,32,40,66,32,40,40,95,50,56,49,32,95,53,55,
-41,32,95,52,51,51,41,41,41,32,40,40,66,32,40,95,52,52,32,95,
-53,57,41,41,32,95,49,51,53,52,41,41,41,41,41,32,40,40,66,32,
-40,66,32,40,66,32,40,66,32,85,41,41,41,41,32,40,40,40,67,39,
-32,40,67,39,32,40,67,39,32,40,67,39,32,66,41,41,41,41,32,40,
-40,66,32,40,66,32,40,66,32,40,66,32,40,67,39,32,40,95,51,52,
-32,95,53,57,41,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,
-32,40,83,39,32,66,41,41,41,32,40,40,66,32,40,66,32,66,39,41,
-41,32,40,40,66,32,67,41,32,95,49,50,56,55,41,41,41,32,40,40,
-66,32,40,66,32,95,49,50,55,57,41,41,32,40,40,40,67,39,32,66,
-41,32,95,56,56,49,41,32,95,52,50,56,41,41,41,41,41,32,40,40,
-66,32,40,95,51,53,32,95,53,57,41,41,32,95,56,51,48,41,41,41,
-41,41,41,32,40,40,40,83,39,32,40,83,39,32,40,83,39,32,67,41,
-41,41,32,40,40,40,83,39,32,40,83,39,32,40,83,39,32,67,41,41,
-41,32,40,40,40,83,39,32,40,83,39,32,40,83,39,32,67,41,41,41,
-32,40,40,40,83,39,32,40,83,39,32,40,83,39,32,67,41,41,41,32,
-40,40,40,83,39,32,40,83,39,32,40,83,39,32,80,41,41,41,32,40,
-40,66,32,40,66,32,40,66,32,40,66,32,40,40,95,51,51,32,95,53,
-57,41,32,95,49,50,57,54,41,41,41,41,41,32,40,40,40,83,39,32,
-40,67,39,32,40,67,39,32,66,41,41,41,32,40,40,66,32,40,66,32,
-40,66,32,40,83,39,32,40,95,51,52,32,95,53,57,41,41,41,41,41,
-32,40,40,40,67,39,32,40,67,39,32,40,83,39,32,66,41,41,41,32,
-40,40,66,32,67,41,32,95,49,50,56,55,41,41,32,40,40,66,32,95,
-49,50,55,56,41,32,95,49,51,57,55,41,41,41,41,32,40,40,40,67,
-39,32,40,67,39,32,40,67,39,32,40,95,51,51,32,95,53,57,41,41,
-41,41,32,40,40,66,32,40,67,39,32,40,95,52,52,32,95,53,57,41,
-41,41,32,95,49,51,53,53,41,41,32,40,40,66,32,40,95,51,53,32,
-95,53,57,41,41,32,40,40,66,32,95,56,51,49,41,32,95,56,52,54,
-41,41,41,41,41,41,32,40,40,40,83,39,32,66,41,32,40,40,66,32,
-40,83,39,32,40,67,39,32,40,67,39,32,40,95,51,51,32,95,53,57,
-41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,
-89,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,67,
-39,32,66,41,41,32,40,40,66,32,40,66,32,40,83,39,32,80,41,41,
-41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,66,32,
-40,66,32,40,95,51,51,32,95,53,57,41,41,41,32,95,49,51,53,52,
-41,41,32,40,40,66,32,40,66,32,40,95,51,53,32,95,53,57,41,41,
-41,32,40,40,66,32,80,41,32,95,52,52,50,41,41,41,41,41,41,32,
-40,40,40,67,39,32,40,83,39,32,40,83,39,32,40,67,39,32,83,41,
-41,41,41,32,40,40,40,67,39,32,40,83,39,32,40,83,39,32,67,41,
-41,41,32,40,40,66,32,40,66,32,40,66,32,40,67,32,83,39,41,41,
-41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
-66,32,40,40,95,51,51,32,95,53,57,41,32,95,49,50,57,54,41,41,
-41,41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,66,39,32,40,
-66,39,32,40,66,39,32,40,40,66,32,40,67,39,32,40,83,39,32,40,
-95,51,51,32,95,53,57,41,41,41,41,32,40,40,66,32,40,67,39,32,
-95,49,51,56,49,41,41,32,40,40,66,32,95,49,50,55,56,41,32,95,
-49,51,57,55,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,
-66,32,40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,
-66,32,95,50,55,48,41,41,32,40,67,32,95,49,51,56,53,41,41,41,
-41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,67,39,41,
-32,67,39,41,41,32,40,40,67,39,32,40,67,39,32,95,52,56,49,41,
-41,32,40,67,32,95,56,54,52,41,41,41,41,41,41,41,41,32,40,40,
-66,32,40,66,32,40,66,32,40,40,67,39,32,40,95,51,51,32,95,53,
-57,41,41,32,40,40,40,83,39,32,95,49,51,56,49,41,32,40,40,66,
-32,95,49,51,57,56,41,32,40,95,56,56,53,32,95,56,56,56,41,41,
-41,32,73,41,41,41,41,41,32,40,40,40,67,39,32,66,41,32,67,39,
-41,32,40,40,67,39,32,95,52,56,49,41,32,95,56,54,53,41,41,41,
-41,41,32,40,40,66,32,40,66,32,40,66,32,40,40,67,39,32,95,50,
-55,48,41,32,95,49,51,57,49,41,41,41,41,32,40,40,40,67,39,32,
-66,41,32,67,39,41,32,40,40,67,39,32,95,52,56,49,41,32,95,56,
-54,54,41,41,41,41,41,41,32,95,52,56,48,41,41,41,32,40,40,66,
-32,40,66,32,40,66,32,85,41,41,41,32,40,40,66,32,40,66,32,40,
-66,32,40,66,32,85,41,41,41,41,32,40,40,40,67,39,32,40,67,39,
-32,40,67,39,32,66,41,41,41,32,40,40,66,32,40,66,32,66,39,41,
-41,32,40,40,66,32,40,66,32,40,66,32,40,67,39,32,40,95,51,52,
-32,95,53,57,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,
-40,83,39,32,66,41,41,41,32,40,40,66,32,67,41,32,95,49,50,56,
-55,41,41,32,40,40,66,32,95,49,50,55,56,41,32,95,49,51,57,55,
-41,41,41,41,41,32,40,40,66,32,40,66,32,40,95,51,53,32,95,53,
-57,41,41,41,32,40,40,66,32,40,66,32,95,56,51,49,41,41,32,40,
-67,32,95,56,52,55,41,41,41,41,41,41,41,41,41,32,40,40,40,67,
-39,32,40,67,39,32,66,41,41,32,40,40,66,32,66,39,41,32,95,49,
-51,53,57,41,41,32,40,40,40,67,39,32,66,41,32,40,40,67,32,95,
-49,51,54,49,41,32,34,70,114,111,109,34,41,41,32,40,40,67,32,79,
-41,32,75,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,66,
-41,41,32,40,40,66,32,66,39,41,32,40,40,66,32,66,39,41,32,95,
-49,51,53,57,41,41,41,32,40,40,40,67,39,32,66,41,32,40,66,39,
-32,40,40,67,32,95,49,51,54,49,41,32,34,70,114,111,109,84,111,34,
-41,41,41,32,40,40,40,67,39,32,66,41,32,79,41,32,40,40,67,32,
-79,41,32,75,41,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,
-32,66,41,41,32,40,40,66,32,66,39,41,32,40,40,66,32,66,39,41,
-32,95,49,51,53,57,41,41,41,32,40,40,40,67,39,32,66,41,32,40,
-66,39,32,40,40,67,32,95,49,51,54,49,41,32,34,70,114,111,109,84,
-104,101,110,34,41,41,41,32,40,40,40,67,39,32,66,41,32,79,41,32,
-40,40,67,32,79,41,32,75,41,41,41,41,41,41,32,40,40,40,67,39,
-32,40,67,39,32,66,41,41,32,40,40,66,32,66,39,41,32,40,40,66,
-32,66,39,41,32,40,40,66,32,66,39,41,32,95,49,51,53,57,41,41,
-41,41,32,40,40,40,67,39,32,66,41,32,40,66,39,32,40,66,39,32,
-40,40,67,32,95,49,51,54,49,41,32,34,70,114,111,109,84,104,101,110,
-84,111,34,41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,66,39,
-32,79,41,41,32,40,40,40,67,39,32,66,41,32,79,41,32,40,40,67,
-32,79,41,32,75,41,41,41,41,41,41,41,41,32,40,40,40,83,39,32,
-66,41,32,40,66,39,32,40,66,39,32,40,40,66,32,80,41,32,95,49,
-51,57,57,41,41,41,41,32,40,40,40,83,39,32,40,83,39,32,40,83,
-39,32,66,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,83,39,
-32,83,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,
-85,41,41,41,41,32,40,40,40,83,39,32,40,67,39,32,66,41,41,32,
-40,40,66,32,40,66,32,67,41,41,32,40,40,40,67,39,32,40,67,39,
-32,40,67,39,32,83,41,41,41,32,40,40,66,32,40,66,32,40,67,32,
-40,40,67,32,67,39,41,32,40,90,32,75,41,41,41,41,41,32,95,49,
-51,53,57,41,41,32,75,41,41,41,32,40,40,40,67,39,32,40,67,39,
-32,95,50,55,48,41,41,32,95,49,49,56,51,41,32,34,98,97,100,32,
-102,105,110,97,108,32,100,111,32,115,116,97,116,101,109,101,110,116,34,41,
-41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
-32,90,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,
-32,40,66,32,90,41,41,41,41,41,32,40,40,40,83,39,32,40,83,39,
-32,40,67,39,32,40,83,39,32,40,67,39,32,83,41,41,41,41,41,32,
-40,40,40,83,39,32,40,83,39,32,40,83,39,32,40,83,39,32,67,41,
-41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,67,32,
-83,39,41,41,41,41,41,32,40,40,40,83,39,32,40,67,39,32,66,41,
-41,32,40,40,66,32,66,39,41,32,40,40,66,32,66,39,41,32,40,40,
-66,32,66,39,41,32,40,40,66,32,66,39,41,32,95,49,51,53,57,41,
-41,41,41,41,32,40,40,40,67,39,32,40,83,39,32,40,83,39,32,66,
-41,41,41,32,40,40,66,32,40,66,32,66,39,41,41,32,40,40,66,32,
-40,66,32,40,66,32,40,67,39,32,95,56,50,52,41,41,41,41,32,40,
-40,66,32,40,66,32,40,66,32,95,56,50,52,41,41,41,32,40,40,66,
-32,40,66,32,40,66,32,95,56,50,51,41,41,41,32,40,40,66,32,40,
-40,83,39,32,95,52,57,50,41,32,40,40,67,32,95,57,56,48,41,32,
-34,62,62,61,34,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,
-66,32,67,41,32,95,57,56,55,41,41,32,40,40,67,32,95,57,56,48,
-41,32,34,62,62,61,34,41,41,41,41,41,41,41,41,32,40,40,40,83,
-39,32,66,41,32,40,66,39,32,40,66,39,32,40,40,66,32,95,56,52,
-49,41,32,40,40,40,67,39,32,79,41,32,40,40,67,32,95,49,50,49,
-53,41,32,34,36,120,34,41,41,32,75,41,41,41,41,41,32,40,40,40,
-67,39,32,66,41,32,40,66,39,32,40,66,39,32,40,40,66,32,95,56,
-50,56,41,32,40,40,67,32,95,49,50,49,53,41,32,34,36,120,34,41,
-41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,79,
-41,41,41,32,40,40,66,32,40,66,32,40,67,32,80,41,41,41,32,40,
-40,40,67,39,32,40,67,39,32,95,56,55,49,41,41,32,40,40,40,67,
-39,32,40,67,39,32,79,41,41,32,40,40,66,32,40,66,32,40,80,32,
-95,52,56,48,41,41,41,32,95,56,51,50,41,41,32,75,41,41,32,95,
-52,56,48,41,41,41,32,75,41,41,41,41,41,41,41,32,40,40,40,83,
-39,32,40,67,39,32,66,41,41,32,40,40,66,32,66,39,41,32,40,40,
-66,32,66,39,41,32,40,40,66,32,66,39,41,32,95,49,51,53,57,41,
-41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,83,39,32,66,41,
-41,41,32,40,40,66,32,40,66,32,40,66,32,40,67,39,32,95,56,50,
-52,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,95,56,50,52,
-41,41,41,32,40,40,66,32,40,66,32,40,66,32,95,56,50,51,41,41,
-41,32,40,40,66,32,40,40,83,39,32,95,52,57,50,41,32,40,40,67,
-32,95,57,56,48,41,32,34,62,62,34,41,41,41,32,40,40,40,67,39,
-32,66,41,32,40,40,66,32,67,41,32,95,57,56,55,41,41,32,40,40,
-67,32,95,57,56,48,41,32,34,62,62,34,41,41,41,41,41,41,41,32,
-95,56,51,50,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,66,
-41,41,32,40,40,66,32,66,39,41,32,40,40,66,32,66,39,41,32,95,
-49,51,53,57,41,41,41,32,40,40,66,32,40,66,32,40,67,32,95,56,
-50,57,41,41,41,32,95,56,51,50,41,41,41,41,41,41,41,41,41,32,
-40,40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,66,32,66,39,
-41,32,95,49,51,53,57,41,41,32,40,40,67,39,32,95,56,50,52,41,
-32,95,56,50,51,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,
-66,41,41,32,40,40,40,67,39,32,40,67,39,32,67,39,41,41,32,40,
-40,66,32,40,66,32,67,39,41,41,32,40,40,66,32,66,39,41,32,95,
-49,51,53,57,41,41,41,32,40,40,66,32,40,66,32,40,40,83,39,32,
-95,56,52,49,41,32,40,40,67,32,79,41,32,75,41,41,41,41,32,40,
-40,66,32,40,67,39,32,95,56,50,52,41,41,32,40,40,66,32,95,56,
-50,52,41,32,95,56,50,51,41,41,41,41,41,32,40,40,67,32,95,49,
-50,49,53,41,32,34,36,120,34,41,41,41,41,32,40,40,40,83,39,32,
-66,41,32,40,66,39,32,40,40,66,32,40,67,39,32,66,41,41,32,40,
-40,66,32,66,39,41,32,40,40,66,32,40,66,32,40,95,51,51,32,95,
-53,57,41,41,41,32,40,40,67,32,40,40,40,67,39,32,83,39,41,32,
-95,49,51,53,53,41,32,40,40,66,32,95,49,51,57,56,41,32,40,95,
-56,56,53,32,95,56,56,56,41,41,41,41,32,73,41,41,41,41,41,41,
-32,40,40,40,83,39,32,67,41,32,40,40,66,32,40,40,67,39,32,67,
-39,41,32,40,40,66,32,83,39,41,32,40,40,66,32,83,39,41,32,83,
-39,41,41,41,41,32,40,40,40,83,39,32,66,41,32,40,40,66,32,40,
-67,39,32,66,41,41,32,40,40,66,32,66,39,41,32,40,40,66,32,66,
-39,41,32,40,40,66,32,40,66,32,40,95,51,51,32,95,53,57,41,41,
-41,32,95,49,51,53,52,41,41,41,41,41,32,40,40,66,32,40,66,32,
-40,66,32,40,66,32,40,66,32,85,41,41,41,41,41,32,40,40,40,83,
-39,32,66,41,32,40,40,66,32,40,67,39,32,66,41,41,32,40,40,66,
-32,66,39,41,32,40,40,66,32,66,39,41,32,40,40,66,32,66,39,41,
-32,40,40,66,32,40,66,32,40,95,51,51,32,95,53,57,41,41,41,32,
-95,49,51,53,52,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,
-66,32,40,66,32,40,66,32,40,66,32,85,41,41,41,41,41,41,32,40,
-40,40,83,39,32,40,83,39,32,66,41,41,32,40,40,66,32,66,39,41,
-32,40,40,66,32,40,66,32,40,67,39,32,40,83,39,32,66,41,41,41,
-41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,83,39,32,40,
-95,51,51,32,95,53,57,41,41,41,41,41,41,32,95,49,51,56,52,41,
-41,41,41,32,40,40,40,83,39,32,40,83,39,32,66,41,41,32,40,40,
-66,32,66,39,41,32,40,40,66,32,40,66,32,40,83,39,32,40,67,39,
-32,40,67,39,32,66,41,41,41,41,41,32,40,40,66,32,40,66,32,40,
-66,32,40,66,32,40,66,32,40,95,51,51,32,95,53,57,41,41,41,41,
-41,41,32,40,40,66,32,40,66,32,40,67,39,32,67,41,41,41,32,95,
-49,51,56,52,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,
-66,41,41,32,40,40,66,32,40,66,32,40,67,39,32,40,67,39,32,66,
-41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,66,39,41,41,41,
-32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,95,51,52,32,95,
-53,57,41,41,41,41,41,32,95,49,51,53,55,41,41,41,41,32,40,40,
-66,32,40,66,32,40,66,32,40,95,51,53,32,95,53,57,41,41,41,41,
-32,95,56,51,53,41,41,41,41,41,41,41,41,41,41,32,40,40,40,83,
-39,32,40,67,39,32,66,41,41,32,40,40,66,32,66,39,41,32,40,40,
-66,32,40,66,32,40,83,39,32,40,95,51,51,32,95,53,57,41,41,41,
-41,32,95,49,52,49,48,41,41,41,32,40,40,40,67,39,32,40,67,39,
-32,66,41,41,32,40,40,66,32,40,66,32,40,67,39,32,66,41,41,41,
-32,40,40,66,32,40,66,32,40,66,32,40,95,51,51,32,95,53,57,41,
-41,41,41,32,95,49,52,49,48,41,41,41,32,40,40,66,32,40,66,32,
-40,66,32,40,95,51,53,32,95,53,57,41,41,41,41,32,95,56,51,53,
-41,41,41,41,41,41,41,32,40,40,40,83,39,32,66,41,32,40,66,39,
-32,40,66,39,32,40,40,66,32,40,67,39,32,40,95,51,51,32,95,53,
-57,41,41,41,32,40,40,67,32,95,49,51,52,57,41,32,40,95,49,51,
-53,49,32,95,56,55,57,41,41,41,41,41,41,32,40,40,40,83,39,32,
-40,67,39,32,40,67,39,32,40,67,39,32,40,83,39,32,40,95,51,51,
-32,95,53,57,41,41,41,41,41,41,32,40,40,66,32,40,67,39,32,40,
-67,39,32,67,41,41,41,32,95,49,52,49,51,41,41,32,40,40,66,32,
-67,41,32,95,49,52,49,48,41,41,41,41,41,32,40,90,32,75,41,41,
-41,32,75,41,41,32,75,41,41,32,40,40,66,32,40,66,32,40,40,67,
-39,32,66,41,32,40,40,66,32,95,50,55,48,41,32,40,40,67,32,95,
-49,51,50,51,41,32,95,56,55,57,41,41,41,41,41,32,40,40,66,32,
-40,66,32,40,66,32,90,41,41,41,32,40,40,40,67,39,32,40,67,39,
-32,40,67,39,32,40,83,39,32,40,95,51,51,32,95,53,57,41,41,41,
-41,41,32,40,40,66,32,40,66,32,40,66,32,40,67,32,95,49,51,51,
-49,41,41,41,41,32,95,49,51,53,57,41,41,32,40,40,66,32,40,66,
-32,40,95,51,53,32,95,53,57,41,41,41,32,95,56,52,48,41,41,41,
-41,41,41,32,40,40,66,32,40,95,50,55,48,32,95,50,53,41,41,32,
-40,40,66,32,40,95,52,56,50,32,34,116,99,69,120,112,114,58,32,34,
-41,41,32,40,40,40,83,39,32,95,52,56,50,41,32,40,40,66,32,40,
-95,49,55,49,52,32,95,57,55,50,41,41,32,40,95,56,56,53,32,95,
-56,56,56,41,41,41,32,40,40,66,32,40,95,52,56,50,32,40,40,79,
-32,35,51,50,41,32,75,41,41,41,32,40,95,49,55,49,52,32,95,57,
-49,56,41,41,41,41,41,41,41,32,40,95,56,56,53,32,95,56,56,56,
-41,41,41,32,40,40,65,32,58,49,51,54,49,32,40,40,66,32,40,66,
-32,40,95,52,49,54,32,95,56,50,52,41,41,41,32,40,40,66,32,40,
-66,32,95,56,50,51,41,41,32,40,40,40,67,39,32,66,41,32,95,57,
-56,48,41,32,40,95,52,56,50,32,34,101,110,117,109,34,41,41,41,41,
-41,32,40,40,65,32,58,49,51,54,50,32,40,40,40,83,39,32,40,83,
-39,32,83,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,
-83,41,41,41,32,40,40,66,32,40,66,32,40,40,83,39,32,67,41,32,
-40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,
-40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,67,32,
-40,40,67,32,83,39,41,32,75,41,41,32,75,41,41,32,75,41,41,32,
-75,41,41,32,75,41,41,32,75,41,41,41,41,32,40,40,66,32,40,66,
-32,90,41,41,32,40,40,66,32,40,66,32,40,66,32,40,40,95,51,51,
-32,95,53,57,41,32,95,49,50,57,54,41,41,41,41,32,95,49,51,54,
-51,41,41,41,41,32,75,41,41,32,40,40,40,67,39,32,40,83,39,32,
-83,41,41,32,95,49,51,54,51,41,32,40,40,40,67,39,32,67,41,32,
-40,40,40,67,39,32,40,67,39,32,83,41,41,32,40,40,40,67,39,32,
-40,67,39,32,83,41,41,32,40,40,40,83,39,32,40,67,39,32,67,41,
-41,32,40,40,40,83,39,32,67,41,32,40,40,40,67,39,32,40,67,39,
-32,67,39,41,41,32,40,40,40,83,39,32,67,41,32,40,40,40,83,39,
-32,80,41,32,40,90,32,40,40,67,32,95,49,51,57,53,41,32,95,49,
-49,57,49,41,41,41,32,40,90,32,40,40,67,32,95,49,51,57,53,41,
-32,95,49,49,57,53,41,41,41,41,32,40,90,32,40,40,67,32,95,49,
-51,57,53,41,32,95,49,49,57,51,41,41,41,41,32,75,41,41,32,40,
-90,32,40,40,67,32,95,49,51,57,53,41,32,95,49,49,57,52,41,41,
-41,41,32,40,90,32,40,40,40,83,39,32,95,49,50,55,56,41,32,95,
-49,51,57,55,41,32,40,40,67,32,95,49,51,57,53,41,32,95,49,49,
-57,52,41,41,41,41,41,32,75,41,41,32,75,41,41,32,40,95,49,51,
-57,57,32,95,54,55,51,41,41,41,41,41,32,40,40,65,32,58,49,51,
-54,51,32,40,40,67,39,32,40,67,39,32,67,41,41,32,40,40,40,83,
-39,32,66,41,32,40,95,49,52,49,51,32,95,54,55,51,41,41,32,95,
-56,50,55,41,41,41,32,40,40,65,32,58,49,51,54,52,32,40,40,66,
-32,40,66,32,40,66,32,40,40,95,51,51,32,95,53,57,41,32,40,95,
-54,53,32,95,49,50,51,48,41,41,41,41,41,32,40,40,40,83,39,32,
-66,41,32,40,40,66,32,40,67,39,32,40,67,39,32,40,95,51,51,32,
-95,53,57,41,41,41,41,32,40,40,66,32,40,67,39,32,40,95,52,52,
-32,95,53,57,41,41,41,32,40,40,66,32,40,66,32,85,41,41,32,40,
-40,40,67,39,32,66,41,32,40,40,66,32,40,83,39,32,66,41,41,32,
-40,40,66,32,40,66,32,40,95,51,51,32,95,53,57,41,41,41,32,95,
-49,51,48,49,41,41,41,32,40,40,66,32,40,66,32,40,66,32,85,41,
-41,41,32,40,40,66,32,40,66,32,40,66,32,90,41,41,41,32,40,40,
-66,32,40,66,32,40,66,32,40,66,32,40,95,51,53,32,95,53,57,41,
-41,41,41,41,32,40,40,66,32,40,66,32,40,67,39,32,80,41,41,41,
-32,40,40,66,32,40,40,67,39,32,66,41,32,40,40,66,32,80,41,32,
-95,56,50,51,41,41,41,32,40,40,40,67,39,32,66,41,32,95,49,51,
-54,54,41,32,95,49,50,50,50,41,41,41,41,41,41,41,41,41,41,41,
-32,40,40,66,32,40,66,32,40,66,32,40,95,50,55,48,32,40,95,51,
-53,32,95,53,57,41,41,41,41,41,32,40,40,67,32,40,40,40,67,39,
-32,67,39,41,32,40,40,40,67,39,32,89,41,32,40,40,67,32,40,40,
-40,67,39,32,83,39,41,32,40,40,66,32,67,41,32,40,40,40,83,39,
-32,40,83,39,32,40,67,39,32,80,41,41,41,32,40,40,66,32,40,66,
-32,40,66,32,40,83,32,40,40,40,67,39,32,83,39,41,32,40,40,66,
-32,83,39,41,32,83,41,41,32,40,40,40,67,39,32,40,67,39,32,40,
-83,39,32,40,67,39,32,80,41,41,41,41,32,40,40,67,32,40,40,40,
-67,39,32,67,39,41,32,40,40,66,32,83,39,41,32,67,39,41,41,32,
-40,40,40,67,39,32,66,41,32,67,41,32,40,90,32,75,41,41,41,41,
-32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,41,41,41,41,
-32,40,40,40,83,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,
-67,39,32,67,41,41,41,41,41,32,40,40,66,32,40,40,83,39,32,66,
-41,32,40,40,66,32,40,83,39,32,83,41,41,32,40,40,66,32,40,66,
-32,40,40,67,39,32,83,39,41,32,83,39,41,41,41,32,40,40,66,32,
-40,66,32,82,41,41,32,40,40,66,32,40,66,32,40,67,32,66,41,41,
-41,32,40,40,66,32,40,66,32,40,67,39,32,67,41,41,41,32,40,40,
-40,67,39,32,40,67,39,32,66,41,41,32,40,40,40,67,39,32,66,41,
-32,67,39,41,32,40,67,32,95,52,56,49,41,41,41,32,40,40,67,32,
-79,41,32,75,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,
-32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,67,32,66,
-41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,40,83,39,
-32,40,83,39,32,66,41,41,32,40,40,66,32,40,66,32,40,83,39,32,
-66,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,83,39,32,40,
-83,39,32,66,41,41,41,41,41,32,40,40,66,32,40,66,32,40,40,67,
-39,32,66,41,32,66,41,41,41,32,40,40,40,67,39,32,40,67,39,32,
-40,67,39,32,67,41,41,41,32,40,66,32,67,41,41,32,95,52,56,48,
-41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,
-32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,90,41,41,41,
-41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,
-40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,90,41,41,41,41,
-41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,
-66,32,40,66,32,40,66,32,40,66,32,40,66,32,85,41,41,41,41,41,
-41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
-32,40,40,83,39,32,40,67,39,32,66,41,41,32,40,40,66,32,66,39,
-41,32,40,40,66,32,66,39,41,32,66,39,41,41,41,41,41,41,41,41,
-32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
-40,66,32,40,66,32,40,66,32,40,66,32,40,67,32,66,41,41,41,41,
-41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,
-32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
-66,32,40,83,32,66,41,41,41,41,41,41,41,41,41,41,41,41,32,40,
-40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
-32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
-66,32,85,41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,
-66,32,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,
-67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,
-67,39,32,40,67,39,32,40,67,39,32,66,41,41,41,41,41,41,41,41,
-41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
-32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
-66,32,40,67,39,32,67,41,41,41,41,41,41,41,41,41,41,41,41,41,
-32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
-40,66,32,40,40,67,39,32,40,83,39,32,66,41,41,32,40,40,66,32,
-66,39,41,32,40,40,66,32,66,39,41,32,40,40,66,32,40,66,32,40,
-83,39,32,83,41,41,41,32,40,40,66,32,40,40,67,39,32,66,41,32,
-40,40,66,32,40,67,39,32,95,49,50,50,41,41,32,40,67,32,40,95,
-50,49,49,32,95,50,57,53,41,41,41,41,41,32,40,40,40,67,39,32,
-40,83,39,32,95,49,50,49,41,41,32,40,67,32,40,95,50,49,50,32,
-95,57,48,49,41,41,41,32,40,40,67,32,40,95,50,49,49,32,95,57,
-48,49,41,41,32,95,57,48,48,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,83,39,
-32,40,67,39,32,66,41,41,41,32,40,40,66,32,40,66,32,66,39,41,
-41,32,40,40,66,32,40,66,32,66,39,41,41,32,40,40,66,32,40,66,
-32,40,66,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,
-40,67,39,32,67,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,
-32,40,66,32,40,40,67,39,32,66,41,32,40,66,39,32,40,66,39,32,
-40,40,66,32,40,67,39,32,67,41,41,32,40,40,40,83,39,32,66,41,
-32,40,40,66,32,40,83,39,32,95,49,50,49,41,41,32,40,67,32,40,
-95,53,50,55,32,95,50,57,54,41,41,41,41,32,40,40,66,32,40,40,
-67,39,32,66,41,32,40,40,66,32,95,49,50,50,41,32,40,40,67,32,
-40,95,50,49,49,32,95,57,48,49,41,41,32,95,56,57,56,41,41,41,
-41,32,40,67,32,40,95,50,49,49,32,95,50,57,53,41,41,41,41,41,
-41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,67,39,
-32,67,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,
-32,40,40,66,32,66,39,41,32,40,40,40,67,39,32,66,41,32,67,39,
-41,32,40,67,32,95,52,56,49,41,41,41,41,32,40,67,32,95,52,56,
-49,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,67,
-39,32,67,41,41,41,32,40,66,32,67,41,41,41,41,41,41,41,32,40,
-40,67,32,40,40,40,67,39,32,67,39,41,32,95,57,49,54,41,32,40,
-95,56,56,53,32,95,56,56,56,41,41,41,32,34,97,109,98,105,103,117,
-111,117,115,32,111,112,101,114,97,116,111,114,32,101,120,112,114,101,115,115,
-105,111,110,34,41,41,41,41,41,41,41,41,41,41,41,41,41,32,95,49,
-51,57,57,41,41,41,32,40,40,66,32,40,40,67,39,32,67,41,32,40,
-40,66,32,40,40,67,39,32,67,39,41,32,40,40,66,32,67,39,41,32,
-40,40,66,32,67,39,41,32,83,41,41,41,41,32,40,40,66,32,40,66,
-32,40,66,32,40,66,32,40,40,67,39,32,66,41,32,80,41,41,41,41,
-41,32,40,40,66,32,40,66,32,40,66,32,40,67,39,32,40,67,39,32,
-67,41,41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,
-67,39,41,32,40,40,66,32,67,39,41,32,67,39,41,41,41,32,40,40,
-66,32,40,66,32,40,66,32,95,52,56,49,41,41,41,32,40,40,66,32,
-40,67,39,32,95,56,50,52,41,41,32,95,56,50,52,41,41,41,41,41,
-41,41,41,32,95,49,51,57,57,41,41,41,41,32,40,85,32,65,41,41,
-41,32,40,85,32,75,41,41,41,32,75,41,41,32,40,40,67,32,79,41,
-32,75,41,41,41,32,95,52,56,48,41,41,41,41,41,32,40,40,65,32,
-58,49,51,54,53,32,40,40,40,67,39,32,40,67,39,32,67,41,41,32,
-40,40,66,32,40,66,32,40,83,32,95,49,50,56,51,41,41,41,32,40,
-40,66,32,40,66,32,40,66,32,40,40,95,51,51,32,95,53,57,41,32,
-95,49,50,57,54,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
-40,66,32,40,40,95,51,51,32,95,53,57,41,32,95,49,50,57,54,41,
-41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,
-83,39,32,40,83,39,32,40,95,51,52,32,95,53,57,41,41,41,41,41,
-41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,66,41,41,41,
-32,40,40,66,32,40,66,32,66,39,41,41,32,95,49,50,57,49,41,41,
-32,95,49,50,56,48,41,41,32,40,40,66,32,40,66,32,40,95,51,53,
-32,95,53,57,41,41,41,32,80,41,41,41,41,41,41,32,40,95,51,53,
-32,95,53,57,41,41,41,32,40,40,65,32,58,49,51,54,54,32,40,40,
-66,32,40,66,32,40,95,50,55,48,32,40,95,52,57,51,32,40,40,80,
-32,95,56,57,56,41,32,40,40,95,53,49,53,32,95,50,57,49,41,32,
-40,95,51,55,51,32,35,57,41,41,41,41,41,41,41,32,40,67,32,95,
-49,48,49,48,41,41,41,32,40,40,65,32,58,49,51,54,55,32,34,97,
-100,105,99,116,34,41,32,40,40,65,32,58,49,51,54,56,32,40,40,67,
-32,95,49,50,57,57,41,32,95,49,51,54,55,41,41,32,40,40,65,32,
-58,49,51,54,57,32,34,100,105,99,116,34,41,32,40,40,65,32,58,49,
-51,55,48,32,40,40,95,52,56,50,32,95,49,51,54,57,41,32,95,49,
-50,57,56,41,41,32,40,40,65,32,58,49,51,55,49,32,40,40,67,32,
-95,49,50,57,57,41,32,95,49,51,54,57,41,41,32,40,40,65,32,58,
-49,51,55,50,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,95,
-51,51,32,95,53,57,41,41,32,95,49,51,53,56,41,41,32,40,40,66,
-32,40,66,32,40,40,95,50,56,53,32,95,53,55,41,32,95,56,50,54,
-41,41,41,32,40,67,32,40,95,49,51,55,51,32,95,49,50,53,41,41,
-41,41,41,32,40,40,65,32,58,49,51,55,51,32,40,40,66,32,89,41,
-32,40,40,66,32,40,40,83,39,32,83,41,32,40,40,66,32,40,40,67,
-39,32,83,39,41,32,40,40,66,32,67,41,32,40,40,40,67,39,32,83,
-41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,
-40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,
-40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,
-39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,
-83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,
-32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,
-40,40,67,39,32,83,41,32,40,40,67,32,40,40,67,32,83,39,41,32,
-75,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,
-75,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,
-40,90,32,75,41,41,41,32,75,41,41,32,75,41,41,32,40,90,32,75,
-41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,
-40,90,32,40,90,32,75,41,41,41,41,32,40,90,32,75,41,41,41,32,
-40,90,32,75,41,41,41,32,75,41,41,32,75,41,41,41,41,32,40,40,
-66,32,40,66,32,40,40,67,39,32,66,41,32,40,40,66,32,95,50,55,
-48,41,32,95,49,51,49,54,41,41,41,41,32,67,41,41,41,41,32,40,
-40,40,67,39,32,66,41,32,40,40,66,32,67,41,32,40,40,66,32,40,
-40,83,39,32,83,39,41,32,95,49,50,56,52,41,41,32,40,40,66,32,
-40,66,32,40,40,83,39,32,40,95,51,51,32,95,53,57,41,41,32,40,
-40,40,67,39,32,95,49,50,57,57,41,32,40,95,56,56,53,32,40,95,
-56,56,57,32,95,56,57,53,41,41,41,32,34,102,99,110,83,34,41,41,
-41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,66,41,41,
-41,32,40,40,66,32,40,66,32,40,66,32,40,95,51,51,32,95,53,57,
-41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,66,39,32,40,40,
-66,32,95,50,55,48,41,32,95,49,52,49,55,41,41,41,32,40,40,66,
-32,40,95,52,52,32,95,53,57,41,41,32,95,49,51,55,52,41,41,41,
-41,32,40,40,66,32,85,41,32,40,40,66,32,40,40,83,39,32,83,41,
-32,40,40,66,32,85,41,32,40,95,51,53,32,95,53,57,41,41,41,41,
-32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,90,
-41,41,32,40,40,66,32,40,66,32,40,66,32,40,95,51,53,32,95,53,
-57,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,
-79,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,95,50,55,48,
-32,40,95,56,55,48,32,95,52,56,48,41,41,41,41,41,32,40,40,40,
-83,39,32,66,41,32,40,66,39,32,40,40,66,32,95,56,55,49,41,32,
-40,40,40,67,39,32,79,41,32,40,40,66,32,40,80,32,95,52,56,48,
-41,41,32,95,56,50,51,41,41,32,75,41,41,41,41,32,40,40,66,32,
-40,66,32,40,40,67,39,32,95,52,56,50,41,32,95,49,51,56,50,41,
-41,41,32,40,40,40,67,39,32,40,67,39,32,79,41,41,32,95,56,54,
-55,41,32,75,41,41,41,41,41,32,75,41,41,41,41,41,41,41,41,41,
-41,41,32,40,40,66,32,40,66,32,85,41,41,32,40,40,40,67,39,32,
-40,83,39,32,40,67,39,32,40,67,39,32,40,40,83,39,32,40,95,51,
-51,32,95,53,57,41,41,32,95,49,51,54,56,41,41,41,41,41,32,40,
-40,66,32,40,66,32,40,66,32,40,66,32,40,40,67,39,32,66,41,32,
-40,40,66,32,40,95,51,51,32,95,53,57,41,41,32,40,40,67,32,95,
-49,50,57,57,41,32,34,102,99,110,68,34,41,41,41,41,41,41,41,32,
-40,40,66,32,40,66,32,40,40,67,39,32,66,41,32,40,40,66,32,40,
-83,39,32,66,41,41,32,40,40,66,32,40,66,32,95,50,55,48,41,41,
-32,40,67,32,40,95,49,50,54,48,32,95,54,55,51,41,41,41,41,41,
-41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,66,41,41,
-41,32,40,40,66,32,40,66,32,66,39,41,41,32,40,40,66,32,40,66,
-32,40,66,32,40,95,51,51,32,95,53,57,41,41,41,41,32,67,41,41,
-41,32,40,40,66,32,40,66,32,40,66,32,40,95,51,53,32,95,53,57,
-41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,79,
-41,41,41,32,40,40,40,83,39,32,66,41,32,40,40,66,32,83,41,32,
-40,40,66,32,40,67,32,83,41,41,32,40,40,66,32,40,66,32,40,67,
-32,66,41,41,41,32,40,40,40,67,39,32,40,83,39,32,40,67,39,32,
-67,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,67,32,67,39,
-41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,67,41,
-32,40,40,66,32,40,67,32,67,39,41,41,32,40,40,66,32,95,56,55,
-48,41,32,40,40,40,67,39,32,79,41,32,95,56,50,51,41,32,75,41,
-41,41,41,41,32,40,90,32,75,41,41,41,41,32,40,90,32,75,41,41,
-41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,66,39,32,40,40,
-66,32,95,50,55,48,41,32,40,40,66,32,95,56,55,48,41,32,40,40,
-40,67,39,32,79,41,32,95,56,50,51,41,32,75,41,41,41,41,41,32,
-40,40,40,83,39,32,66,41,32,40,40,66,32,95,56,55,49,41,32,40,
-40,40,67,39,32,79,41,32,40,40,66,32,40,80,32,95,52,56,48,41,
-41,32,95,56,50,51,41,41,32,75,41,41,41,32,40,40,40,67,39,32,
-40,67,39,32,79,41,41,32,95,56,54,55,41,32,75,41,41,41,41,41,
-32,75,41,41,41,41,41,41,32,40,95,56,56,53,32,40,95,56,56,57,
-32,95,56,57,53,41,41,41,41,41,41,41,41,32,40,40,65,32,58,49,
-51,55,52,32,40,40,66,32,85,41,32,40,40,40,67,39,32,40,67,39,
-32,66,41,41,32,40,40,66,32,40,66,32,95,50,55,48,41,41,32,95,
-49,51,55,53,41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,
-32,40,40,66,32,40,66,32,40,95,51,51,32,95,53,57,41,41,41,32,
-40,67,32,95,49,51,55,54,41,41,41,32,40,40,66,32,40,66,32,40,
-95,51,53,32,95,53,57,41,41,41,32,95,56,55,48,41,41,41,41,41,
-32,40,40,65,32,58,49,51,55,53,32,40,40,40,83,39,32,67,41,32,
-40,40,66,32,40,67,32,83,39,41,41,32,40,40,67,32,80,41,32,95,
-52,56,48,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,
-40,83,39,32,66,41,41,32,40,40,66,32,40,66,32,40,95,51,51,32,
-95,53,57,41,41,41,32,40,40,67,39,32,40,95,49,51,54,53,32,95,
-54,55,51,41,41,32,40,95,56,56,53,32,95,56,56,56,41,41,41,41,
-41,32,40,40,66,32,40,66,32,40,66,32,85,41,41,41,32,40,40,66,
-32,40,40,67,39,32,66,41,32,40,40,66,32,40,67,39,32,66,41,41,
-32,40,40,66,32,40,66,32,95,50,55,48,41,41,32,40,67,32,95,49,
-51,56,53,41,41,41,41,41,32,40,40,66,32,40,40,67,39,32,40,67,
-39,32,66,41,41,32,40,40,66,32,40,66,32,95,50,55,48,41,41,32,
-40,67,32,95,49,51,55,53,41,41,41,41,32,40,40,40,67,39,32,66,
-41,32,40,67,39,32,66,41,41,32,95,52,56,49,41,41,41,41,41,41,
-41,32,40,40,65,32,58,49,51,55,54,32,40,40,66,32,85,41,32,40,
-40,66,32,40,66,32,40,40,67,39,32,95,50,55,48,41,32,95,49,51,
-57,49,41,41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,
-40,40,66,32,40,66,32,40,95,51,51,32,95,53,57,41,41,41,32,40,
-40,66,32,40,95,52,52,32,95,53,57,41,41,32,95,49,51,55,55,41,
-41,41,32,40,40,66,32,40,66,32,40,95,51,53,32,95,53,57,41,41,
-41,32,40,67,32,95,56,55,49,41,41,41,41,41,41,32,40,40,65,32,
-58,49,51,55,55,32,40,40,66,32,85,41,32,40,40,66,32,40,40,67,
-39,32,66,41,32,40,40,66,32,95,50,55,48,41,32,95,49,51,55,56,
-41,41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,
-66,32,40,66,32,40,95,51,51,32,95,53,57,41,41,41,32,95,49,51,
-56,49,41,41,32,40,40,66,32,40,66,32,40,95,51,53,32,95,53,57,
-41,41,41,32,80,41,41,41,41,41,32,40,40,65,32,58,49,51,55,56,
-32,40,40,67,32,40,40,67,32,83,39,41,32,40,85,32,95,52,56,48,
-41,41,41,32,40,40,66,32,40,40,67,39,32,66,41,32,40,40,66,32,
-95,50,55,48,41,32,95,49,51,55,57,41,41,41,32,40,40,66,32,40,
-40,67,39,32,66,41,32,40,40,66,32,95,50,55,48,41,32,95,49,51,
-55,56,41,41,41,32,40,40,40,67,39,32,66,41,32,66,41,32,95,52,
-56,49,41,41,41,41,41,32,40,40,65,32,58,49,51,55,57,32,40,40,
-40,67,39,32,83,41,32,40,40,67,32,40,40,67,32,83,39,41,32,40,
-40,66,32,40,66,32,40,40,67,39,32,40,95,51,51,32,95,53,57,41,
-41,32,40,95,49,51,53,52,32,95,54,55,51,41,41,41,41,32,40,40,
-66,32,40,66,32,85,41,41,32,40,40,66,32,40,40,67,39,32,66,41,
-32,40,40,66,32,40,67,39,32,95,50,55,48,41,41,32,40,67,32,95,
-49,51,56,53,41,41,41,41,32,40,40,40,67,39,32,66,41,32,66,41,
-32,40,67,32,95,56,54,52,41,41,41,41,41,41,41,32,40,40,66,32,
-40,40,67,39,32,40,95,51,51,32,95,53,57,41,41,32,40,40,40,83,
-39,32,95,49,51,56,49,41,32,40,40,66,32,95,49,51,57,56,41,32,
-40,95,56,56,53,32,95,56,56,56,41,41,41,32,73,41,41,41,32,40,
-40,67,32,66,41,32,95,56,54,53,41,41,41,41,32,40,40,66,32,40,
-40,67,39,32,95,50,55,48,41,32,95,49,51,57,49,41,41,32,40,40,
-67,32,66,41,32,95,56,54,54,41,41,41,41,32,40,40,65,32,58,49,
-51,56,48,32,40,40,66,32,40,66,32,85,41,41,32,40,40,66,32,40,
-40,67,39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,95,
-50,55,48,41,41,32,95,49,51,56,53,41,41,41,32,40,40,40,67,39,
-32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,40,95,51,51,
-32,95,53,57,41,41,41,32,95,49,51,55,54,41,41,32,40,40,66,32,
-40,66,32,40,95,51,53,32,95,53,57,41,41,41,32,80,41,41,41,41,
-41,32,40,40,65,32,58,49,51,56,49,32,40,40,40,67,39,32,40,67,
-39,32,40,95,51,51,32,95,53,57,41,41,41,32,40,40,66,32,40,66,
-32,40,95,50,55,48,32,95,49,52,49,54,41,41,41,32,40,95,49,51,
-53,53,32,95,54,55,51,41,41,41,32,40,85,32,40,40,40,83,39,32,
-67,41,32,40,40,66,32,40,83,32,95,52,48,57,41,41,32,40,40,66,
-32,40,66,32,40,95,50,55,48,32,40,95,51,53,32,95,53,57,41,41,
-41,41,32,40,40,67,39,32,95,56,50,57,41,32,95,49,51,56,50,41,
-41,41,41,32,40,95,51,53,32,95,53,57,41,41,41,41,41,32,40,40,
-65,32,58,49,51,56,50,32,40,95,52,49,49,32,40,85,32,40,40,40,
-67,39,32,40,67,39,32,79,41,41,32,40,40,40,67,39,32,66,41,32,
-95,56,54,55,41,32,40,40,40,67,39,32,79,41,32,40,40,66,32,40,
-95,56,55,48,32,95,52,56,48,41,41,32,40,40,40,67,39,32,95,56,
-55,49,41,32,40,40,40,67,39,32,79,41,32,40,80,32,95,52,56,48,
-41,41,32,75,41,41,32,95,52,56,48,41,41,41,32,75,41,41,41,32,
-75,41,41,41,41,32,40,40,65,32,58,49,51,56,51,32,40,40,40,83,
-39,32,40,83,39,32,40,83,39,32,80,41,41,41,32,40,40,66,32,40,
-66,32,67,41,41,32,95,49,51,53,55,41,41,32,40,40,40,67,39,32,
-40,67,39,32,40,67,39,32,40,67,39,32,40,95,51,51,32,95,53,57,
-41,41,41,41,41,32,40,40,66,32,40,66,32,67,41,41,32,40,40,40,
-67,39,32,67,41,32,95,49,51,56,52,41,32,95,50,54,41,41,41,32,
-40,75,32,40,40,95,51,53,32,95,53,57,41,32,95,49,52,53,48,41,
-41,41,41,41,32,40,40,65,32,58,49,51,56,52,32,40,40,40,83,39,
-32,66,41,32,40,66,39,32,40,66,39,32,40,40,66,32,40,83,39,32,
-40,95,51,51,32,95,53,57,41,41,41,32,95,49,52,48,54,41,41,41,
-41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,85,41,
-41,41,41,41,32,40,40,40,83,39,32,40,83,39,32,40,67,39,32,40,
-83,39,32,66,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,66,
-39,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,67,
-39,32,40,95,51,51,32,95,53,57,41,41,41,41,41,41,32,95,49,52,
-49,49,41,41,41,32,40,40,66,32,40,66,32,40,40,67,39,32,40,67,
-39,32,66,41,41,32,40,40,66,32,66,39,41,32,40,40,66,32,40,66,
-32,40,95,51,51,32,95,53,57,41,41,41,32,40,40,66,32,40,66,32,
-95,49,52,48,50,41,41,32,40,40,40,67,39,32,66,41,32,79,41,32,
-40,40,67,32,79,41,32,75,41,41,41,41,41,41,41,41,32,40,40,40,
-67,39,32,40,67,39,32,40,67,39,32,66,41,41,41,32,40,40,66,32,
-40,66,32,40,66,32,40,67,39,32,40,95,51,52,32,95,53,57,41,41,
-41,41,41,32,40,40,66,32,40,66,32,40,40,67,39,32,40,67,39,32,
-95,50,55,48,41,41,32,40,40,66,32,40,66,32,40,95,52,54,32,95,
-53,57,41,41,41,32,40,40,66,32,40,66,32,95,49,50,51,41,41,32,
-40,40,66,32,40,66,32,95,52,48,57,41,41,32,40,40,67,39,32,95,
-52,49,51,41,32,40,67,32,40,95,52,53,49,32,95,57,55,52,41,41,
-41,41,41,41,41,41,41,32,40,40,40,67,39,32,67,41,32,95,49,50,
-57,48,41,32,34,83,117,98,115,117,109,112,116,105,111,110,32,99,104,101,
-99,107,32,102,97,105,108,101,100,34,41,41,41,41,32,40,95,51,53,32,
-95,53,57,41,41,41,41,41,41,41,32,40,40,65,32,58,49,51,56,53,
-32,40,40,40,83,39,32,40,83,39,32,83,41,41,32,40,40,40,67,39,
-32,40,67,39,32,40,67,39,32,83,41,41,41,32,40,40,40,67,39,32,
-40,67,39,32,40,67,39,32,83,41,41,41,32,40,40,40,67,39,32,40,
-67,39,32,40,67,39,32,83,41,41,41,32,40,40,40,67,39,32,40,67,
-39,32,40,67,39,32,83,41,41,41,32,40,40,40,67,39,32,40,67,39,
-32,40,67,39,32,83,41,41,41,32,40,40,40,67,39,32,40,67,39,32,
-40,67,39,32,83,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,
-67,39,32,83,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,
-39,32,83,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,
-32,83,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,
-83,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,83,
-41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,83,41,
-41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,83,41,41,
-41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,83,41,41,41,
-32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,83,41,41,41,32,
-40,40,40,67,39,32,40,67,39,32,40,67,39,32,83,41,41,41,32,40,
-40,40,67,39,32,67,41,32,40,40,66,32,40,40,83,39,32,67,39,41,
-32,83,39,41,41,32,40,40,66,32,40,66,32,40,66,32,40,40,67,39,
-32,83,41,32,40,40,67,39,32,95,49,50,51,41,32,95,57,57,49,41,
-41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,66,39,32,40,40,
-66,32,40,67,39,32,95,50,55,48,41,41,32,40,40,66,32,40,66,32,
-40,95,49,51,49,53,32,95,54,55,51,41,41,41,32,40,40,40,67,39,
-32,40,67,39,32,79,41,41,32,40,67,32,80,41,41,32,75,41,41,41,
-41,41,32,85,41,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,
-75,41,41,41,32,75,41,41,32,40,90,32,75,41,41,41,32,40,90,32,
-75,41,41,41,32,40,90,32,75,41,41,41,32,75,41,41,32,75,41,41,
-32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,
-75,41,41,41,32,40,90,32,40,90,32,75,41,41,41,41,32,40,90,32,
-75,41,41,41,32,40,90,32,75,41,41,41,32,75,41,41,32,75,41,41,
-32,40,90,32,75,41,41,41,32,40,40,40,67,39,32,40,83,39,32,40,
-67,39,32,40,40,83,39,32,40,95,51,52,32,95,53,57,41,41,32,95,
-49,51,56,57,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,
-40,67,39,32,40,95,51,51,32,95,53,57,41,41,32,40,40,95,52,52,
-32,95,53,57,41,32,40,40,40,67,39,32,40,95,50,56,53,32,95,53,
-55,41,41,32,80,41,32,95,49,50,57,54,41,41,41,41,41,41,32,40,
-40,66,32,40,66,32,40,66,32,40,40,67,39,32,95,50,55,48,41,32,
-40,95,49,51,49,53,32,95,54,55,51,41,41,41,41,41,32,40,40,40,
-67,39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,40,95,
-51,51,32,95,53,57,41,41,41,32,95,49,51,56,54,41,41,32,40,40,
-66,32,85,41,32,40,90,32,40,40,66,32,40,66,32,40,40,83,39,32,
-40,95,51,51,32,95,53,57,41,41,32,40,95,49,51,57,48,32,35,48,
-41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,85,41,41,41,32,
-40,40,67,39,32,66,41,32,40,40,66,32,95,50,55,48,41,32,40,95,
-49,50,53,57,32,95,54,55,51,41,41,41,41,41,41,41,41,41,41,41,
-32,95,56,55,52,41,41,41,32,40,40,65,32,58,49,51,56,54,32,40,
-95,49,51,53,51,32,95,49,51,56,56,41,41,32,40,40,65,32,58,49,
-51,56,55,32,40,40,95,49,51,53,50,32,95,54,55,51,41,32,95,49,
-51,56,56,41,41,32,40,40,65,32,58,49,51,56,56,32,40,40,66,32,
-89,41,32,40,40,40,67,39,32,40,67,39,32,83,41,41,32,40,40,40,
-67,39,32,40,67,39,32,40,83,39,32,67,41,41,41,32,40,40,40,67,
-39,32,40,67,39,32,40,67,39,32,40,67,39,32,83,41,41,41,41,32,
-40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,83,41,
-41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,
-39,32,83,41,41,41,41,32,40,40,40,83,39,32,40,83,39,32,40,67,
-39,32,40,83,39,32,67,41,41,41,41,32,40,40,40,83,39,32,40,67,
-39,32,40,67,39,32,40,83,39,32,67,41,41,41,41,32,40,40,40,67,
-39,32,40,67,39,32,40,67,39,32,40,67,39,32,83,41,41,41,41,32,
-40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,83,41,
-41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,
-39,32,83,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,
-39,32,40,67,39,32,83,41,41,41,41,32,40,40,40,83,39,32,40,67,
-39,32,40,67,39,32,40,83,39,32,83,41,41,41,41,32,40,40,40,83,
-39,32,40,67,39,32,40,67,39,32,40,83,39,32,67,41,41,41,41,32,
-40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,83,41,
-41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,
-39,32,83,41,41,41,41,32,40,40,40,83,39,32,40,67,39,32,40,67,
-39,32,67,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,
-32,40,67,39,32,67,39,41,41,41,41,32,40,40,40,67,39,32,66,41,
-32,40,40,66,32,40,67,39,32,67,41,41,32,40,40,40,83,39,32,67,
-41,32,40,40,66,32,40,83,32,83,39,41,41,32,40,40,40,83,39,32,
-66,41,32,40,40,66,32,40,67,39,32,67,41,41,32,40,40,66,32,40,
-66,32,40,83,32,95,57,57,54,41,41,41,32,40,40,40,83,39,32,40,
-83,39,32,83,41,41,32,40,40,66,32,40,66,32,40,83,32,95,57,57,
-49,41,41,41,32,40,40,40,67,39,32,66,41,32,40,66,39,32,40,40,
-66,32,40,95,51,51,32,95,53,57,41,41,32,95,49,51,53,56,41,41,
-41,32,40,40,66,32,40,40,67,39,32,66,41,32,40,40,66,32,40,95,
-51,51,32,95,53,57,41,41,32,40,95,49,51,48,49,32,95,54,55,51,
-41,41,41,41,32,40,40,66,32,40,66,32,85,41,41,32,40,40,40,67,
-39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,40,67,39,
-32,40,95,51,52,32,95,53,57,41,41,41,41,32,40,40,40,67,39,32,
-40,67,39,32,67,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,
-39,32,83,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,
-32,83,41,41,41,32,40,40,66,32,40,66,32,40,40,67,39,32,67,41,
-32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,
-40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,
-67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,
-32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,
-41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,
-40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,
-67,32,40,40,67,32,83,39,41,32,75,41,41,32,40,90,32,75,41,41,
-41,32,40,90,32,75,41,41,41,32,75,41,41,32,40,90,32,75,41,41,
-41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,75,41,
-41,32,75,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,
-41,32,40,90,32,75,41,41,41,32,40,90,32,40,90,32,75,41,41,41,
-41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,41,41,32,
-40,40,66,32,67,41,32,40,95,49,51,53,55,32,95,54,55,51,41,41,
-41,41,32,75,41,41,32,40,90,32,75,41,41,41,32,40,95,49,51,57,
-57,32,95,54,55,51,41,41,41,41,32,40,40,66,32,40,95,51,53,32,
-95,53,57,41,41,32,40,67,32,40,40,80,32,95,52,56,48,41,32,95,
-52,56,48,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,
-40,40,67,39,32,40,95,51,51,32,95,53,57,41,41,32,40,95,49,51,
-48,49,32,95,54,55,51,41,41,41,41,32,40,40,66,32,40,66,32,40,
-40,83,39,32,40,95,51,52,32,95,53,57,41,41,32,40,85,32,40,75,
-32,40,40,67,32,40,40,67,32,40,40,67,32,40,40,67,32,40,40,67,
-32,40,40,67,32,40,40,67,32,40,40,67,32,40,40,67,32,40,40,67,
-32,40,40,67,32,40,40,67,32,40,40,67,32,40,40,67,32,40,40,67,
-32,40,40,67,32,40,40,80,32,40,75,32,95,50,54,41,41,32,40,75,
-32,40,75,32,95,50,54,41,41,41,41,32,40,75,32,40,75,32,95,50,
-54,41,41,41,41,32,40,75,32,95,50,54,41,41,41,32,40,75,32,40,
-75,32,95,50,54,41,41,41,41,32,40,75,32,40,75,32,95,50,54,41,
-41,41,41,32,40,75,32,40,75,32,95,50,54,41,41,41,41,32,40,75,
-32,95,50,54,41,41,41,32,40,75,32,95,50,54,41,41,41,32,40,75,
-32,40,75,32,95,50,54,41,41,41,41,32,40,75,32,40,75,32,95,50,
-54,41,41,41,41,32,40,75,32,40,75,32,95,50,54,41,41,41,41,32,
-40,75,32,40,75,32,40,75,32,95,50,54,41,41,41,41,41,32,40,75,
-32,40,75,32,95,50,54,41,41,41,41,32,40,75,32,40,75,32,95,50,
-54,41,41,41,41,32,40,75,32,95,50,54,41,41,41,32,40,75,32,95,
-50,54,41,41,41,32,40,75,32,40,40,67,32,40,40,67,32,40,40,67,
-32,40,40,67,32,40,40,67,32,40,40,67,32,40,40,67,32,40,40,67,
-32,40,40,67,32,40,40,67,32,40,40,67,32,40,40,67,32,40,40,67,
-32,40,40,67,32,40,40,67,32,40,40,67,32,40,40,80,32,40,75,32,
-95,50,54,41,41,32,40,75,32,40,75,32,95,50,54,41,41,41,41,32,
-40,75,32,40,75,32,95,50,54,41,41,41,41,32,40,75,32,95,50,54,
-41,41,41,32,40,75,32,40,75,32,95,50,54,41,41,41,41,32,40,75,
-32,40,75,32,95,50,54,41,41,41,41,32,40,75,32,40,75,32,95,50,
-54,41,41,41,41,32,40,75,32,95,50,54,41,41,41,32,40,75,32,95,
-50,54,41,41,41,32,40,75,32,40,75,32,95,50,54,41,41,41,41,32,
-40,75,32,40,75,32,95,50,54,41,41,41,41,32,40,75,32,40,75,32,
-95,50,54,41,41,41,41,32,40,75,32,40,75,32,40,75,32,95,50,54,
-41,41,41,41,41,32,40,75,32,40,75,32,95,50,54,41,41,41,41,32,
-40,75,32,40,75,32,95,50,54,41,41,41,41,32,40,75,32,95,50,54,
-41,41,41,32,40,75,32,95,50,54,41,41,41,32,40,75,32,40,75,32,
-40,40,95,51,53,32,95,53,57,41,32,95,49,52,53,48,41,41,41,41,
-41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,40,67,39,32,
-40,95,51,51,32,95,53,57,41,41,32,95,49,51,48,52,41,41,41,32,
-40,40,40,67,39,32,40,67,39,32,67,41,41,32,40,40,66,32,40,66,
-32,40,67,32,66,41,41,41,32,40,40,66,32,40,66,32,40,40,67,39,
-32,66,41,32,40,40,66,32,67,41,32,40,40,40,83,39,32,67,41,32,
-40,40,40,83,39,32,67,41,32,40,40,40,83,39,32,67,41,32,40,40,
-40,83,39,32,67,41,32,40,40,40,83,39,32,67,41,32,40,40,40,83,
-39,32,67,41,32,40,40,40,83,39,32,67,41,32,40,40,40,83,39,32,
-67,41,32,40,40,40,83,39,32,67,41,32,40,40,40,83,39,32,67,41,
-32,40,40,40,83,39,32,67,41,32,40,40,40,83,39,32,67,41,32,40,
-40,40,83,39,32,67,41,32,40,40,40,83,39,32,67,41,32,40,40,40,
-83,39,32,67,41,32,40,40,40,83,39,32,80,41,32,75,41,32,40,90,
-32,75,41,41,41,32,40,90,32,75,41,41,41,32,75,41,41,32,40,90,
-32,75,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,
-41,32,75,41,41,32,75,41,41,32,40,90,32,75,41,41,41,32,40,90,
-32,75,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,40,90,32,
-75,41,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,
-41,32,75,41,41,32,75,41,41,41,41,41,32,40,40,66,32,40,66,32,
-40,66,32,40,40,67,39,32,40,83,39,32,40,95,51,51,32,95,53,57,
-41,41,41,32,95,49,52,48,53,41,41,41,41,32,40,40,66,32,40,66,
-32,40,66,32,40,66,32,85,41,41,41,41,32,40,40,66,32,40,40,83,
-39,32,40,67,39,32,40,67,39,32,66,41,41,41,32,40,40,66,32,40,
-66,32,40,66,32,40,67,39,32,40,95,51,51,32,95,53,57,41,41,41,
-41,41,32,40,40,66,32,40,40,83,39,32,40,67,39,32,67,41,41,32,
-40,40,66,32,40,66,32,40,67,32,95,49,50,56,52,41,41,41,32,40,
-40,66,32,40,66,32,40,95,51,53,32,95,53,57,41,41,41,32,40,40,
-66,32,67,41,32,40,80,32,95,52,56,48,41,41,41,41,41,41,32,40,
-40,66,32,40,66,32,85,41,41,32,40,40,40,67,39,32,66,41,32,40,
-66,39,32,40,66,39,32,40,40,66,32,40,95,51,51,32,95,53,57,41,
-41,32,95,49,51,54,56,41,41,41,41,32,40,40,66,32,40,66,32,40,
-66,32,40,66,32,40,95,51,53,32,95,53,57,41,41,41,41,41,32,40,
-40,66,32,40,66,32,40,67,39,32,67,41,41,41,32,40,40,66,32,40,
-40,67,39,32,40,83,39,32,80,41,41,32,40,40,40,67,39,32,40,67,
-39,32,79,41,41,32,40,67,32,80,41,41,32,75,41,41,41,32,40,40,
-40,67,39,32,66,41,32,95,56,50,52,41,32,95,56,50,51,41,41,41,
-41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,85,41,
-41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,66,
-32,66,39,41,32,40,40,66,32,40,66,32,40,67,39,32,40,67,39,32,
-40,95,51,51,32,95,53,57,41,41,41,41,41,32,40,40,67,32,40,40,
-40,67,39,32,83,39,41,32,40,40,66,32,83,39,41,32,83,39,41,41,
-32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,67,39,32,40,67,
-39,32,40,95,51,52,32,95,53,57,41,41,41,41,32,40,40,66,32,67,
-41,32,40,95,49,51,53,55,32,95,54,55,51,41,41,41,41,32,40,95,
-51,53,32,95,53,57,41,41,41,41,32,40,40,66,32,40,66,32,67,41,
-41,32,40,95,49,51,56,52,32,95,54,55,51,41,41,41,41,41,41,32,
-40,40,66,32,40,66,32,40,66,32,40,95,51,53,32,95,53,57,41,41,
-41,41,32,40,40,66,32,40,66,32,67,41,41,32,80,41,41,41,41,41,
-41,41,41,41,41,32,40,40,40,110,111,77,97,116,99,104,32,34,115,114,
-99,47,77,105,99,114,111,72,115,47,84,121,112,101,67,104,101,99,107,46,
-104,115,34,41,32,35,49,56,56,49,41,32,35,49,55,41,41,41,41,41,
-41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,95,
-51,51,32,95,53,57,41,41,32,95,49,51,53,56,41,41,32,40,90,32,
-40,40,66,32,40,95,51,53,32,95,53,57,41,41,32,40,67,32,40,40,
-80,32,95,52,56,48,41,32,95,52,56,48,41,41,41,41,41,41,41,41,
-32,40,40,66,32,40,66,32,40,40,67,39,32,66,41,32,40,40,66,32,
-40,95,51,51,32,95,53,57,41,41,32,95,49,51,56,55,41,41,41,41,
-32,40,40,66,32,40,66,32,40,66,32,85,41,41,41,32,40,40,66,32,
-40,66,32,40,66,32,40,67,32,66,41,41,41,41,32,40,40,66,32,40,
-40,83,39,32,66,41,32,40,40,66,32,40,67,39,32,66,41,41,32,40,
-40,66,32,66,39,41,32,40,40,66,32,66,39,41,32,40,40,66,32,40,
-66,32,40,95,51,51,32,95,53,57,41,41,41,32,40,95,49,51,54,53,
-32,95,54,55,51,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,
-40,66,32,40,66,32,40,66,32,40,66,32,85,41,41,41,41,41,41,32,
-40,40,66,32,40,66,32,40,40,67,39,32,66,41,32,40,66,39,32,40,
-66,39,32,40,40,66,32,40,67,39,32,66,41,41,32,40,40,66,32,40,
-66,32,40,95,51,51,32,95,53,57,41,41,41,32,40,67,32,95,49,51,
-56,54,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,
-32,40,66,32,40,66,32,40,66,32,85,41,41,41,41,41,41,32,40,40,
-40,67,39,32,40,67,39,32,66,41,41,32,40,40,66,32,66,39,41,32,
-40,40,66,32,66,39,41,32,40,40,66,32,40,66,32,40,67,39,32,66,
-41,41,41,32,40,40,66,32,40,66,32,66,39,41,41,32,40,40,66,32,
-40,66,32,66,39,41,41,32,40,40,66,32,40,66,32,40,66,32,40,95,
-51,52,32,95,53,57,41,41,41,41,32,40,40,67,39,32,67,41,32,40,
-95,49,51,56,51,32,95,54,55,51,41,41,41,41,41,41,41,41,41,32,
-40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
-95,51,53,32,95,53,57,41,41,41,41,41,41,41,32,40,40,40,67,39,
-32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,40,67,39,32,
-40,67,39,32,66,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
-40,66,32,67,41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,
-66,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,80,41,41,
-32,95,52,56,50,41,41,41,32,95,52,56,50,41,41,41,41,32,95,56,
-50,52,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,67,39,
-32,40,67,39,32,40,95,51,51,32,95,53,57,41,41,41,32,40,95,49,
-51,54,52,32,95,54,55,51,41,41,41,41,32,75,41,41,32,40,40,40,
-67,39,32,40,67,39,32,40,67,39,32,40,95,51,51,32,95,53,57,41,
-41,41,41,32,40,40,40,83,39,32,40,83,39,32,83,41,41,32,40,40,
-40,67,39,32,40,67,39,32,40,67,39,32,83,41,41,41,32,40,40,40,
-67,39,32,40,67,39,32,40,67,39,32,83,41,41,41,32,40,40,40,67,
-39,32,40,67,39,32,40,67,39,32,83,41,41,41,32,40,40,40,67,39,
-32,40,67,39,32,40,67,39,32,83,41,41,41,32,40,40,40,67,39,32,
-40,67,39,32,40,67,39,32,83,41,41,41,32,40,40,40,67,39,32,40,
-67,39,32,40,67,39,32,83,41,41,41,32,40,40,66,32,40,66,32,40,
-67,32,40,40,67,32,67,39,41,32,75,41,41,41,41,32,40,40,40,67,
-39,32,40,67,39,32,66,41,41,32,95,49,51,54,50,41,32,40,40,66,
-32,95,56,53,53,41,32,95,51,55,52,41,41,41,41,32,75,41,41,32,
-75,41,41,32,75,41,41,32,75,41,41,32,75,41,41,32,75,41,41,32,
-95,49,51,54,50,41,41,32,40,40,66,32,40,95,51,53,32,95,53,57,
-41,41,32,40,67,32,40,40,80,32,95,52,56,48,41,32,95,52,56,48,
-41,41,41,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,
-41,41,32,40,40,66,32,40,66,32,40,40,83,39,32,40,95,51,51,32,
-95,53,57,41,41,32,40,40,66,32,40,40,95,50,56,49,32,95,53,55,
-41,32,95,52,51,51,41,41,32,40,40,95,52,52,32,95,53,57,41,32,
-95,49,51,56,55,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,
-32,85,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,
-66,41,41,41,32,40,40,66,32,40,66,32,40,66,32,67,41,41,41,32,
-40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,66,41,
-41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,95,51,
-52,32,95,53,57,41,41,41,41,41,32,40,40,40,67,39,32,40,83,39,
-32,66,41,41,32,40,40,66,32,66,39,41,32,40,67,32,40,95,49,50,
-56,55,32,95,54,55,51,41,41,41,41,32,40,40,66,32,40,66,32,95,
-49,50,55,57,41,41,32,40,40,40,67,39,32,66,41,32,95,56,56,49,
-41,32,95,52,50,56,41,41,41,41,41,32,40,40,66,32,40,95,51,53,
-32,95,53,57,41,41,32,40,40,40,83,39,32,67,41,32,40,40,40,83,
-39,32,80,41,32,40,40,66,32,95,52,49,48,41,32,40,85,32,40,90,
-32,75,41,41,41,41,32,40,40,66,32,95,52,49,48,41,32,40,85,32,
-40,75,32,75,41,41,41,41,41,32,40,40,66,32,95,56,51,48,41,32,
-40,85,32,40,75,32,65,41,41,41,41,41,41,41,41,32,95,52,51,52,
-41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,83,39,32,
-67,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,83,39,32,67,
-41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,83,39,32,67,41,
-41,41,32,40,40,40,67,39,32,40,67,39,32,40,83,39,32,67,41,41,
-41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,66,32,
-40,66,32,80,41,41,32,40,40,66,32,40,66,32,40,66,32,40,40,95,
-51,51,32,95,53,57,41,32,95,49,50,57,54,41,41,41,41,32,40,40,
-40,67,39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,40,
-83,39,32,40,95,51,52,32,95,53,57,41,41,41,41,32,40,40,40,67,
-39,32,40,83,39,32,66,41,41,32,40,67,32,40,95,49,50,56,55,32,
-95,54,55,51,41,41,41,32,40,40,66,32,95,49,50,55,56,41,32,95,
-49,51,57,55,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,
-95,51,51,32,95,53,57,41,41,41,32,40,40,67,39,32,40,95,52,52,
-32,95,53,57,41,41,32,95,49,51,56,54,41,41,32,40,40,66,32,40,
-40,66,32,40,95,51,53,32,95,53,57,41,41,32,40,40,40,83,39,32,
-67,41,32,40,40,40,83,39,32,80,41,32,40,40,66,32,95,52,49,48,
-41,32,40,85,32,40,90,32,75,41,41,41,41,32,40,40,66,32,95,52,
-49,48,41,32,40,85,32,40,75,32,75,41,41,41,41,41,32,40,40,66,
-32,95,56,51,49,41,32,40,40,66,32,95,56,52,54,41,32,40,85,32,
-40,75,32,65,41,41,41,41,41,41,41,32,95,52,51,52,41,41,41,41,
-41,41,32,40,90,32,75,41,41,41,32,75,41,41,32,40,90,32,75,41,
-41,41,32,40,90,32,75,41,41,41,32,40,90,32,40,90,32,75,41,41,
-41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,
-40,90,32,75,41,41,41,32,40,90,32,40,90,32,75,41,41,41,41,32,
-40,40,66,32,40,66,32,40,66,32,40,40,67,39,32,40,95,51,51,32,
-95,53,57,41,41,32,40,40,95,49,51,52,57,32,95,54,55,51,41,32,
-40,95,49,51,53,49,32,95,56,55,57,41,41,41,41,41,41,32,40,40,
-40,67,39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,40,
-83,39,32,40,95,51,52,32,95,53,57,41,41,41,41,32,40,40,67,39,
-32,67,41,32,40,95,49,51,56,51,32,95,54,55,51,41,41,41,41,32,
-40,67,32,95,49,51,56,54,41,41,41,41,41,32,40,40,66,32,40,66,
-32,40,66,32,40,40,83,39,32,66,41,32,40,40,66,32,40,95,51,51,
-32,95,53,57,41,41,32,40,95,49,51,48,49,32,95,54,55,51,41,41,
-41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
-32,85,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,
-32,90,41,41,41,41,32,40,40,66,32,40,40,67,39,32,66,41,32,40,
-66,39,32,40,40,66,32,40,67,39,32,66,41,41,32,40,66,32,40,95,
-51,51,32,95,53,57,41,41,41,41,41,41,32,40,40,66,32,40,66,32,
-40,66,32,40,66,32,85,41,41,41,41,32,40,40,40,67,39,32,66,41,
-32,40,66,39,32,40,66,39,32,40,66,39,32,40,66,39,32,40,66,39,
-32,40,40,66,32,40,95,51,51,32,95,53,57,41,41,32,95,49,51,53,
-56,41,41,41,41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,
-66,32,40,67,39,32,66,41,41,32,40,40,66,32,66,39,41,32,40,40,
-66,32,66,39,41,32,40,40,66,32,40,66,32,40,67,39,32,40,95,51,
-52,32,95,53,57,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,
-67,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,83,41,
-41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,83,41,41,
-41,32,40,40,66,32,40,40,67,39,32,66,41,32,40,40,66,32,67,41,
-32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,
-40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,
-67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,
-32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,
-41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,
-40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,
-67,32,40,40,67,32,83,39,41,32,75,41,41,32,40,90,32,75,41,41,
-41,32,40,90,32,75,41,41,41,32,75,41,41,32,40,90,32,75,41,41,
-41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,75,41,
-41,32,75,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,
-41,32,40,90,32,75,41,41,41,32,40,90,32,40,90,32,75,41,41,41,
-41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,41,41,32,
-40,40,66,32,67,41,32,40,95,49,51,53,55,32,95,54,55,51,41,41,
-41,41,32,75,41,41,32,40,90,32,75,41,41,41,32,40,95,49,51,57,
-57,32,95,54,55,51,41,41,41,41,41,41,41,32,40,40,66,32,40,66,
-32,40,66,32,40,66,32,40,95,51,53,32,95,53,57,41,41,41,41,41,
-32,40,40,66,32,40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,
-66,32,40,66,32,67,41,41,32,80,41,41,41,32,95,56,51,55,41,41,
-41,41,41,41,41,41,41,41,41,32,75,41,41,32,75,41,41,32,40,90,
-32,75,41,41,41,32,40,40,66,32,40,95,50,55,48,32,95,50,53,41,
-41,32,40,40,66,32,40,95,52,56,50,32,34,116,99,80,97,116,58,32,
-34,41,41,32,40,40,40,83,39,32,95,52,56,50,41,32,40,40,66,32,
-40,95,49,55,49,52,32,95,57,55,50,41,41,32,40,95,56,56,53,32,
-95,56,56,56,41,41,41,32,40,40,66,32,40,95,52,56,50,32,40,40,
-79,32,35,51,50,41,32,75,41,41,41,32,40,95,49,55,49,52,32,95,
-57,49,56,41,41,41,41,41,41,41,32,40,95,56,56,53,32,95,56,56,
-56,41,41,41,41,32,40,40,65,32,58,49,51,56,57,32,40,40,40,83,
-39,32,95,50,55,48,41,32,40,40,66,32,40,95,52,54,32,95,53,57,
-41,41,32,40,95,52,55,54,32,95,57,55,52,41,41,41,32,40,40,66,
-32,40,40,40,83,39,32,95,50,55,48,41,32,40,40,66,32,40,95,49,
-49,56,51,32,95,54,55,51,41,41,32,40,95,56,56,53,32,95,56,56,
-55,41,41,41,32,40,40,66,32,40,95,52,56,50,32,34,77,117,108,116,
-105,112,108,121,32,100,101,102,105,110,101,100,58,32,34,41,41,32,95,57,
-56,52,41,41,41,32,95,52,52,55,41,41,41,32,40,40,65,32,58,49,
-51,57,48,32,40,40,66,32,89,41,32,40,40,40,83,39,32,40,67,39,
-32,83,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,83,
-41,41,41,32,40,40,40,83,39,32,40,67,39,32,40,67,39,32,67,41,
-41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,83,41,41,
-41,32,40,40,40,67,39,32,40,83,39,32,40,67,39,32,67,41,41,41,
-32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,67,39,32,67,41,
-41,32,40,40,40,67,39,32,40,67,39,32,83,41,41,32,40,40,40,67,
-39,32,40,67,39,32,83,41,41,32,40,40,40,67,39,32,40,67,39,32,
-83,41,41,32,40,40,40,67,39,32,40,67,39,32,83,41,41,32,40,40,
-40,67,39,32,40,67,39,32,83,41,41,32,40,40,40,67,39,32,40,67,
-39,32,83,41,41,32,40,40,40,67,39,32,40,67,39,32,83,41,41,32,
-40,40,40,67,39,32,40,67,39,32,83,41,41,32,40,40,40,67,39,32,
-40,67,39,32,83,41,41,32,40,40,40,67,39,32,40,67,39,32,83,41,
-41,32,40,40,40,67,39,32,40,67,39,32,83,41,41,32,40,40,66,32,
-40,67,32,40,40,67,32,67,39,41,32,75,41,41,41,32,40,40,40,67,
-39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,40,95,51,
-52,32,95,53,57,41,41,41,32,40,40,66,32,95,49,51,57,48,41,32,
-40,40,67,32,40,95,53,48,57,32,95,50,57,49,41,41,32,35,49,41,
-41,41,41,32,40,95,49,51,57,48,32,35,48,41,41,41,41,32,40,90,
-32,75,41,41,41,32,75,41,41,32,40,90,32,75,41,41,41,32,40,90,
-32,75,41,41,41,32,40,90,32,75,41,41,41,32,75,41,41,32,75,41,
-41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,40,90,
-32,75,41,41,41,32,40,90,32,40,90,32,75,41,41,41,41,41,32,90,
-41,41,32,75,41,41,32,75,41,41,32,40,40,40,67,39,32,83,41,32,
-40,40,40,67,39,32,40,83,39,32,67,41,41,32,40,40,40,83,39,32,
-66,41,32,40,40,66,32,83,41,32,40,95,53,50,55,32,95,50,57,54,
-41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,67,41,32,
-40,40,40,67,39,32,67,41,32,40,95,53,50,57,32,95,50,57,54,41,
-41,32,40,40,95,51,53,32,95,53,57,41,32,95,49,52,53,48,41,41,
-41,41,32,40,40,40,67,39,32,95,50,55,48,41,32,40,40,66,32,40,
-95,49,49,56,51,32,95,54,55,51,41,41,32,40,95,56,56,53,32,95,
-56,57,49,41,41,41,32,34,116,111,111,32,109,97,110,121,32,97,114,103,
-117,109,101,110,116,115,34,41,41,41,41,32,40,40,40,67,39,32,40,95,
-49,49,56,51,32,95,54,55,51,41,41,32,40,95,56,56,53,32,95,56,
-57,49,41,41,32,34,116,111,111,32,102,101,119,32,97,114,103,117,109,101,
-110,116,115,34,41,41,41,32,95,56,53,51,41,41,41,32,40,90,32,75,
-41,41,41,32,40,40,66,32,40,83,32,40,40,40,67,39,32,67,41,32,
-40,40,40,67,39,32,40,67,39,32,83,41,41,32,40,40,40,67,39,32,
-40,67,39,32,83,41,41,32,40,40,40,67,39,32,40,67,39,32,83,41,
-41,32,40,40,40,67,39,32,40,67,39,32,83,41,41,32,40,40,40,67,
-39,32,40,67,39,32,83,41,41,32,40,40,40,67,39,32,40,67,39,32,
-83,41,41,32,40,40,40,67,39,32,40,67,39,32,83,41,41,32,40,40,
-40,67,39,32,40,67,39,32,83,41,41,32,40,40,40,67,39,32,40,67,
-39,32,83,41,41,32,40,40,40,67,39,32,40,83,39,32,83,41,41,32,
-40,40,40,67,39,32,40,83,39,32,67,41,41,32,40,40,40,67,39,32,
-40,67,39,32,83,41,41,32,40,40,40,67,39,32,40,67,39,32,83,41,
-41,32,40,40,40,67,39,32,40,83,39,32,67,41,41,32,40,40,40,67,
-39,32,40,67,39,32,83,41,41,32,40,40,40,67,39,32,67,41,32,40,
-40,40,67,39,32,40,67,39,32,83,39,41,41,32,40,40,67,32,66,41,
-32,75,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,
-32,75,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,
-32,40,90,32,75,41,41,41,32,75,41,41,32,40,40,40,67,39,32,40,
-83,39,32,67,41,41,32,40,40,40,67,39,32,40,83,39,32,67,41,41,
-32,40,40,40,67,39,32,40,83,39,32,67,41,41,32,40,40,40,67,39,
-32,40,83,39,32,67,41,41,32,40,40,40,67,39,32,66,41,32,40,40,
-66,32,80,41,32,75,41,41,32,40,90,32,75,41,41,41,32,75,41,41,
-32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,
-40,90,32,75,41,41,41,41,41,32,40,90,32,75,41,41,41,32,40,90,
-32,75,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,40,90,32,
-75,41,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,
-41,32,75,41,41,32,75,41,41,32,40,90,32,75,41,41,41,32,40,95,
-49,51,57,57,32,95,54,55,51,41,41,41,41,32,40,40,40,67,39,32,
-66,41,32,40,40,67,32,40,40,67,32,40,95,50,49,50,32,95,50,57,
-53,41,41,32,35,48,41,41,32,40,40,95,51,53,32,95,53,57,41,32,
-95,49,52,53,48,41,41,41,32,40,40,40,67,39,32,40,95,49,49,56,
-51,32,95,54,55,51,41,41,32,40,95,56,56,53,32,95,56,56,56,41,
-41,32,34,66,97,100,32,112,97,116,116,101,114,110,34,41,41,41,41,41,
-41,32,40,40,65,32,58,49,51,57,49,32,40,40,40,83,39,32,40,67,
-39,32,40,40,83,39,32,40,95,51,52,32,95,53,57,41,41,32,95,49,
-51,56,57,41,41,41,32,40,40,40,83,39,32,66,41,32,40,40,66,32,
-40,67,39,32,40,95,51,51,32,95,53,57,41,41,41,32,40,40,66,32,
-40,95,52,52,32,95,53,57,41,41,32,40,40,66,32,95,49,51,57,50,
-41,32,40,40,66,32,95,49,48,48,54,41,32,40,95,52,49,49,32,40,
-40,67,32,40,40,80,32,40,75,32,40,75,32,75,41,41,41,32,40,75,
-32,40,75,32,75,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,
-79,41,41,32,80,41,32,75,41,41,41,41,41,41,41,41,32,40,40,66,
-32,40,66,32,40,40,67,39,32,95,50,55,48,41,32,40,95,49,51,49,
-53,32,95,54,55,51,41,41,41,41,32,40,40,66,32,40,95,51,51,32,
-95,53,57,41,41,32,40,40,95,52,52,32,95,53,57,41,32,95,49,51,
-57,51,41,41,41,41,41,32,95,57,53,51,41,41,32,40,40,65,32,58,
-49,51,57,50,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,
-83,41,32,40,67,32,95,49,48,49,48,41,41,32,40,40,66,32,40,40,
-95,51,51,32,95,53,57,41,32,95,49,50,57,54,41,41,32,40,40,66,
-32,40,66,32,40,95,51,53,32,95,53,57,41,41,41,32,80,41,41,41,
-41,32,40,40,66,32,40,40,67,39,32,40,95,51,51,32,95,53,57,41,
-41,32,40,40,66,32,40,95,50,55,48,32,95,49,50,53,52,41,41,32,
-40,40,95,49,51,52,56,32,95,54,55,51,41,32,40,95,49,51,53,49,
-32,95,56,55,57,41,41,41,41,41,32,40,40,66,32,40,66,32,40,95,
-51,53,32,95,53,57,41,41,41,32,80,41,41,41,41,32,40,40,65,32,
-58,49,51,57,51,32,40,40,83,32,40,40,80,32,40,40,40,83,39,32,
-66,41,32,40,40,66,32,40,95,51,51,32,95,53,57,41,41,32,40,95,
-49,51,48,49,32,95,54,55,51,41,41,41,32,40,40,66,32,40,66,32,
-85,41,41,32,40,40,66,32,90,41,32,40,40,66,32,40,40,67,39,32,
-40,67,39,32,40,95,51,51,32,95,53,57,41,41,41,32,40,67,32,40,
-95,49,51,55,51,32,95,49,50,53,41,41,41,41,32,40,40,66,32,40,
-66,32,40,95,50,55,48,32,40,95,51,53,32,95,53,57,41,41,41,41,
-32,95,56,54,55,41,41,41,41,41,41,32,40,40,40,83,39,32,66,41,
-32,40,40,66,32,40,95,51,51,32,95,53,57,41,41,32,95,49,51,56,
-55,41,41,32,40,40,66,32,40,66,32,85,41,41,32,40,40,66,32,40,
-66,32,40,67,32,66,41,41,41,32,40,40,40,67,39,32,66,41,32,40,
-66,39,32,40,40,66,32,40,67,39,32,40,67,39,32,66,41,41,41,32,
-40,40,66,32,40,66,32,40,66,32,40,95,51,52,32,95,53,57,41,41,
-41,41,32,40,40,66,32,40,40,67,39,32,40,67,39,32,95,50,55,48,
-41,41,32,40,40,66,32,40,66,32,40,95,52,54,32,95,53,57,41,41,
-41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,95,49,50,49,41,
-32,40,40,66,32,95,49,50,51,41,32,95,52,48,57,41,41,41,32,40,
-40,66,32,95,49,50,51,41,32,95,52,48,57,41,41,41,41,41,32,40,
-40,40,67,39,32,40,95,49,49,56,51,32,95,54,55,51,41,41,32,40,
-95,56,56,53,32,95,56,56,56,41,41,32,34,101,120,105,115,116,101,110,
-116,105,97,108,115,32,110,111,116,32,97,108,108,111,119,101,100,32,105,110,
-32,112,97,116,116,101,114,110,32,98,105,110,100,105,110,103,34,41,41,41,
-41,41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,
-66,32,40,66,32,40,95,51,51,32,95,53,57,41,41,41,32,40,67,32,
-95,49,51,56,49,41,41,41,32,40,40,66,32,40,66,32,40,95,50,55,
-48,32,40,95,51,53,32,95,53,57,41,41,41,41,32,95,56,54,56,41,
-41,41,41,41,41,41,41,32,40,90,32,40,90,32,40,95,51,53,32,95,
-53,57,41,41,41,41,41,32,40,40,65,32,58,49,51,57,52,32,40,40,
-67,32,40,40,40,67,39,32,67,41,32,40,40,40,67,39,32,83,41,32,
-40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,
-40,67,39,32,67,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,
-39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,
-83,41,32,40,40,40,83,39,32,83,41,32,40,40,40,83,39,32,67,41,
-32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,
-40,83,32,40,40,40,67,39,32,83,39,41,32,40,40,67,32,40,40,67,
-32,40,40,83,32,73,41,32,75,41,41,32,40,40,40,67,39,32,66,41,
-32,40,40,66,32,95,56,50,52,41,32,95,49,51,57,52,41,41,32,95,
-49,51,57,52,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,
-32,95,56,50,53,41,32,95,49,51,57,52,41,41,32,40,95,52,49,49,
-32,40,85,32,40,40,40,67,39,32,40,67,39,32,79,41,41,32,40,40,
-40,67,39,32,66,41,32,80,41,32,95,49,51,57,52,41,41,32,75,41,
-41,41,41,41,41,32,75,41,41,32,40,40,66,32,90,41,32,40,40,40,
-67,39,32,40,83,39,32,67,41,41,32,40,40,40,67,39,32,40,83,39,
-32,67,41,41,32,40,40,66,32,40,40,67,39,32,67,41,32,40,40,40,
-83,39,32,67,41,32,40,40,40,83,39,32,67,41,32,40,40,40,83,39,
-32,67,41,32,40,40,40,83,39,32,80,41,32,75,41,32,75,41,41,32,
-75,41,41,32,75,41,41,32,75,41,41,41,32,75,41,41,32,75,41,41,
-32,75,41,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,
-41,41,32,40,40,40,67,39,32,40,83,39,32,95,49,50,55,57,41,41,
-32,40,40,40,67,39,32,66,41,32,40,40,66,32,95,56,56,49,41,32,
-40,95,56,56,53,32,95,56,56,56,41,41,41,32,95,52,50,56,41,41,
-32,40,95,52,49,50,32,95,49,51,57,52,41,41,41,41,32,40,40,40,
-67,39,32,40,83,39,32,67,41,41,32,40,40,40,67,39,32,40,83,39,
-32,67,41,41,32,40,40,40,67,39,32,40,83,39,32,67,41,41,32,40,
-40,40,67,39,32,40,83,39,32,67,41,41,32,40,40,40,67,39,32,40,
-83,39,32,80,41,41,32,40,40,66,32,40,83,32,80,41,41,32,40,40,
-40,67,39,32,66,41,32,40,40,66,32,40,67,39,32,80,41,41,32,40,
-40,40,67,39,32,66,41,32,40,40,66,32,95,49,50,55,56,41,32,40,
-40,66,32,95,49,51,57,55,41,32,40,95,56,56,53,32,95,56,56,56,
-41,41,41,41,32,95,49,51,57,52,41,41,41,32,40,90,32,75,41,41,
-41,41,32,40,90,32,75,41,41,41,32,75,41,41,32,40,90,32,75,41,
-41,41,32,40,90,32,75,41,41,41,32,40,90,32,40,90,32,75,41,41,
-41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,
-40,90,32,75,41,41,41,32,40,90,32,40,90,32,75,41,41,41,41,32,
-40,40,66,32,95,56,51,54,41,32,95,49,51,57,52,41,41,41,32,40,
-90,32,75,41,41,41,32,75,41,41,32,75,41,41,32,40,40,40,67,39,
-32,66,41,32,95,56,52,48,41,32,95,49,51,57,52,41,41,41,32,40,
-95,49,51,57,57,32,95,54,55,51,41,41,41,32,40,40,65,32,58,49,
-51,57,53,32,40,40,66,32,40,95,50,55,50,32,95,49,50,55,54,41,
-41,32,95,57,56,48,41,41,32,40,40,65,32,58,49,51,57,54,32,40,
-40,40,67,39,32,95,50,55,48,41,32,95,57,56,48,41,32,40,40,95,
-52,56,50,32,95,49,49,57,48,41,32,34,91,93,34,41,41,41,32,40,
-40,65,32,58,49,51,57,55,32,40,40,95,50,55,50,32,95,49,50,55,
-54,41,32,95,49,51,57,54,41,41,32,40,40,65,32,58,49,51,57,56,
-32,40,40,40,67,39,32,95,50,55,48,41,32,95,49,51,57,53,41,32,
-40,40,95,52,56,50,32,95,49,49,56,57,41,32,34,66,111,111,108,34,
-41,41,41,32,40,40,65,32,58,49,51,57,57,32,40,75,32,40,95,50,
-53,32,34,105,109,112,111,115,115,105,98,108,101,34,41,41,41,32,40,40,
-65,32,58,49,52,48,48,32,40,75,32,40,40,66,32,40,66,32,40,95,
-50,55,48,32,95,50,53,41,41,41,32,40,40,66,32,40,66,32,40,95,
-52,56,50,32,34,105,109,112,111,115,115,105,98,108,101,58,32,34,41,41,
-41,32,40,40,40,83,39,32,40,83,39,32,95,52,56,50,41,41,32,40,
-40,66,32,40,66,32,40,95,49,55,49,52,32,95,57,55,50,41,41,41,
-32,40,40,66,32,95,56,56,53,41,32,40,85,32,65,41,41,41,41,32,
-40,40,66,32,40,66,32,40,95,52,56,50,32,40,40,79,32,35,51,50,
-41,32,75,41,41,41,41,32,40,40,66,32,95,49,55,49,52,41,32,40,
-85,32,75,41,41,41,41,41,41,41,41,32,40,40,65,32,58,49,52,48,
-49,32,40,40,66,32,85,41,32,40,40,66,32,90,41,32,40,40,66,32,
-90,41,32,40,40,66,32,90,41,32,40,40,66,32,90,41,32,40,40,66,
-32,90,41,32,40,40,66,32,90,41,32,40,40,66,32,40,66,32,40,66,
-32,40,95,52,56,50,32,34,84,109,111,100,117,108,101,32,34,41,41,41,
-41,32,40,40,66,32,40,40,67,39,32,66,41,32,40,40,66,32,95,52,
-56,50,41,32,95,57,56,52,41,41,41,32,40,40,66,32,40,66,32,40,
-95,52,56,50,32,40,40,79,32,35,49,48,41,32,75,41,41,41,41,32,
-40,40,67,32,40,67,39,32,95,52,56,50,41,41,32,40,40,79,32,35,
-49,48,41,32,75,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,
-40,65,32,58,49,52,48,50,32,40,40,40,67,39,32,40,95,51,51,32,
-95,53,57,41,41,32,40,40,95,52,52,32,95,53,57,41,32,95,49,50,
-56,57,41,41,32,40,40,66,32,40,95,51,53,32,95,53,57,41,41,32,
-95,49,52,48,56,41,41,41,32,40,40,65,32,58,49,52,48,51,32,40,
-40,40,67,39,32,40,95,51,51,32,95,53,57,41,41,32,40,40,95,52,
-52,32,95,53,57,41,32,95,49,50,56,57,41,41,32,40,40,66,32,40,
-95,51,53,32,95,53,57,41,41,32,95,49,52,48,57,41,41,41,32,40,
-40,65,32,58,49,52,48,52,32,40,95,54,53,32,40,40,95,50,55,50,
-32,40,95,52,49,50,32,95,49,50,48,55,41,41,32,40,40,95,50,55,
-50,32,95,49,52,52,52,41,32,95,49,50,50,56,41,41,41,41,32,40,
-40,65,32,58,49,52,48,53,32,40,40,40,83,39,32,66,41,32,40,40,
-66,32,40,95,51,51,32,95,53,57,41,41,32,40,40,95,52,52,32,95,
-53,57,41,32,40,40,95,50,55,50,32,95,49,52,48,55,41,32,95,56,
-55,56,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,95,51,
-53,32,95,53,57,41,41,41,41,32,40,40,66,32,40,66,32,40,83,32,
-80,41,41,41,32,40,40,66,32,40,67,39,32,95,57,48,50,41,41,32,
-40,40,40,67,39,32,66,41,32,40,40,66,32,95,52,50,57,41,32,40,
-95,52,49,50,32,95,56,55,56,41,41,41,32,40,95,52,49,50,32,95,
-56,50,51,41,41,41,41,41,41,41,32,40,40,65,32,58,49,52,48,54,
-32,40,75,32,40,89,32,40,40,40,67,39,32,83,41,32,40,40,40,83,
-39,32,40,67,39,32,67,41,41,32,40,40,40,67,39,32,40,67,39,32,
-83,41,41,32,40,40,40,67,39,32,40,67,39,32,83,41,41,32,40,40,
-40,67,39,32,40,67,39,32,83,41,41,32,40,40,40,67,39,32,40,67,
-39,32,83,41,41,32,40,40,40,67,39,32,40,67,39,32,83,41,41,32,
-40,40,40,67,39,32,40,67,39,32,83,41,41,32,40,40,40,67,39,32,
-40,67,39,32,83,41,41,32,40,40,40,67,39,32,40,67,39,32,83,41,
-41,32,40,40,40,67,39,32,40,67,39,32,83,41,41,32,40,40,40,67,
-39,32,40,67,39,32,83,41,41,32,40,40,40,67,39,32,40,67,39,32,
-83,41,41,32,40,40,40,67,39,32,40,67,39,32,83,41,41,32,40,40,
-40,67,39,32,40,67,39,32,83,41,41,32,40,40,40,67,39,32,40,67,
-39,32,83,41,41,32,40,40,40,67,39,32,40,67,39,32,83,41,41,32,
-40,40,66,32,40,83,32,40,40,67,32,67,39,41,32,75,41,41,41,32,
-40,40,40,83,39,32,67,41,32,40,40,66,32,40,40,67,39,32,67,39,
-41,32,40,40,66,32,67,39,41,32,95,49,50,56,51,41,41,41,32,40,
-40,40,83,39,32,40,67,39,32,66,41,41,32,40,66,32,40,95,51,51,
-32,95,53,57,41,41,41,32,40,40,66,32,40,66,32,85,41,41,32,40,
-40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,66,32,66,39,41,
-32,40,66,32,40,95,51,51,32,95,53,57,41,41,41,41,32,40,40,66,
-32,40,66,32,85,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,
-32,40,95,51,53,32,95,53,57,41,41,41,41,41,32,40,40,40,67,39,
-32,66,41,32,40,40,66,32,40,67,39,32,66,41,41,32,40,40,66,32,
-40,66,32,80,41,41,32,95,52,56,50,41,41,41,32,95,56,50,52,41,
-41,41,41,41,41,41,41,32,40,40,66,32,85,41,32,40,40,40,67,39,
-32,66,41,32,40,67,39,32,40,95,51,51,32,95,53,57,41,41,41,32,
-40,40,66,32,85,41,32,40,40,66,32,40,66,32,40,66,32,40,95,51,
-53,32,95,53,57,41,41,41,41,32,40,40,66,32,40,40,67,39,32,66,
-41,32,80,41,41,32,95,49,50,56,48,41,41,41,41,41,41,41,41,32,
-40,90,32,75,41,41,41,32,75,41,41,32,40,90,32,75,41,41,41,32,
-40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,75,41,41,32,
-75,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,
-40,90,32,75,41,41,41,32,40,90,32,40,90,32,75,41,41,41,41,32,
-40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,75,41,41,32,
-75,41,41,32,40,40,66,32,40,40,67,39,32,40,67,39,32,40,95,51,
-51,32,95,53,57,41,41,41,32,95,49,52,48,53,41,41,32,40,40,66,
-32,85,41,32,40,40,40,67,39,32,66,41,32,40,67,39,32,40,95,51,
-51,32,95,53,57,41,41,41,32,40,40,66,32,85,41,32,40,40,66,32,
-40,66,32,40,66,32,40,95,51,53,32,95,53,57,41,41,41,41,32,40,
-40,66,32,40,66,32,80,41,41,32,95,52,56,50,41,41,41,41,41,41,
-41,41,32,40,40,66,32,40,95,51,53,32,95,53,57,41,41,32,40,80,
-32,95,52,56,48,41,41,41,41,41,41,32,40,40,65,32,58,49,52,48,
-55,32,40,40,66,32,40,40,95,51,51,32,95,53,57,41,32,95,49,50,
-57,55,41,41,32,40,40,66,32,40,66,32,40,95,51,53,32,95,53,57,
-41,41,41,32,40,40,40,83,39,32,66,41,32,40,40,66,32,95,57,56,
-48,41,32,40,95,56,56,53,32,95,56,56,55,41,41,41,32,40,40,40,
-67,39,32,66,41,32,40,40,66,32,95,52,56,50,41,32,95,57,56,50,
-41,41,32,40,40,66,32,40,95,52,56,50,32,40,40,79,32,35,51,53,
-41,32,75,41,41,41,32,40,95,49,55,49,52,32,95,50,57,55,41,41,
-41,41,41,41,41,32,40,40,65,32,58,49,52,48,56,32,40,40,95,52,
-49,52,32,40,40,89,32,40,40,66,32,40,40,83,39,32,40,83,39,32,
-83,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,83,41,
-41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,83,41,41,
-41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,83,41,41,41,
-32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,83,41,41,41,32,
-40,40,40,67,39,32,40,67,39,32,40,67,39,32,83,41,41,41,32,40,
-40,40,67,39,32,40,67,39,32,40,67,39,32,83,41,41,41,32,40,40,
-40,67,39,32,40,67,39,32,40,67,39,32,83,41,41,41,32,40,40,40,
-67,39,32,40,67,39,32,40,67,39,32,83,41,41,41,32,40,40,40,67,
-39,32,40,67,39,32,40,67,39,32,83,41,41,41,32,40,40,40,67,39,
-32,40,67,39,32,40,67,39,32,83,41,41,41,32,40,40,40,67,39,32,
-40,67,39,32,40,67,39,32,83,41,41,41,32,40,40,40,67,39,32,40,
-67,39,32,40,67,39,32,83,41,41,41,32,40,40,40,67,39,32,40,67,
-39,32,40,67,39,32,83,41,41,41,32,40,40,40,67,39,32,40,67,39,
-32,40,67,39,32,83,41,41,41,32,40,40,40,67,39,32,40,67,39,32,
-40,67,39,32,83,41,41,41,32,40,40,40,67,39,32,40,67,39,32,67,
-41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,83,39,41,
-41,41,32,40,40,66,32,40,67,32,66,41,41,32,40,40,40,67,39,32,
-40,83,39,32,67,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,
-32,83,41,32,40,67,32,40,95,52,53,49,32,95,57,55,52,41,41,41,
-41,32,40,40,40,83,39,32,67,41,32,40,40,40,83,39,32,83,41,32,
-40,67,32,40,95,52,53,49,32,95,57,55,52,41,41,41,32,40,40,40,
-83,39,32,67,41,32,40,40,66,32,40,83,32,95,57,57,49,41,41,32,
-40,67,32,95,52,56,49,41,41,41,32,73,41,41,41,32,73,41,41,41,
-32,73,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,
-41,32,75,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,
-41,32,40,90,32,75,41,41,41,32,75,41,41,32,75,41,41,32,40,90,
-32,75,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,
-41,32,40,90,32,40,90,32,75,41,41,41,41,32,40,90,32,75,41,41,
-41,32,40,90,32,75,41,41,41,32,75,41,41,32,75,41,41,32,40,90,
-32,75,41,41,41,41,32,40,40,40,83,39,32,40,83,39,32,40,67,39,
-32,83,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,
-67,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,83,
-41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,67,41,
-41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,
-41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,41,
-32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,41,32,
-40,40,40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,41,32,40,
-40,40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,41,32,40,40,
-40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,41,32,40,40,40,
-67,39,32,40,67,39,32,40,67,39,32,67,41,41,41,32,40,40,40,67,
-39,32,40,67,39,32,40,67,39,32,67,41,41,41,32,40,40,40,67,39,
-32,40,67,39,32,40,67,39,32,67,41,41,41,32,40,40,40,67,39,32,
-40,67,39,32,40,67,39,32,67,41,41,41,32,40,40,40,67,39,32,40,
-67,39,32,40,67,39,32,67,41,41,41,32,40,40,40,67,39,32,40,67,
-39,32,67,41,41,32,40,40,66,32,40,66,32,40,40,67,39,32,67,39,
-41,32,40,85,32,40,75,32,95,50,54,41,41,41,41,41,32,40,40,40,
-83,39,32,40,83,39,32,66,41,41,32,40,66,32,40,67,39,32,66,41,
-41,41,32,40,66,32,67,41,41,41,41,32,40,75,32,40,75,32,95,50,
-54,41,41,41,41,32,40,75,32,95,50,54,41,41,41,32,40,75,32,40,
-75,32,95,50,54,41,41,41,41,32,40,75,32,40,75,32,95,50,54,41,
-41,41,41,32,40,75,32,40,75,32,95,50,54,41,41,41,41,32,40,75,
-32,95,50,54,41,41,41,32,40,75,32,95,50,54,41,41,41,32,40,75,
-32,40,75,32,95,50,54,41,41,41,41,32,40,75,32,40,75,32,95,50,
-54,41,41,41,41,32,40,75,32,40,75,32,95,50,54,41,41,41,41,32,
-40,75,32,40,75,32,40,75,32,95,50,54,41,41,41,41,41,32,40,75,
-32,40,75,32,95,50,54,41,41,41,41,32,40,75,32,40,75,32,95,50,
-54,41,41,41,41,32,75,41,41,32,40,75,32,95,50,54,41,41,41,32,
-40,40,66,32,40,66,32,40,67,39,32,67,41,41,41,32,40,40,40,67,
-39,32,66,41,32,66,41,32,40,40,67,39,32,95,52,56,50,41,32,40,
-95,52,49,50,32,95,56,55,56,41,41,41,41,41,41,41,32,95,52,56,
-48,41,41,32,95,52,56,48,41,41,32,40,40,65,32,58,49,52,48,57,
-32,40,40,95,52,49,52,32,40,89,32,40,40,40,67,39,32,40,67,39,
-32,67,41,41,32,40,40,40,83,39,32,40,67,39,32,40,83,39,32,67,
-41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,83,41,
-41,41,32,40,40,40,67,39,32,40,67,39,32,40,83,39,32,67,41,41,
-41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,83,41,41,41,
-32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,83,41,41,41,32,
-40,40,40,67,39,32,40,67,39,32,40,67,39,32,83,41,41,41,32,40,
-40,40,67,39,32,40,67,39,32,40,67,39,32,83,41,41,41,32,40,40,
-40,67,39,32,40,67,39,32,40,67,39,32,83,41,41,41,32,40,40,40,
-67,39,32,40,67,39,32,40,67,39,32,83,41,41,41,32,40,40,40,67,
-39,32,40,67,39,32,40,67,39,32,83,41,41,41,32,40,40,40,67,39,
-32,40,67,39,32,40,67,39,32,83,41,41,41,32,40,40,40,67,39,32,
-40,67,39,32,40,67,39,32,83,41,41,41,32,40,40,40,67,39,32,40,
-67,39,32,40,67,39,32,83,41,41,41,32,40,40,40,67,39,32,40,67,
-39,32,40,83,39,32,67,41,41,41,32,40,40,40,67,39,32,40,67,39,
-32,67,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,83,
-39,41,41,41,32,40,40,66,32,40,67,32,40,40,67,32,83,39,41,32,
-75,41,41,41,32,40,40,40,83,39,32,66,41,32,40,67,39,32,66,41,
-41,32,67,41,41,41,32,40,90,32,75,41,41,41,32,75,41,41,32,40,
-90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,
-41,41,32,75,41,41,32,75,41,41,32,40,90,32,75,41,41,41,32,40,
-90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,40,90,
-32,75,41,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,
-41,41,32,40,40,40,83,39,32,67,41,32,40,40,40,83,39,32,83,41,
-32,40,67,32,40,95,52,53,49,32,95,50,57,53,41,41,41,32,40,67,
-32,95,52,56,49,41,41,41,32,73,41,41,41,32,75,41,41,32,40,40,
-66,32,90,41,32,67,41,41,41,32,40,95,49,51,57,57,32,95,54,55,
-51,41,41,41,41,32,95,52,56,48,41,41,32,40,40,65,32,58,49,52,
-49,48,32,40,40,40,83,39,32,66,41,32,40,40,66,32,40,83,39,32,
-40,95,51,51,32,95,53,57,41,41,41,32,95,49,52,48,54,41,41,32,
-40,40,66,32,40,66,32,40,66,32,85,41,41,41,32,40,40,40,83,39,
-32,40,83,39,32,66,41,41,32,40,40,66,32,66,39,41,32,40,40,66,
-32,40,66,32,40,67,39,32,40,95,51,51,32,95,53,57,41,41,41,41,
-32,40,40,66,32,67,41,32,95,49,51,53,53,41,41,41,41,32,40,40,
-40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,41,32,40,40,66,
-32,40,66,32,40,66,32,40,40,83,39,32,83,39,41,32,95,52,48,57,
-41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
-32,40,40,95,51,51,32,95,53,57,41,32,95,49,52,48,52,41,41,41,
-41,41,41,32,40,40,66,32,40,66,32,40,40,67,39,32,66,41,32,40,
-66,39,32,40,40,66,32,40,67,39,32,40,95,51,51,32,95,53,57,41,
-41,41,32,40,40,66,32,40,66,32,95,49,52,48,50,41,41,32,95,52,
-56,49,41,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,66,
-41,41,32,40,40,66,32,40,66,32,40,67,39,32,66,41,41,41,32,40,
-40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,
-40,67,39,32,40,95,51,52,32,95,53,57,41,41,41,41,32,40,40,66,
-32,40,66,32,40,40,83,39,32,95,50,55,48,41,32,40,40,66,32,40,
-95,52,54,32,95,53,57,41,41,32,40,40,66,32,95,49,50,51,41,32,
-95,52,48,57,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,
-66,41,41,32,40,40,66,32,40,66,32,95,50,55,48,41,41,32,40,40,
-40,67,39,32,66,41,32,95,49,50,57,48,41,32,40,95,56,56,53,32,
-95,56,56,56,41,41,41,41,32,40,40,66,32,40,95,52,56,50,32,34,
-110,111,116,32,112,111,108,121,109,111,114,112,104,105,99,32,101,110,111,117,
-103,104,58,32,34,41,41,32,40,40,66,32,95,49,55,51,51,41,32,40,
-95,52,49,50,32,95,57,56,52,41,41,41,41,41,41,41,32,40,95,51,
-53,32,95,53,57,41,41,41,41,32,40,40,67,39,32,95,52,49,51,41,
-32,40,67,32,40,95,52,53,49,32,95,57,55,52,41,41,41,41,41,41,
-41,41,32,40,95,51,53,32,95,53,57,41,41,41,41,41,41,32,40,40,
-65,32,58,49,52,49,49,32,40,40,66,32,89,41,32,40,40,40,83,39,
-32,40,83,39,32,40,83,39,32,40,83,39,32,83,41,41,41,41,32,40,
-40,66,32,40,66,32,40,66,32,40,66,32,40,40,83,39,32,83,39,41,
-32,40,40,66,32,67,41,32,40,40,40,67,39,32,83,41,32,40,40,40,
-67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,
-32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,
-41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,
-40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,
-40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,
-39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,
-83,41,32,40,40,67,32,40,40,67,32,83,39,41,32,75,41,41,32,40,
-90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,75,41,41,32,40,
-90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,
-41,41,32,75,41,41,32,75,41,41,32,40,90,32,75,41,41,41,32,40,
-90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,40,90,
-32,75,41,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,
-41,41,32,75,41,41,32,75,41,41,41,41,41,41,41,32,40,40,66,32,
-40,66,32,40,66,32,40,66,32,40,66,32,90,41,41,41,41,41,32,40,
-40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,90,41,41,41,41,
-41,32,40,40,40,67,39,32,66,41,32,40,66,39,32,40,40,66,32,40,
-67,39,32,40,67,39,32,66,41,41,41,32,40,40,66,32,40,66,32,40,
-66,32,40,95,51,51,32,95,53,57,41,41,41,41,32,40,40,40,67,39,
-32,66,41,32,40,66,39,32,95,49,51,48,50,41,41,32,80,41,41,41,
-41,41,32,40,40,66,32,40,66,32,40,66,32,85,41,41,41,32,40,66,
-32,40,67,39,32,67,41,41,41,41,41,41,41,41,32,40,40,40,83,39,
-32,66,41,32,40,40,66,32,40,83,39,32,40,83,39,32,83,41,41,41,
-32,40,40,66,32,40,66,32,40,66,32,40,40,83,39,32,83,39,41,32,
-95,49,50,56,52,41,41,41,41,32,40,40,40,83,39,32,40,83,39,32,
-40,83,39,32,40,83,39,32,67,41,41,41,41,32,40,40,66,32,40,66,
-32,40,66,32,40,66,32,40,83,32,95,49,50,56,51,41,41,41,41,41,
-32,40,40,40,83,39,32,40,83,39,32,40,83,39,32,67,41,41,41,32,
-40,40,66,32,40,66,32,40,66,32,40,40,83,39,32,83,39,41,32,95,
-49,50,56,51,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,66,
-41,41,32,40,40,66,32,40,66,32,40,67,39,32,40,67,39,32,40,95,
-51,52,32,95,53,57,41,41,41,41,41,32,95,49,50,57,49,41,41,32,
-40,95,51,53,32,95,53,57,41,41,41,41,32,40,40,66,32,40,66,32,
-40,66,32,40,66,32,85,41,41,41,41,32,40,40,40,83,39,32,40,83,
-39,32,66,41,41,32,40,40,66,32,40,66,32,40,67,39,32,66,41,41,
-41,32,40,40,66,32,40,66,32,66,39,41,41,32,40,40,66,32,40,66,
-32,40,66,32,40,95,51,51,32,95,53,57,41,41,41,41,32,95,49,51,
-54,53,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,
-40,66,32,85,41,41,41,41,41,32,95,49,52,49,50,41,41,41,41,41,
-41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,85,41,41,41,41,
-32,40,40,40,83,39,32,40,83,39,32,66,41,41,32,40,40,66,32,40,
-66,32,40,67,39,32,66,41,41,41,32,40,40,66,32,40,66,32,66,39,
-41,41,32,40,40,66,32,40,66,32,40,66,32,40,95,51,51,32,95,53,
-57,41,41,41,41,32,95,49,51,54,53,41,41,41,41,32,40,40,66,32,
-40,66,32,40,66,32,40,66,32,40,66,32,85,41,41,41,41,41,32,40,
-40,66,32,40,66,32,40,66,32,40,66,32,40,67,39,32,67,41,41,41,
-41,41,32,40,40,66,32,40,66,32,40,66,32,40,67,39,32,67,41,41,
-41,41,32,95,49,52,49,50,41,41,41,41,41,41,41,41,41,32,40,40,
-66,32,40,66,32,40,66,32,40,66,32,40,66,32,90,41,41,41,41,41,
-32,40,40,40,67,39,32,66,41,32,40,66,39,32,40,40,66,32,40,67,
-39,32,40,67,39,32,66,41,41,41,32,40,40,66,32,40,66,32,40,66,
-32,40,95,51,51,32,95,53,57,41,41,41,41,32,40,40,40,67,39,32,
-66,41,32,40,66,39,32,95,49,51,48,50,41,41,32,80,41,41,41,41,
-41,32,40,40,66,32,40,66,32,40,66,32,85,41,41,41,32,40,66,32,
-40,67,39,32,67,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,
-49,52,49,50,32,40,40,40,83,39,32,40,83,39,32,66,41,41,32,40,
-40,66,32,40,66,32,40,67,39,32,66,41,41,41,32,40,40,66,32,40,
-66,32,40,66,32,40,67,39,32,66,41,41,41,41,32,40,40,66,32,40,
-66,32,40,66,32,40,66,32,40,95,51,51,32,95,53,57,41,41,41,41,
-41,32,40,40,66,32,40,66,32,67,41,41,32,40,40,40,67,39,32,67,
-41,32,95,49,51,56,52,41,32,95,50,54,41,41,41,41,41,41,32,40,
-40,66,32,40,66,32,40,66,32,40,66,32,90,41,41,41,41,32,95,49,
-52,49,49,41,41,41,32,40,40,65,32,58,49,52,49,51,32,40,40,40,
-83,39,32,40,83,39,32,40,83,39,32,40,83,39,32,80,41,41,41,41,
-32,40,40,40,83,39,32,66,41,32,40,40,66,32,40,67,39,32,40,67,
-39,32,66,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,95,51,
-51,32,95,53,57,41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,
-66,39,32,95,49,51,48,50,41,41,32,80,41,41,41,41,32,40,40,66,
-32,40,66,32,40,66,32,85,41,41,41,32,40,40,40,67,39,32,40,67,
-39,32,40,67,39,32,66,41,41,41,32,40,40,66,32,40,66,32,40,66,
-32,40,67,39,32,40,95,51,52,32,95,53,57,41,41,41,41,41,32,95,
-49,51,53,55,41,41,32,40,95,51,53,32,95,53,57,41,41,41,41,41,
-32,95,49,52,49,49,41,41,32,40,40,65,32,58,49,52,49,52,32,40,
-40,66,32,89,41,32,40,40,40,83,39,32,66,41,32,40,66,39,32,40,
-40,66,32,40,67,39,32,40,95,51,51,32,95,53,57,41,41,41,32,95,
-49,50,56,56,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,
-39,32,83,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,
-32,67,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,
-40,67,39,32,83,39,41,41,41,41,32,40,40,66,32,40,66,32,40,66,
-32,40,66,32,67,41,41,41,41,32,40,40,40,67,39,32,40,83,39,32,
-40,83,39,32,40,67,39,32,67,41,41,41,41,32,40,40,66,32,40,66,
-32,40,66,32,40,66,32,40,40,83,39,32,83,39,41,32,95,56,56,50,
-41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,
-66,32,40,66,32,40,40,95,51,51,32,95,53,57,41,32,40,95,54,53,
-32,95,49,50,51,52,41,41,41,41,41,41,41,41,32,40,40,40,83,39,
-32,66,41,32,40,40,66,32,40,83,39,32,40,83,39,32,40,83,39,32,
-66,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,67,
-41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,40,83,39,32,
-67,41,32,95,49,48,49,48,41,41,41,41,32,40,40,40,67,39,32,66,
-41,32,40,66,39,32,40,40,66,32,40,67,39,32,40,95,51,52,32,95,
-53,57,41,41,41,32,40,40,66,32,40,40,67,39,32,95,50,55,48,41,
-32,40,40,66,32,40,95,52,54,32,95,53,57,41,41,32,95,57,57,49,
-41,41,41,32,95,49,51,57,57,41,41,41,41,32,40,40,66,32,40,66,
-32,40,95,51,53,32,95,53,57,41,41,41,32,40,40,40,67,39,32,40,
-67,39,32,79,41,41,32,40,40,40,67,39,32,40,67,39,32,67,41,41,
-32,40,40,66,32,67,41,32,40,40,40,67,39,32,67,41,32,40,40,67,
-32,80,41,32,95,52,56,48,41,41,32,95,52,56,48,41,41,41,32,95,
-52,56,48,41,41,32,75,41,41,41,41,41,41,41,32,40,40,66,32,40,
-66,32,40,66,32,40,66,32,40,66,32,40,66,32,85,41,41,41,41,41,
-41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
-32,40,66,32,90,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,
-40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,90,41,41,41,41,
-41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,83,39,32,66,41,
-41,41,32,40,40,66,32,40,66,32,40,66,32,40,67,39,32,40,67,39,
-32,40,67,39,32,40,67,39,32,66,41,41,41,41,41,41,41,32,40,40,
-66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
-40,95,51,51,32,95,53,57,41,41,41,41,41,41,41,41,32,40,40,66,
-32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
-40,95,50,56,53,32,95,53,55,41,32,95,52,49,48,41,41,41,41,41,
-41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,
-39,32,66,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,66,39,
-41,41,41,32,40,40,66,32,40,66,32,40,66,32,66,39,41,41,41,32,
-40,40,66,32,40,66,32,40,66,32,40,66,32,40,95,52,52,32,95,53,
-57,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,
-85,41,41,41,41,32,40,40,66,32,40,40,67,39,32,66,41,32,40,66,
-39,32,66,41,41,41,32,40,40,66,32,40,67,39,32,40,67,39,32,95,
-56,50,52,41,41,41,32,40,40,66,32,40,66,32,40,66,32,95,56,50,
-51,41,41,41,32,95,49,52,49,53,41,41,41,41,41,41,41,41,32,40,
-40,66,32,40,66,32,40,66,32,40,95,52,50,57,32,40,40,95,49,57,
-51,32,95,50,48,55,41,32,40,40,95,53,49,53,32,95,50,57,49,41,
-32,40,95,51,55,51,32,35,49,41,41,41,41,41,41,41,32,40,40,66,
-32,40,66,32,95,52,49,50,41,41,32,40,40,66,32,40,66,32,95,57,
-48,50,41,41,32,40,40,67,39,32,95,52,50,57,41,32,40,95,52,49,
-50,32,95,56,55,56,41,41,41,41,41,41,41,41,41,41,32,40,40,66,
-32,40,66,32,40,66,32,40,66,32,40,95,50,55,48,32,40,95,51,53,
-32,95,53,57,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,
-32,95,52,56,49,41,41,41,32,40,40,66,32,40,66,32,67,41,41,32,
-40,40,66,32,67,41,32,40,40,40,67,39,32,67,41,32,40,40,67,32,
-80,41,32,95,52,56,48,41,41,32,95,52,56,48,41,41,41,41,41,41,
-41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,
-40,66,32,40,66,32,40,66,32,40,40,95,50,56,53,32,95,53,55,41,
-32,95,52,49,48,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,
-40,83,39,32,40,95,52,52,32,95,53,57,41,41,41,41,32,40,40,66,
-32,40,66,32,40,66,32,85,41,41,41,32,40,40,40,67,39,32,66,41,
-32,40,66,39,32,66,41,41,32,40,40,67,39,32,40,67,39,32,95,56,
-50,52,41,41,32,40,40,66,32,40,67,32,95,56,56,51,41,41,32,95,
-52,50,56,41,41,41,41,41,32,40,95,52,50,57,32,40,40,95,49,57,
-51,32,95,50,48,55,41,32,40,40,95,53,49,53,32,95,50,57,49,41,
-32,40,95,51,55,51,32,35,48,41,41,41,41,41,41,41,41,41,41,32,
-40,85,32,65,41,41,41,32,40,85,32,75,41,41,41,32,95,49,50,49,
-55,41,41,41,41,32,40,40,65,32,58,49,52,49,53,32,40,75,32,40,
-40,40,67,39,32,66,41,32,95,57,56,56,41,32,40,40,66,32,40,95,
-52,56,50,32,34,36,115,117,112,101,114,34,41,41,32,40,95,49,55,49,
-52,32,95,50,57,55,41,41,41,41,41,32,40,40,65,32,58,49,52,49,
-54,32,40,40,66,32,40,40,95,51,51,32,95,53,57,41,32,40,95,54,
-53,32,95,49,50,52,48,41,41,41,32,40,40,66,32,40,66,32,40,40,
-95,51,52,32,95,53,57,41,32,40,95,49,50,53,49,32,95,52,56,48,
-41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,95,51,51,32,95,
-53,57,41,41,32,40,40,66,32,40,66,32,40,40,95,51,51,32,95,53,
-57,41,32,95,49,52,50,48,41,41,41,32,40,40,66,32,40,66,32,40,
-66,32,40,40,95,51,51,32,95,53,57,41,32,40,95,54,53,32,95,49,
-50,52,48,41,41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,66,
-39,32,40,40,66,32,40,67,39,32,40,95,51,52,32,95,53,57,41,41,
-41,32,40,40,66,32,40,66,32,95,49,50,53,49,41,41,32,40,67,32,
-95,52,56,50,41,41,41,41,41,32,40,40,66,32,40,66,32,40,95,51,
-53,32,95,53,57,41,41,41,32,80,41,41,41,41,41,41,41,41,32,40,
-40,65,32,58,49,52,49,55,32,40,40,67,32,40,40,67,32,83,39,41,
-32,95,49,52,49,54,41,41,32,40,40,67,32,40,95,51,51,32,95,53,
-57,41,41,32,40,40,66,32,40,40,95,51,51,32,95,53,57,41,32,95,
-49,52,50,48,41,41,32,40,40,66,32,40,66,32,40,40,95,51,51,32,
-95,53,57,41,32,40,95,54,53,32,95,49,50,52,48,41,41,41,41,32,
-40,40,66,32,40,66,32,40,40,67,39,32,40,95,51,51,32,95,53,57,
-41,41,32,40,40,66,32,95,49,52,48,51,41,32,40,95,52,49,50,32,
-95,53,57,57,41,41,41,41,41,32,40,40,66,32,40,66,32,40,40,67,
-39,32,40,95,51,51,32,95,53,57,41,41,32,40,40,66,32,40,40,95,
-50,56,53,32,95,53,55,41,32,95,52,49,48,41,41,32,40,40,95,52,
-52,32,95,53,57,41,32,95,49,52,49,57,41,41,41,41,41,32,40,40,
-66,32,40,66,32,40,66,32,40,95,51,53,32,95,53,57,41,41,41,41,
-32,40,40,40,67,39,32,66,41,32,40,66,39,32,80,41,41,32,95,52,
-56,50,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,49,52,49,
-56,32,40,40,66,32,85,41,32,40,90,32,40,40,40,67,39,32,66,41,
-32,40,40,66,32,40,95,50,56,53,32,95,53,55,41,41,32,40,95,52,
-53,49,32,95,50,57,53,41,41,41,32,40,40,66,32,95,49,52,48,51,
-41,32,40,40,67,32,79,41,32,75,41,41,41,41,41,41,32,40,40,65,
-32,58,49,52,49,57,32,40,40,66,32,40,40,95,51,51,32,95,53,57,
-41,32,95,54,52,41,41,32,40,40,40,83,39,32,40,83,39,32,40,95,
-51,51,32,95,53,57,41,41,41,32,40,40,40,67,39,32,66,41,32,40,
-40,66,32,40,95,53,50,32,95,53,57,41,41,32,95,49,52,49,56,41,
-41,32,95,49,50,52,48,41,41,32,40,40,66,32,40,66,32,85,41,41,
-32,40,40,40,67,39,32,40,83,39,32,40,67,39,32,40,67,39,32,89,
-41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
-32,40,80,32,40,40,95,51,53,32,95,53,57,41,32,95,52,56,48,41,
-41,41,41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,66,39,32,
-40,66,39,32,40,66,39,32,40,40,66,32,40,67,39,32,66,41,41,32,
-40,40,66,32,40,66,32,40,95,51,52,32,95,53,57,41,41,41,32,95,
-49,50,56,53,41,41,41,41,41,41,32,40,40,66,32,40,40,67,39,32,
-66,41,32,40,66,39,32,40,66,39,32,40,40,66,32,40,95,51,52,32,
-95,53,57,41,41,32,95,49,50,53,49,41,41,41,41,41,32,40,40,66,
-32,40,66,32,40,66,32,40,66,32,40,40,95,51,51,32,95,53,57,41,
-32,95,49,52,50,48,41,41,41,41,41,32,40,40,66,32,40,66,32,40,
-66,32,40,66,32,40,66,32,40,40,95,51,51,32,95,53,57,41,32,40,
-95,54,53,32,95,49,50,52,48,41,41,41,41,41,41,41,32,40,40,40,
-67,39,32,66,41,32,40,40,66,32,40,67,39,32,40,67,39,32,66,41,
-41,41,32,40,40,66,32,40,66,32,40,66,32,67,41,41,41,32,40,40,
-66,32,40,66,32,40,66,32,40,67,32,95,52,48,57,41,41,41,41,32,
-40,66,39,32,40,40,66,32,40,95,51,52,32,95,53,57,41,41,32,95,
-54,51,41,41,41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,
-66,32,40,95,51,52,32,95,53,57,41,41,32,95,49,50,53,49,41,41,
-32,40,95,51,53,32,95,53,57,41,41,41,41,41,41,41,41,41,32,95,
-49,50,52,49,41,41,41,41,41,32,40,40,65,32,58,49,52,50,48,32,
-40,40,40,95,51,51,32,95,53,57,41,32,40,95,54,53,32,95,49,50,
-52,48,41,41,32,40,40,67,32,40,40,83,32,95,52,48,57,41,32,40,
-40,66,32,40,40,95,51,52,32,95,53,57,41,32,95,49,52,52,55,41,
-41,32,40,40,40,67,39,32,40,95,51,51,32,95,53,57,41,41,32,40,
-40,95,52,52,32,95,53,57,41,32,40,85,32,40,40,66,32,40,40,67,
-39,32,40,95,51,51,32,95,53,57,41,41,32,95,49,50,56,57,41,41,
-32,40,40,66,32,40,66,32,40,95,51,53,32,95,53,57,41,41,41,32,
-80,41,41,41,41,41,32,40,40,40,67,39,32,40,95,51,51,32,95,53,
-57,41,41,32,40,40,67,32,40,40,67,32,40,40,67,32,95,49,52,50,
-50,41,32,95,52,56,48,41,41,32,95,52,56,48,41,41,32,95,52,56,
-48,41,41,32,40,85,32,40,40,40,67,39,32,66,41,32,40,66,39,32,
-40,40,66,32,40,95,51,52,32,95,53,57,41,41,32,95,49,50,53,49,
-41,41,41,32,40,40,40,83,39,32,67,41,32,40,40,66,32,40,83,32,
-95,52,48,57,41,41,32,40,40,66,32,40,40,67,39,32,40,95,51,52,
-32,95,53,57,41,41,32,40,40,95,52,53,32,95,53,57,41,32,40,85,
-32,40,95,49,50,57,49,32,95,54,55,51,41,41,41,41,41,32,40,40,
-40,67,39,32,40,95,50,56,53,32,95,53,55,41,41,32,40,67,32,95,
-52,56,50,41,41,32,95,49,52,50,48,41,41,41,41,32,40,95,51,53,
-32,95,53,57,41,41,41,41,41,41,41,41,41,32,40,40,95,51,53,32,
-95,53,57,41,32,95,52,56,48,41,41,41,41,32,40,40,65,32,58,49,
-52,50,49,32,40,40,79,32,40,40,80,32,40,40,95,50,55,50,32,95,
-52,57,53,41,32,95,56,56,50,41,41,32,95,49,52,50,53,41,41,32,
-40,40,79,32,40,40,80,32,40,40,67,32,40,95,50,49,49,32,95,57,
-55,52,41,41,32,40,95,57,55,57,32,95,49,49,57,54,41,41,41,32,
-95,49,52,50,54,41,41,32,40,40,79,32,40,40,80,32,40,95,50,55,
-52,32,95,49,50,54,41,41,32,95,49,52,50,51,41,41,32,75,41,41,
-41,41,32,40,40,65,32,58,49,52,50,50,32,40,40,67,32,40,40,40,
-67,39,32,83,39,41,32,40,40,66,32,83,39,41,32,83,39,41,41,32,
-40,40,66,32,40,66,32,40,66,32,40,95,51,53,32,95,53,57,41,41,
-41,41,32,40,40,66,32,40,66,32,67,41,41,32,80,41,41,41,41,32,
-40,40,66,32,40,66,32,40,66,32,40,83,32,66,41,41,41,41,32,40,
-40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,
-32,40,67,39,32,66,41,41,41,41,41,41,32,40,40,40,67,39,32,40,
-67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,83,
-41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,
-40,66,32,40,40,83,39,32,40,67,39,32,40,67,39,32,40,95,51,51,
-32,95,53,57,41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,
-66,32,67,41,32,40,40,40,67,39,32,83,41,32,40,40,66,32,40,40,
-67,39,32,95,52,52,55,41,32,40,40,40,67,39,32,95,52,49,49,41,
-32,40,40,66,32,85,41,32,40,40,40,67,39,32,40,67,39,32,66,41,
-41,32,40,40,67,32,80,41,32,75,41,41,32,40,40,67,32,79,41,32,
-75,41,41,41,41,32,95,49,52,50,49,41,41,41,32,40,95,56,56,53,
-32,95,56,56,55,41,41,41,32,73,41,41,41,32,40,85,32,65,41,41,
-41,41,41,41,41,41,32,40,40,40,83,39,32,40,83,39,32,40,83,39,
-32,40,67,39,32,40,83,39,32,66,41,41,41,41,41,32,40,40,66,32,
-40,66,32,40,66,32,40,66,32,40,66,32,80,41,41,41,41,41,32,40,
-40,66,32,40,66,32,40,67,39,32,67,41,41,41,32,40,40,66,32,40,
-67,39,32,67,41,41,32,40,40,66,32,40,66,32,40,67,32,95,49,52,
-50,50,41,41,41,32,40,67,32,95,52,56,49,41,41,41,41,41,41,32,
-40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,85,41,41,41,
-41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,66,
-32,40,66,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,
-66,41,41,41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,
-32,40,67,39,32,66,41,41,32,40,40,66,32,66,39,41,32,40,40,66,
-32,40,66,32,67,41,41,32,40,40,67,39,32,40,67,39,32,95,49,52,
-50,50,41,41,32,40,67,32,95,52,56,50,41,41,41,41,41,41,32,40,
-40,67,39,32,40,67,39,32,95,52,56,49,41,41,32,80,41,41,41,41,
-32,40,67,32,95,52,56,50,41,41,41,41,41,41,32,40,85,32,75,41,
-41,41,32,95,49,50,49,55,41,41,41,41,32,40,40,65,32,58,49,52,
-50,51,32,40,40,66,32,40,66,32,40,66,32,40,40,95,51,51,32,95,
-53,57,41,32,40,95,54,53,32,95,49,50,51,54,41,41,41,41,41,32,
-40,40,66,32,40,40,83,39,32,66,41,32,40,40,66,32,67,41,32,40,
-40,40,67,39,32,67,41,32,95,49,48,49,48,41,32,40,40,95,51,53,
-32,95,53,57,41,32,95,52,57,56,41,41,41,41,41,32,40,40,66,32,
-40,66,32,40,66,32,85,41,41,41,32,40,40,40,83,39,32,40,83,39,
-32,83,41,41,32,40,40,66,32,40,66,32,40,40,83,39,32,67,39,41,
-32,40,40,66,32,83,39,41,32,40,40,66,32,83,39,41,32,83,41,41,
-41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,
-39,32,40,67,39,32,40,67,39,32,40,83,39,32,40,67,39,32,67,41,
-41,41,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,
-39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,83,39,32,40,67,
-39,32,67,41,41,41,41,41,41,41,41,32,40,40,40,67,39,32,40,67,
-39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,83,
-39,32,40,67,39,32,67,41,41,41,41,41,41,41,41,32,40,40,40,67,
-39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,
-39,32,40,83,39,32,40,67,39,32,67,41,41,41,41,41,41,41,41,32,
-40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,
-39,32,40,67,39,32,40,83,39,32,40,67,39,32,67,41,41,41,41,41,
-41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,
-39,32,40,67,39,32,40,67,39,32,40,83,39,32,40,67,39,32,67,41,
-41,41,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,
-39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,83,39,32,40,67,
-39,32,67,41,41,41,41,41,41,41,41,32,40,40,40,67,39,32,40,67,
-39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,83,
-39,32,40,67,39,32,67,41,41,41,41,41,41,41,41,32,40,40,40,67,
-39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,
-39,32,40,83,39,32,40,67,39,32,67,41,41,41,41,41,41,41,41,32,
-40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,
-39,32,40,67,39,32,40,83,39,32,40,67,39,32,67,41,41,41,41,41,
-41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,
-39,32,40,67,39,32,40,67,39,32,40,83,39,32,40,67,39,32,67,41,
-41,41,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,
-39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,83,39,32,40,67,
-39,32,67,41,41,41,41,41,41,41,41,32,40,40,40,67,39,32,40,67,
-39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,83,
-39,32,40,67,39,32,67,41,41,41,41,41,41,41,41,32,40,40,40,67,
-39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,
-39,32,40,83,39,32,40,67,39,32,67,41,41,41,41,41,41,41,41,32,
-40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,
-39,32,40,67,39,32,40,83,39,32,40,67,39,32,67,41,41,41,41,41,
-41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,
-39,32,40,67,39,32,40,67,39,32,40,83,39,32,40,67,39,32,67,41,
-41,41,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,
-39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,83,39,32,67,41,
-41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,
-40,66,32,40,66,32,40,66,32,40,67,32,67,39,41,41,41,41,41,41,
-41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,
-32,40,67,39,32,40,67,39,32,66,41,41,41,41,41,41,32,40,40,66,
-32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,
-41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
-40,66,32,40,67,32,67,39,41,41,41,41,41,41,41,32,40,40,40,67,
-39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,
-39,32,67,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
-40,40,67,39,32,66,41,32,40,66,39,32,40,40,66,32,67,41,32,40,
-67,32,95,49,48,49,48,41,41,41,41,41,41,41,32,40,40,66,32,40,
-66,32,40,67,39,32,67,41,41,41,32,40,40,66,32,40,67,39,32,67,
-41,41,32,40,40,67,39,32,67,41,32,40,67,32,95,49,52,50,52,41,
-41,41,41,41,41,32,40,40,66,32,40,95,50,55,48,32,40,95,51,53,
-32,95,53,57,41,41,41,32,40,40,66,32,95,52,57,57,41,32,40,40,
-40,67,39,32,67,41,32,40,40,67,32,80,41,32,95,52,56,48,41,41,
-32,95,52,56,48,41,41,41,41,41,41,41,32,40,90,32,75,41,41,41,
-41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,75,41,
-41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,40,90,
-32,75,41,41,41,32,75,41,41,32,75,41,41,32,40,90,32,75,41,41,
-41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,40,90,
-32,40,90,32,75,41,41,41,41,32,40,90,32,75,41,41,41,32,40,90,
-32,75,41,41,41,32,75,41,41,32,75,41,41,32,40,90,32,75,41,41,
-41,41,32,40,40,66,32,40,66,32,40,67,39,32,67,41,41,41,32,40,
-40,66,32,40,67,39,32,67,41,41,32,40,40,67,39,32,67,41,32,40,
-67,32,95,49,52,50,52,41,41,41,41,41,41,41,41,41,32,40,40,65,
-32,58,49,52,50,52,32,40,40,40,67,39,32,40,67,39,32,40,83,39,
-32,66,41,41,41,32,40,40,66,32,40,66,32,40,66,32,83,41,41,41,
-32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,
-95,50,55,48,32,95,49,52,51,51,41,41,41,41,41,32,40,40,66,32,
-67,41,32,40,67,32,95,49,52,50,55,41,41,41,32,40,40,95,51,53,
-32,95,53,57,41,32,95,52,57,56,41,41,41,41,32,40,40,66,32,40,
-66,32,40,66,32,40,67,32,66,41,41,41,41,32,40,40,40,83,39,32,
-66,41,32,40,66,39,32,40,40,66,32,67,41,32,40,40,66,32,40,40,
-67,39,32,67,39,41,32,40,40,66,32,67,39,41,32,67,39,41,41,41,
-32,40,40,40,67,39,32,40,83,39,32,67,41,41,32,40,40,66,32,40,
-66,32,40,40,83,39,32,83,39,41,32,95,52,48,57,41,41,41,32,40,
-40,40,67,39,32,66,41,32,40,66,39,32,40,66,39,32,40,40,66,32,
-40,95,51,51,32,95,53,57,41,41,32,95,49,51,55,49,41,41,41,41,
-32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,95,50,55,48,32,
-40,95,51,53,32,95,53,57,41,41,41,41,41,41,32,40,40,66,32,40,
-66,32,40,66,32,40,66,32,95,52,57,57,41,41,41,41,32,40,40,66,
-32,40,66,32,40,67,39,32,67,41,41,41,32,40,40,40,67,39,32,66,
-41,32,40,40,66,32,40,83,39,32,80,41,41,32,40,40,40,67,39,32,
-66,41,32,95,56,50,52,41,32,95,56,50,51,41,41,41,32,40,40,40,
-67,39,32,40,67,39,32,79,41,41,32,40,40,66,32,40,67,32,80,41,
-41,32,95,49,51,51,56,41,41,32,75,41,41,41,41,41,41,41,41,32,
-40,40,66,32,40,66,32,40,95,50,55,48,32,40,95,51,53,32,95,53,
-57,41,41,41,41,32,40,40,66,32,40,66,32,95,52,57,57,41,41,32,
-40,40,66,32,67,41,32,40,40,67,32,80,41,32,95,52,56,48,41,41,
-41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,
-40,66,32,40,66,32,90,41,41,32,40,40,40,67,39,32,66,41,32,40,
-66,39,32,40,40,66,32,95,50,55,48,41,32,40,95,49,49,56,51,32,
-95,54,55,51,41,41,41,41,32,40,40,66,32,40,66,32,40,95,52,56,
-50,32,34,77,117,108,116,105,112,108,101,32,99,111,110,115,116,114,97,105,
-110,116,32,115,111,108,117,116,105,111,110,115,32,102,111,114,58,32,34,41,
-41,41,32,40,40,66,32,40,66,32,95,57,50,52,41,41,32,95,49,50,
-55,57,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,49,52,50,
-53,32,40,90,32,40,40,40,67,39,32,40,67,39,32,40,95,51,51,32,
-95,53,57,41,41,41,32,40,40,66,32,40,95,52,52,32,95,53,57,41,
-41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,95,51,51,32,
-95,53,57,41,41,32,95,49,51,55,49,41,41,32,40,40,66,32,40,66,
-32,40,95,51,53,32,95,53,57,41,41,41,32,40,67,32,80,41,41,41,
-41,41,32,40,40,66,32,40,95,50,55,48,32,40,95,51,53,32,95,53,
-57,41,41,41,32,40,40,66,32,95,52,57,57,41,32,40,40,40,67,39,
-32,67,41,32,40,40,40,83,39,32,80,41,32,40,40,66,32,95,56,51,
-48,41,32,40,95,52,49,50,32,40,40,95,50,55,50,32,95,56,50,51,
-41,32,95,53,57,56,41,41,41,41,32,73,41,41,32,95,52,56,48,41,
-41,41,41,41,41,32,40,40,65,32,58,49,52,50,54,32,40,90,32,40,
-40,40,67,39,32,67,41,32,40,40,66,32,40,67,32,83,41,41,32,40,
-40,66,32,40,40,83,39,32,66,41,32,80,41,41,32,40,40,40,67,39,
-32,66,41,32,40,40,66,32,40,67,39,32,40,67,39,32,80,41,41,41,
-32,40,40,66,32,40,66,32,40,66,32,40,40,95,51,51,32,95,53,57,
-41,32,40,95,54,53,32,95,49,50,51,56,41,41,41,41,41,32,40,40,
-66,32,40,40,67,39,32,40,67,39,32,67,41,41,32,40,40,40,67,39,
-32,40,67,39,32,67,41,41,32,40,40,66,32,67,41,32,40,67,32,95,
-49,52,51,55,41,41,41,32,40,40,95,51,53,32,95,53,57,41,32,95,
-52,57,56,41,41,41,41,32,40,40,66,32,85,41,32,40,40,40,67,39,
-32,66,41,32,40,40,66,32,40,67,39,32,40,95,51,51,32,95,53,57,
-41,41,41,32,40,40,66,32,40,95,52,52,32,95,53,57,41,41,32,40,
-40,66,32,85,41,32,40,40,40,83,39,32,66,41,32,40,66,39,32,40,
-40,66,32,40,95,51,51,32,95,53,57,41,41,32,95,49,51,55,49,41,
-41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,95,51,53,
-32,95,53,57,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
-40,67,32,80,41,41,41,41,32,95,49,52,51,54,41,41,41,41,41,41,
-41,32,40,40,66,32,40,66,32,40,95,50,55,48,32,40,95,51,53,32,
-95,53,57,41,41,41,41,32,40,40,66,32,40,66,32,95,52,57,57,41,
-41,32,40,40,40,67,39,32,40,67,39,32,67,41,41,32,80,41,32,95,
-52,56,48,41,41,41,41,41,41,41,41,41,32,40,90,32,75,41,41,41,
-41,41,32,40,95,49,51,57,57,32,95,54,55,51,41,41,41,41,32,40,
-40,65,32,58,49,52,50,55,32,40,40,66,32,40,66,32,40,67,39,32,
-95,52,49,49,41,41,41,32,40,40,66,32,40,66,32,40,66,32,85,41,
-41,41,32,40,40,66,32,40,66,32,40,66,32,40,40,67,39,32,40,67,
-39,32,66,41,41,32,40,40,66,32,40,66,32,95,52,49,49,41,41,32,
-40,40,66,32,40,66,32,40,80,32,75,41,41,41,32,40,40,66,32,40,
-66,32,85,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,
-40,67,39,32,79,41,41,41,41,32,40,40,66,32,40,66,32,40,40,83,
-39,32,66,41,32,40,40,66,32,80,41,32,95,52,50,56,41,41,41,41,
-32,40,40,66,32,40,66,32,40,66,32,67,41,41,41,32,40,40,40,67,
-39,32,66,41,32,40,66,39,32,80,41,41,32,40,40,67,39,32,95,52,
-49,50,41,32,95,49,52,50,56,41,41,41,41,41,32,75,41,41,41,41,
-41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,
-67,39,32,79,41,41,41,41,32,40,40,66,32,40,67,39,32,67,41,41,
-32,40,40,66,32,67,41,32,95,49,52,50,57,41,41,41,32,75,41,41,
-41,41,41,32,40,40,65,32,58,49,52,50,56,32,40,40,66,32,89,41,
-32,40,40,40,83,39,32,66,41,32,83,41,32,40,40,66,32,40,66,32,
-90,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,40,67,39,
-32,40,67,39,32,67,41,41,32,40,40,40,67,39,32,40,83,39,32,40,
-67,39,32,67,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,
-39,32,83,41,41,41,32,40,40,66,32,40,40,67,39,32,40,83,39,32,
-67,41,41,32,40,40,40,67,39,32,40,67,39,32,83,41,41,32,40,40,
-40,67,39,32,40,67,39,32,83,41,41,32,40,40,40,67,39,32,40,67,
-39,32,83,41,41,32,40,40,40,67,39,32,40,67,39,32,83,41,41,32,
-40,40,40,67,39,32,40,67,39,32,83,41,41,32,40,40,40,67,39,32,
-40,67,39,32,83,41,41,32,40,40,40,67,39,32,40,67,39,32,83,41,
-41,32,40,40,40,67,39,32,40,67,39,32,83,41,41,32,40,40,40,67,
-39,32,40,67,39,32,83,41,41,32,40,40,40,67,39,32,40,67,39,32,
-83,41,41,32,40,40,40,67,39,32,40,83,39,32,67,41,41,32,40,40,
-40,67,39,32,67,41,32,40,40,40,67,39,32,40,67,39,32,83,39,41,
-41,32,40,40,66,32,40,67,32,40,40,83,32,73,41,32,75,41,41,41,
-32,40,40,40,83,39,32,40,67,39,32,66,41,41,32,40,66,32,95,56,
-50,52,41,41,32,73,41,41,41,32,40,90,32,75,41,41,41,32,75,41,
-41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,40,90,
-32,75,41,41,41,32,75,41,41,32,75,41,41,32,40,90,32,75,41,41,
-41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,40,90,
-32,40,90,32,75,41,41,41,41,32,40,90,32,75,41,41,41,32,40,90,
-32,75,41,41,41,41,32,40,40,66,32,40,40,67,39,32,66,41,32,40,
-40,66,32,95,50,55,48,41,32,95,52,57,51,41,41,41,32,40,67,32,
-40,95,52,53,53,32,95,50,57,53,41,41,41,41,41,32,75,41,41,32,
-40,40,67,39,32,66,41,32,95,56,52,48,41,41,41,32,40,95,49,51,
-57,57,32,95,54,55,51,41,41,41,41,41,41,41,32,40,40,65,32,58,
-49,52,50,57,32,40,40,66,32,40,40,83,39,32,40,83,39,32,83,41,
-41,32,40,40,66,32,40,66,32,85,41,41,32,40,40,40,67,39,32,40,
-67,39,32,40,95,51,51,32,95,52,56,55,41,41,41,32,40,40,89,32,
-40,40,40,67,39,32,40,83,39,32,67,41,41,32,40,40,66,32,40,66,
-32,40,40,67,39,32,67,39,41,32,83,41,41,41,32,40,40,66,32,40,
-66,32,40,40,67,39,32,40,67,39,32,66,41,41,32,66,39,41,41,41,
-32,40,40,66,32,40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,
-66,32,40,66,32,40,67,39,32,66,41,41,41,32,40,40,66,32,40,66,
-32,40,66,32,40,95,51,51,32,95,52,56,55,41,41,41,41,32,95,49,
-52,51,49,41,41,41,41,32,40,40,66,32,40,66,32,67,41,41,32,67,
-41,41,41,41,41,32,40,95,49,52,32,95,52,56,54,41,41,41,32,95,
-52,56,48,41,41,32,40,40,66,32,40,95,49,52,32,95,52,56,54,41,
-41,32,40,40,67,32,80,41,32,95,52,56,48,41,41,41,41,41,41,32,
-40,40,66,32,40,66,32,40,66,32,90,41,41,41,32,40,40,66,32,40,
-66,32,40,66,32,90,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
-40,66,32,40,95,50,55,48,32,40,95,49,49,32,95,52,56,57,41,41,
-41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,95,52,49,50,41,
-41,41,32,95,49,52,51,48,41,41,41,41,41,41,32,40,40,65,32,58,
-49,52,51,48,32,40,40,66,32,40,66,32,40,66,32,85,41,41,41,32,
-40,40,66,32,40,40,83,39,32,40,83,39,32,66,41,41,32,40,40,66,
-32,40,66,32,40,83,39,32,40,95,51,51,32,95,52,56,55,41,41,41,
-41,32,40,40,66,32,40,66,32,40,66,32,40,95,50,55,48,32,40,95,
-52,55,32,95,52,56,55,41,41,41,41,41,32,40,40,66,32,67,41,32,
-40,67,32,40,95,52,51,50,32,40,40,80,32,40,95,49,52,51,49,32,
-95,52,56,48,41,41,32,40,75,32,40,75,32,40,95,52,57,57,32,95,
-52,56,48,41,41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,
-66,32,40,66,32,40,66,32,40,66,32,40,40,83,39,32,40,95,51,51,
-32,95,52,56,55,41,41,32,95,49,52,51,50,41,41,41,41,41,41,32,
-40,40,66,32,40,66,32,40,66,32,40,40,67,39,32,66,41,32,40,40,
-66,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,40,95,51,
-51,32,95,52,56,55,41,41,41,32,40,40,66,32,40,66,32,95,49,52,
-51,50,41,41,32,40,40,66,32,40,66,32,40,95,52,49,49,32,40,85,
-32,40,40,40,67,39,32,66,41,32,40,85,32,75,41,41,32,40,40,67,
-32,79,41,32,75,41,41,41,41,41,41,32,95,52,50,57,41,41,41,41,
-41,41,41,41,32,40,40,40,83,39,32,66,41,32,40,66,39,32,40,66,
-39,32,40,40,66,32,40,67,39,32,66,41,41,32,40,40,40,67,39,32,
-66,41,32,40,40,66,32,40,83,39,32,40,95,51,52,32,95,52,56,55,
-41,41,41,32,40,40,66,32,40,40,67,39,32,95,50,55,48,41,32,40,
-40,66,32,40,95,52,54,32,95,52,56,55,41,41,32,40,40,66,32,95,
-49,50,51,41,32,40,40,66,32,95,52,48,57,41,32,40,40,66,32,95,
-49,52,48,57,41,32,40,95,52,49,49,32,40,85,32,40,75,32,40,90,
-32,40,40,67,32,79,41,32,75,41,41,41,41,41,41,41,41,41,41,41,
-32,40,40,40,67,39,32,95,50,55,48,41,32,40,95,57,49,54,32,95,
-54,55,51,41,41,32,34,102,114,101,101,32,116,121,112,101,32,118,97,114,
-105,97,98,108,101,32,105,110,32,111,117,116,112,117,116,32,102,117,110,100,
-101,112,34,41,41,41,41,32,40,40,66,32,40,66,32,40,95,49,52,32,
-95,52,56,54,41,41,41,32,80,41,41,41,41,41,41,32,40,40,40,67,
-39,32,66,41,32,40,66,39,32,40,66,39,32,40,40,66,32,40,67,39,
-32,95,52,49,49,41,41,32,40,40,66,32,40,66,32,85,41,41,32,40,
-40,66,32,40,66,32,40,40,67,39,32,66,41,32,40,66,39,32,40,85,
-32,75,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,
-39,32,40,67,39,32,79,41,41,41,41,32,40,40,66,32,40,66,32,40,
-66,32,67,41,41,41,32,40,40,40,67,39,32,66,41,32,40,66,39,32,
-80,41,41,32,95,49,52,50,56,41,41,41,32,75,41,41,41,41,41,41,
-41,32,40,40,66,32,67,41,32,40,67,32,95,52,51,48,41,41,41,41,
-41,41,41,41,41,32,40,40,65,32,58,49,52,51,49,32,40,89,32,40,
-40,66,32,40,40,83,39,32,40,83,39,32,83,41,41,32,40,40,40,67,
-39,32,40,67,39,32,40,67,39,32,83,41,41,41,32,40,40,40,67,39,
-32,40,67,39,32,40,67,39,32,83,41,41,41,32,40,40,40,67,39,32,
-40,67,39,32,40,67,39,32,83,41,41,41,32,40,40,40,67,39,32,40,
-67,39,32,40,67,39,32,83,41,41,41,32,40,40,40,67,39,32,40,67,
-39,32,40,67,39,32,83,41,41,41,32,40,40,40,67,39,32,40,67,39,
-32,40,67,39,32,83,41,41,41,32,40,40,40,67,39,32,40,67,39,32,
-40,67,39,32,83,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,
-67,39,32,83,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,
-39,32,83,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,
-32,83,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,
-83,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,83,
-41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,83,41,
-41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,83,41,41,
-41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,83,41,41,41,
-32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,83,41,41,41,32,
-40,40,40,67,39,32,67,41,32,40,40,66,32,40,40,67,39,32,67,39,
-41,32,83,39,41,41,32,40,40,40,67,39,32,40,67,39,32,40,83,39,
-32,67,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,83,39,32,
-67,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,83,39,32,67,
-41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,83,39,32,67,41,
-41,41,32,40,40,40,67,39,32,40,67,39,32,40,83,39,32,67,41,41,
-41,32,40,40,40,67,39,32,40,67,39,32,40,83,39,32,67,41,41,41,
-32,40,40,40,67,39,32,40,67,39,32,40,83,39,32,67,41,41,41,32,
-40,40,40,67,39,32,40,67,39,32,40,83,39,32,67,41,41,41,32,40,
-40,40,67,39,32,40,67,39,32,40,83,39,32,67,41,41,41,32,40,40,
-40,67,39,32,40,67,39,32,40,83,39,32,67,41,41,41,32,40,40,40,
-67,39,32,40,67,39,32,40,83,39,32,67,41,41,41,32,40,40,40,67,
-39,32,40,67,39,32,40,83,39,32,67,41,41,41,32,40,40,40,67,39,
-32,40,67,39,32,40,83,39,32,67,41,41,41,32,40,40,40,67,39,32,
-40,67,39,32,40,83,39,32,67,41,41,41,32,40,40,40,67,39,32,40,
-67,39,32,40,83,39,32,67,41,41,41,32,40,40,40,67,39,32,40,67,
-39,32,40,83,39,32,67,41,41,41,32,40,40,40,67,39,32,67,41,32,
-40,40,66,32,40,40,67,39,32,83,39,41,32,67,39,41,41,32,40,40,
-66,32,40,40,67,39,32,40,67,39,32,67,41,41,32,40,40,67,39,32,
-67,41,32,40,95,50,49,49,32,95,57,55,52,41,41,41,41,32,40,95,
-49,52,32,95,52,56,54,41,41,41,41,32,40,90,32,75,41,41,41,32,
-40,90,32,75,41,41,41,32,75,41,41,32,40,90,32,75,41,41,41,32,
-40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,75,41,41,32,
-75,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,
-40,90,32,75,41,41,41,32,40,90,32,40,90,32,75,41,41,41,41,32,
-40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,75,41,41,32,
-75,41,41,32,40,90,32,75,41,41,41,41,32,40,90,32,75,41,41,41,
-32,40,90,32,75,41,41,41,32,75,41,41,32,40,90,32,75,41,41,41,
-32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,75,41,41,
-32,75,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,
-32,40,90,32,75,41,41,41,32,40,90,32,40,90,32,75,41,41,41,41,
-32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,75,41,41,
-32,75,41,41,32,40,90,32,75,41,41,41,41,32,40,40,66,32,40,40,
-83,39,32,40,83,39,32,83,41,41,32,40,40,40,67,39,32,40,67,39,
-32,40,67,39,32,83,41,41,41,32,40,40,40,67,39,32,40,67,39,32,
-40,67,39,32,83,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,
-67,39,32,83,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,
-39,32,83,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,
-32,83,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,
-83,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,83,
-41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,83,41,
-41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,83,41,41,
-41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,83,41,41,41,
-32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,83,41,41,41,32,
-40,40,40,67,39,32,40,67,39,32,40,67,39,32,83,41,41,41,32,40,
-40,40,67,39,32,40,67,39,32,40,67,39,32,83,41,41,41,32,40,40,
-66,32,40,40,67,39,32,66,41,32,40,40,66,32,83,41,32,40,40,40,
-67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,67,32,40,
-40,67,32,83,39,41,32,75,41,41,32,40,90,32,75,41,41,41,32,40,
-90,32,75,41,41,41,32,75,41,41,41,41,32,40,40,66,32,40,66,32,
-90,41,41,32,40,40,40,67,39,32,40,67,39,32,40,83,39,32,67,41,
-41,41,32,40,40,40,67,39,32,40,67,39,32,40,83,39,32,67,41,41,
-41,32,40,40,40,67,39,32,40,67,39,32,40,83,39,32,67,41,41,41,
-32,40,40,40,67,39,32,40,67,39,32,40,83,39,32,67,41,41,41,32,
-40,40,40,67,39,32,40,67,39,32,40,83,39,32,67,41,41,41,32,40,
-40,40,67,39,32,40,67,39,32,40,83,39,32,67,41,41,41,32,40,40,
-40,67,39,32,40,67,39,32,40,83,39,32,67,41,41,41,32,40,40,40,
-67,39,32,40,67,39,32,40,83,39,32,67,41,41,41,32,40,40,40,67,
-39,32,40,67,39,32,40,83,39,32,67,41,41,41,32,40,40,40,67,39,
-32,40,67,39,32,40,83,39,32,67,41,41,41,32,40,40,40,67,39,32,
-40,67,39,32,40,83,39,32,67,41,41,41,32,40,40,40,67,39,32,40,
-67,39,32,40,83,39,32,67,41,41,41,32,40,40,40,67,39,32,40,67,
-39,32,83,41,41,32,40,40,66,32,40,40,67,39,32,40,83,39,32,67,
-39,41,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,
-41,32,40,40,67,32,40,40,67,32,83,39,41,32,75,41,41,32,40,90,
-32,75,41,41,41,32,40,90,32,75,41,41,41,32,75,41,41,41,32,40,
-40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,40,67,39,32,40,
-67,39,32,67,41,41,32,40,40,67,39,32,67,41,32,40,95,50,49,49,
-32,95,56,54,51,41,41,41,41,32,40,95,49,52,32,95,52,56,54,41,
-41,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,
-32,75,41,41,32,75,41,41,32,40,90,32,75,41,41,41,32,40,90,32,
-75,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,40,90,32,75,
-41,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,
-32,75,41,41,32,75,41,41,32,40,90,32,75,41,41,41,41,41,32,40,
-90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,75,41,41,32,75,
-41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,40,
-90,32,75,41,41,41,32,40,90,32,40,90,32,75,41,41,41,41,32,40,
-90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,75,41,41,32,75,
-41,41,32,40,90,32,75,41,41,41,41,32,40,40,40,67,39,32,40,67,
-39,32,40,67,39,32,67,41,41,41,32,40,40,40,67,39,32,40,67,39,
-32,40,67,39,32,67,41,41,41,32,40,40,40,83,39,32,40,83,39,32,
-40,67,39,32,83,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,
-67,39,32,67,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,
-39,32,67,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,
-32,67,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,
-67,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,67,
-41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,67,41,
-41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,
-41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,41,
-32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,41,32,
-40,40,40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,41,32,40,
-40,40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,41,32,40,40,
-40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,41,32,40,40,40,
-67,39,32,40,67,39,32,67,41,41,32,40,40,66,32,40,66,32,40,40,
-67,39,32,67,39,41,32,40,85,32,40,75,32,95,52,57,56,41,41,41,
-41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,
-32,67,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,
-32,40,67,39,32,67,41,41,41,41,32,40,40,40,67,39,32,40,67,39,
-32,40,67,39,32,40,67,39,32,67,41,41,41,41,32,40,40,40,67,39,
-32,40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,41,41,32,40,
-40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,
-41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,
-32,67,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,
-32,40,67,39,32,67,41,41,41,41,32,40,40,40,67,39,32,40,67,39,
-32,40,67,39,32,40,67,39,32,67,41,41,41,41,32,40,40,40,67,39,
-32,40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,41,41,32,40,
-40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,
-41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,
-32,67,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,
-32,40,67,39,32,67,41,41,41,41,32,40,40,40,67,39,32,40,67,39,
-32,40,67,39,32,40,67,39,32,67,41,41,41,41,32,40,40,40,67,39,
-32,40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,41,41,32,40,
-40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,
-41,41,32,40,40,40,67,39,32,40,67,39,32,67,41,41,32,40,40,66,
-32,40,66,32,40,40,67,39,32,67,39,41,32,40,40,66,32,67,39,41,
-32,40,85,32,40,75,32,95,52,57,56,41,41,41,41,41,41,32,40,40,
-40,83,39,32,40,67,39,32,40,67,39,32,66,41,41,41,32,40,40,66,
-32,40,66,32,40,66,32,40,67,39,32,66,41,41,41,41,32,40,66,32,
-40,66,32,40,66,32,40,95,51,51,32,95,52,56,55,41,41,41,41,41,
-41,32,40,40,66,32,40,66,32,67,41,41,32,67,41,41,41,41,32,40,
-75,32,40,75,32,95,52,57,56,41,41,41,41,32,40,75,32,95,52,57,
-56,41,41,41,32,40,75,32,40,75,32,95,52,57,56,41,41,41,41,32,
-40,75,32,40,75,32,95,52,57,56,41,41,41,41,32,40,75,32,40,75,
-32,95,52,57,56,41,41,41,41,32,40,75,32,95,52,57,56,41,41,41,
-32,40,75,32,95,52,57,56,41,41,41,32,40,75,32,40,75,32,95,52,
-57,56,41,41,41,41,32,40,75,32,40,75,32,95,52,57,56,41,41,41,
-41,32,40,75,32,40,75,32,95,52,57,56,41,41,41,41,32,40,75,32,
-40,75,32,40,75,32,95,52,57,56,41,41,41,41,41,32,40,75,32,40,
-75,32,95,52,57,56,41,41,41,41,32,40,75,32,40,75,32,95,52,57,
-56,41,41,41,41,32,40,75,32,95,52,57,56,41,41,41,32,40,75,32,
-95,52,57,56,41,41,41,32,40,75,32,40,75,32,95,52,57,56,41,41,
-41,41,41,32,40,75,32,40,75,32,95,52,57,56,41,41,41,41,32,40,
-75,32,95,52,57,56,41,41,41,32,40,75,32,40,75,32,95,52,57,56,
-41,41,41,41,32,40,75,32,40,75,32,95,52,57,56,41,41,41,41,32,
-40,75,32,40,75,32,95,52,57,56,41,41,41,41,32,40,75,32,95,52,
-57,56,41,41,41,32,40,75,32,95,52,57,56,41,41,41,32,40,75,32,
-40,75,32,95,52,57,56,41,41,41,41,32,40,75,32,40,75,32,95,52,
-57,56,41,41,41,41,32,40,75,32,40,75,32,95,52,57,56,41,41,41,
-41,32,40,75,32,40,75,32,40,75,32,95,52,57,56,41,41,41,41,41,
-32,40,75,32,40,75,32,95,52,57,56,41,41,41,41,32,40,75,32,40,
-75,32,95,52,57,56,41,41,41,41,32,40,40,66,32,40,40,83,39,32,
-40,83,39,32,67,41,41,32,40,40,40,83,39,32,66,41,32,40,40,66,
-32,83,41,32,40,67,32,40,95,52,53,53,32,95,50,57,53,41,41,41,
-41,32,40,40,66,32,40,66,32,40,66,32,40,95,49,52,32,95,52,56,
-54,41,41,41,41,32,40,40,67,39,32,40,67,39,32,95,52,56,49,41,
-41,32,40,67,32,80,41,41,41,41,41,41,32,40,66,32,67,41,41,41,
-41,32,40,75,32,95,52,57,56,41,41,41,32,40,75,32,40,75,32,95,
-52,57,56,41,41,41,41,41,41,41,32,40,40,65,32,58,49,52,51,50,
-32,40,40,89,32,40,40,66,32,40,40,83,39,32,80,41,32,95,52,57,
-57,41,41,32,40,40,66,32,40,40,67,39,32,40,67,39,32,66,41,41,
-32,40,40,66,32,40,66,32,40,95,51,51,32,95,52,56,55,41,41,41,
-32,40,89,32,40,40,66,32,40,40,83,39,32,80,41,32,95,52,57,57,
-41,41,32,40,40,66,32,40,66,32,40,67,32,66,41,41,41,32,40,40,
-66,32,40,40,67,39,32,66,41,32,40,40,66,32,40,67,39,32,40,67,
-39,32,40,95,51,51,32,95,52,56,55,41,41,41,41,32,40,40,67,39,
-32,67,41,32,40,40,40,67,39,32,40,83,39,32,67,41,41,32,40,40,
-40,83,39,32,66,41,32,40,40,66,32,83,41,32,40,95,52,53,53,32,
-95,50,57,53,41,41,41,32,40,40,66,32,40,66,32,40,66,32,95,52,
-57,57,41,41,41,32,40,40,66,32,40,66,32,95,52,56,49,41,41,32,
-80,41,41,41,41,32,40,67,32,40,95,49,52,51,49,32,95,52,56,48,
-41,41,41,41,41,41,41,32,67,41,41,41,41,41,41,41,32,67,41,41,
-41,32,95,52,56,48,41,41,32,40,40,65,32,58,49,52,51,51,32,40,
-40,83,32,40,85,32,95,52,56,48,41,41,32,40,90,32,40,90,32,40,
-40,40,67,39,32,40,67,32,40,40,67,32,40,40,40,83,39,32,83,39,
-41,32,40,40,66,32,67,41,32,40,83,32,95,52,48,57,41,41,41,32,
-40,40,67,32,66,41,32,40,85,32,65,41,41,41,41,32,40,85,32,75,
-41,41,41,41,32,40,95,52,55,49,32,40,40,67,32,40,40,67,32,66,
-41,32,40,90,32,40,40,66,32,85,41,32,40,40,66,32,90,41,32,40,
-40,66,32,90,41,32,40,40,40,83,39,32,67,41,32,40,40,40,83,39,
-32,67,41,32,40,40,40,83,39,32,67,41,32,40,40,40,83,39,32,67,
-41,32,40,40,40,83,39,32,67,41,32,40,40,40,83,39,32,67,41,32,
-40,40,40,83,39,32,67,41,32,40,40,40,83,39,32,67,41,32,40,40,
-40,83,39,32,67,41,32,40,40,40,83,39,32,67,41,32,40,40,40,83,
-39,32,67,41,32,40,40,40,83,39,32,67,41,32,40,40,40,83,39,32,
-67,41,32,40,40,40,83,39,32,67,41,32,40,40,40,83,39,32,67,41,
-32,40,40,40,83,39,32,67,41,32,40,40,66,32,40,80,32,40,40,66,
-32,40,40,95,52,51,55,32,95,49,51,50,41,32,40,40,95,52,56,50,
-32,95,49,51,54,55,41,32,95,49,50,57,56,41,41,41,32,95,57,56,
-50,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,
-32,75,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,
-32,40,90,32,75,41,41,41,32,75,41,41,32,75,41,41,32,40,90,32,
-75,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,
-32,40,90,32,40,90,32,75,41,41,41,41,32,40,90,32,75,41,41,41,
-32,40,90,32,75,41,41,41,32,75,41,41,32,75,41,41,32,40,90,32,
-75,41,41,41,41,41,41,41,41,32,40,40,40,110,111,77,97,116,99,104,
-32,34,115,114,99,47,77,105,99,114,111,72,115,47,84,121,112,101,67,104,
-101,99,107,46,104,115,34,41,32,35,50,53,51,55,41,32,35,51,55,41,
-41,41,41,32,40,40,40,83,39,32,95,52,49,49,41,32,40,40,66,32,
-85,41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,40,
-67,39,32,67,41,32,40,40,66,32,40,67,32,40,95,50,49,49,32,95,
-50,57,53,41,41,41,32,40,40,66,32,40,95,52,49,56,32,95,50,57,
-54,41,41,32,40,95,52,49,50,32,95,53,57,56,41,41,41,41,32,75,
-41,41,32,40,40,67,32,79,41,32,75,41,41,41,41,32,73,41,41,41,
-41,41,41,32,40,40,65,32,58,49,52,51,52,32,40,40,40,95,51,51,
-32,95,53,57,41,32,40,95,54,53,32,95,49,50,52,48,41,41,32,40,
-40,80,32,40,40,95,51,53,32,95,53,57,41,32,95,49,52,53,48,41,
-41,32,40,90,32,40,85,32,40,40,66,32,40,40,67,39,32,40,95,51,
-51,32,95,53,57,41,41,32,95,49,50,56,57,41,41,32,40,40,40,67,
-39,32,66,41,32,40,40,66,32,95,50,55,48,41,32,40,40,66,32,40,
-95,49,49,56,51,32,95,54,55,51,41,41,32,40,95,56,56,53,32,95,
-56,56,55,41,41,41,41,32,40,40,66,32,40,95,52,56,50,32,34,67,
-97,110,110,111,116,32,115,97,116,105,115,102,121,32,99,111,110,115,116,114,
-97,105,110,116,58,32,34,41,41,32,95,57,50,48,41,41,41,41,41,41,
-41,41,32,40,40,65,32,58,49,52,51,53,32,40,40,40,83,39,32,66,
-41,32,40,66,39,32,40,40,66,32,40,95,51,51,32,95,53,57,41,41,
-32,95,49,51,55,49,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
-40,67,32,95,49,50,53,56,41,41,41,41,32,95,49,52,51,54,41,41,
-41,32,40,40,65,32,58,49,52,51,54,32,40,40,66,32,40,66,32,95,
-56,50,52,41,41,32,40,40,66,32,95,56,50,52,41,32,40,40,66,32,
-95,56,50,51,41,32,40,40,67,32,95,57,56,48,41,32,95,49,49,57,
-54,41,41,41,41,41,32,40,40,65,32,58,49,52,51,55,32,40,40,40,
-67,39,32,40,67,39,32,67,41,41,32,40,40,66,32,40,40,83,39,32,
-83,41,32,95,57,48,51,41,41,32,40,40,40,67,39,32,40,67,39,32,
-67,41,41,32,40,40,40,67,39,32,40,83,39,32,83,41,41,32,40,40,
-67,39,32,40,67,39,32,40,95,52,53,51,32,95,49,52,51,57,41,41,
-41,32,80,41,41,32,40,40,40,67,39,32,67,41,32,80,41,32,40,40,
-40,67,39,32,67,41,32,40,40,40,67,39,32,67,41,32,40,40,40,67,
-39,32,67,41,32,40,40,40,67,39,32,67,41,32,40,40,40,67,39,32,
-67,41,32,40,40,40,67,39,32,67,41,32,40,40,40,67,39,32,67,41,
-32,40,40,40,67,39,32,67,41,32,40,40,40,67,39,32,67,41,32,40,
-40,40,67,39,32,67,41,32,40,40,40,67,39,32,67,41,32,40,40,40,
-67,39,32,67,41,32,40,40,40,67,39,32,67,41,32,40,40,40,67,39,
-32,67,41,32,40,40,40,67,39,32,67,41,32,40,40,67,32,40,40,40,
-67,39,32,67,39,41,32,40,85,32,40,75,32,95,52,57,56,41,41,41,
-32,40,40,40,67,39,32,40,67,39,32,67,41,41,32,40,40,40,67,39,
-32,40,67,39,32,67,41,41,32,40,40,40,67,39,32,40,67,39,32,67,
-41,41,32,40,40,40,67,39,32,40,67,39,32,67,41,41,32,40,40,40,
-67,39,32,40,67,39,32,67,41,41,32,40,40,40,67,39,32,40,67,39,
-32,67,41,41,32,40,40,40,67,39,32,40,67,39,32,67,41,41,32,40,
-40,40,67,39,32,40,67,39,32,67,41,41,32,40,40,40,67,39,32,40,
-67,39,32,67,41,41,32,40,40,40,67,39,32,40,67,39,32,67,41,41,
-32,40,40,40,67,39,32,40,67,39,32,67,41,41,32,40,40,40,67,39,
-32,40,67,39,32,67,41,41,32,40,40,40,67,39,32,40,67,39,32,67,
-41,41,32,40,40,40,67,39,32,40,67,39,32,67,41,41,32,40,40,40,
-67,39,32,40,67,39,32,67,41,41,32,40,40,67,32,40,40,40,67,39,
-32,67,39,41,32,40,40,66,32,67,39,41,32,40,85,32,40,75,32,95,
-52,57,56,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,
-32,95,52,57,57,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
-40,66,32,40,80,32,40,95,56,51,48,32,95,52,56,48,41,41,41,41,
-41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,67,39,32,
-66,41,41,32,40,40,66,32,40,66,32,79,41,41,32,80,41,41,41,32,
-40,40,40,67,39,32,40,67,39,32,79,41,41,32,80,41,32,75,41,41,
-41,41,41,41,32,40,75,32,40,75,32,95,52,57,56,41,41,41,41,32,
-40,75,32,95,52,57,56,41,41,41,32,40,75,32,40,75,32,95,52,57,
-56,41,41,41,41,32,40,75,32,40,75,32,95,52,57,56,41,41,41,41,
-32,40,75,32,40,75,32,95,52,57,56,41,41,41,41,32,40,75,32,95,
-52,57,56,41,41,41,32,40,75,32,95,52,57,56,41,41,41,32,40,75,
-32,40,75,32,95,52,57,56,41,41,41,41,32,40,75,32,40,75,32,95,
-52,57,56,41,41,41,41,32,40,75,32,40,75,32,95,52,57,56,41,41,
-41,41,32,40,75,32,40,75,32,40,75,32,95,52,57,56,41,41,41,41,
-41,32,40,75,32,40,75,32,95,52,57,56,41,41,41,41,32,40,75,32,
-40,75,32,95,52,57,56,41,41,41,41,32,40,75,32,95,52,57,56,41,
-41,41,32,40,75,32,95,52,57,56,41,41,41,32,40,75,32,40,75,32,
-95,52,57,56,41,41,41,41,41,32,40,75,32,40,75,32,95,52,57,56,
-41,41,41,41,32,40,75,32,95,52,57,56,41,41,41,32,40,75,32,40,
-75,32,95,52,57,56,41,41,41,41,32,40,75,32,40,75,32,95,52,57,
-56,41,41,41,41,32,40,75,32,40,75,32,95,52,57,56,41,41,41,41,
-32,40,75,32,95,52,57,56,41,41,41,32,40,75,32,95,52,57,56,41,
-41,41,32,40,75,32,40,75,32,95,52,57,56,41,41,41,41,32,40,75,
-32,40,75,32,95,52,57,56,41,41,41,41,32,40,75,32,40,75,32,95,
-52,57,56,41,41,41,41,32,40,75,32,40,75,32,40,75,32,95,52,57,
-56,41,41,41,41,41,32,40,75,32,40,75,32,95,52,57,56,41,41,41,
-41,32,40,75,32,40,75,32,95,52,57,56,41,41,41,41,32,40,75,32,
-95,52,57,56,41,41,41,32,40,75,32,95,52,57,56,41,41,41,32,40,
-75,32,40,75,32,95,52,57,56,41,41,41,41,41,41,32,40,95,52,57,
-57,32,40,40,80,32,40,95,56,51,48,32,95,52,56,48,41,41,32,95,
-52,56,48,41,41,41,41,41,32,40,95,52,57,57,32,40,40,80,32,40,
-95,56,51,48,32,95,52,56,48,41,41,32,95,52,56,48,41,41,41,41,
-32,40,40,65,32,58,49,52,51,56,32,40,40,40,67,39,32,40,67,39,
-32,67,41,41,32,40,40,40,67,39,32,40,67,39,32,83,41,41,32,40,
-40,40,83,39,32,40,83,39,32,40,83,39,32,67,39,41,41,41,32,40,
-40,40,83,39,32,40,83,39,32,66,41,41,32,40,40,66,32,40,66,32,
-95,49,50,49,41,41,32,95,57,48,51,41,41,32,40,40,40,83,39,32,
-40,83,39,32,40,83,39,32,95,49,50,49,41,41,41,32,40,40,66,32,
-40,66,32,40,95,52,53,51,32,95,49,52,51,57,41,41,41,32,80,41,
-41,32,40,40,66,32,40,66,32,40,95,52,53,51,32,95,49,52,51,57,
-41,41,41,32,40,67,32,80,41,41,41,41,41,32,40,40,40,83,39,32,
-40,83,39,32,66,41,41,32,40,40,66,32,66,39,41,32,40,40,66,32,
-40,66,32,95,52,56,49,41,41,32,80,41,41,41,32,40,40,40,83,39,
-32,40,83,39,32,66,41,41,32,40,40,66,32,66,39,41,32,40,40,66,
-32,40,66,32,95,52,56,49,41,41,32,40,67,32,80,41,41,41,41,32,
-40,40,40,83,39,32,40,83,39,32,40,83,39,32,40,83,39,32,95,52,
-56,50,41,41,41,41,32,40,40,66,32,40,66,32,67,41,41,32,80,41,
-41,32,40,40,40,67,39,32,40,67,39,32,40,83,39,32,40,67,39,32,
-95,52,56,50,41,41,41,41,32,40,40,66,32,40,66,32,67,41,41,32,
-40,67,32,80,41,41,41,32,73,41,41,41,41,41,41,32,73,41,41,32,
-40,40,66,32,40,66,32,95,52,49,49,41,41,32,40,40,66,32,40,66,
-32,85,41,41,32,40,40,66,32,40,40,67,39,32,40,67,39,32,66,41,
-41,32,40,40,40,67,39,32,67,41,32,95,57,48,51,41,32,75,41,41,
-41,32,40,40,66,32,40,66,32,40,95,52,49,49,32,40,40,67,32,79,
-41,32,75,41,41,41,41,32,40,40,40,83,39,32,40,83,39,32,79,41,
-41,32,80,41,32,40,40,40,67,39,32,40,67,39,32,79,41,41,32,40,
-67,32,80,41,41,32,75,41,41,41,41,41,41,41,41,32,40,40,65,32,
-58,49,52,51,57,32,40,40,67,32,66,41,32,40,40,40,67,39,32,66,
-41,32,66,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,67,
-39,32,66,41,41,32,40,40,66,32,40,66,32,95,49,50,50,41,41,32,
-95,57,48,51,41,41,41,32,95,57,48,51,41,41,41,41,32,40,40,65,
-32,58,49,52,52,48,32,80,41,32,40,40,65,32,58,49,52,52,49,32,
-40,40,66,32,40,66,32,85,41,41,32,40,40,40,67,39,32,40,67,39,
-32,40,67,39,32,67,41,41,41,32,40,40,66,32,40,40,83,39,32,66,
-41,32,40,40,66,32,67,41,32,40,95,52,53,53,32,95,57,55,52,41,
-41,41,41,32,40,40,40,83,39,32,40,83,39,32,67,41,41,32,40,40,
-66,32,40,40,83,39,32,67,41,32,95,49,48,49,48,41,41,32,40,40,
-66,32,40,66,32,40,95,50,55,48,32,95,49,56,51,41,41,41,32,40,
-40,66,32,40,66,32,40,95,52,56,50,32,34,117,110,100,101,102,105,110,
-101,100,32,34,41,41,41,32,40,40,40,67,39,32,66,41,32,95,52,56,
-50,41,32,40,40,66,32,40,95,52,56,50,32,34,58,32,34,41,41,32,
-95,57,56,52,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,83,
-32,40,40,67,32,83,41,32,40,40,66,32,40,40,67,39,32,80,41,32,
-95,49,56,52,41,41,32,40,90,32,75,41,41,41,41,41,41,32,40,40,
-66,32,40,66,32,40,66,32,40,95,50,55,48,32,95,49,56,51,41,41,
-41,41,32,40,40,66,32,40,66,32,40,66,32,40,95,52,56,50,32,34,
-97,109,98,105,103,117,111,117,115,32,34,41,41,41,41,32,40,40,40,67,
-39,32,66,41,32,40,66,39,32,95,52,56,50,41,41,32,40,40,66,32,
-40,66,32,40,95,52,56,50,32,34,58,32,34,41,41,41,32,40,40,40,
-67,39,32,66,41,32,40,40,66,32,95,52,56,50,41,32,95,57,56,52,
-41,41,32,40,40,66,32,40,95,52,56,50,32,40,40,79,32,35,51,50,
-41,32,75,41,41,41,32,40,40,66,32,40,95,49,55,50,56,32,40,40,
-95,50,55,50,32,95,57,56,52,41,32,95,49,50,49,54,41,41,41,32,
-40,95,52,49,49,32,40,85,32,40,90,32,40,40,67,32,79,41,32,75,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,95,49,56,52,
-41,41,41,32,40,40,65,32,58,49,52,52,50,32,40,40,40,67,39,32,
-40,67,39,32,95,49,52,52,48,41,41,32,95,49,48,48,55,41,32,95,
-52,56,48,41,41,32,40,40,65,32,58,49,52,52,51,32,40,40,40,67,
-39,32,95,49,52,52,48,41,32,95,49,48,48,54,41,32,95,52,56,48,
-41,41,32,40,40,65,32,58,49,52,52,52,32,40,85,32,40,75,32,40,
-95,52,49,50,32,95,53,57,57,41,41,41,41,32,40,40,65,32,58,49,
-52,52,53,32,40,40,66,32,40,66,32,85,41,41,32,40,40,66,32,40,
-66,32,40,40,67,39,32,66,41,32,95,49,52,52,48,41,41,41,32,40,
-40,66,32,40,66,32,95,52,56,49,41,41,32,80,41,41,41,41,32,40,
-40,65,32,58,49,52,52,54,32,40,40,66,32,40,66,32,85,41,41,32,
-40,40,66,32,40,66,32,40,66,32,95,49,52,52,48,41,41,41,32,95,
-49,48,49,49,41,41,41,32,40,40,65,32,58,49,52,52,55,32,40,40,
-40,95,51,51,32,95,53,57,41,32,40,95,54,53,32,95,49,50,51,55,
-41,41,32,40,40,66,32,40,40,95,51,52,32,95,53,57,41,32,40,95,
-49,50,52,56,32,95,52,56,48,41,41,41,32,40,40,95,52,53,32,95,
-53,57,41,32,95,49,50,54,49,41,41,41,41,32,40,40,65,32,58,49,
-52,52,56,32,95,49,50,54,41,32,40,40,65,32,58,49,52,52,57,32,
-73,41,32,40,40,65,32,58,49,52,53,48,32,73,41,32,40,40,65,32,
-58,49,52,53,49,32,43,41,32,40,40,65,32,58,49,52,53,50,32,45,
-41,32,40,40,65,32,58,49,52,53,51,32,42,41,32,40,40,65,32,58,
-49,52,53,52,32,113,117,111,116,41,32,40,40,65,32,58,49,52,53,53,
-32,114,101,109,41,32,40,40,65,32,58,49,52,53,54,32,115,117,98,116,
-114,97,99,116,41,32,40,40,65,32,58,49,52,53,55,32,110,101,103,41,
-32,40,40,65,32,58,49,52,53,56,32,102,97,100,100,41,32,40,40,65,
-32,58,49,52,53,57,32,102,115,117,98,41,32,40,40,65,32,58,49,52,
-54,48,32,102,109,117,108,41,32,40,40,65,32,58,49,52,54,49,32,102,
-100,105,118,41,32,40,40,65,32,58,49,52,54,50,32,102,110,101,103,41,
-32,40,40,65,32,58,49,52,54,51,32,102,101,113,41,32,40,40,65,32,
-58,49,52,54,52,32,102,110,101,41,32,40,40,65,32,58,49,52,54,53,
-32,102,108,116,41,32,40,40,65,32,58,49,52,54,54,32,102,108,101,41,
-32,40,40,65,32,58,49,52,54,55,32,102,103,116,41,32,40,40,65,32,
-58,49,52,54,56,32,102,103,101,41,32,40,40,65,32,58,49,52,54,57,
-32,102,115,104,111,119,41,32,40,40,65,32,58,49,52,55,48,32,102,114,
-101,97,100,41,32,40,40,65,32,58,49,52,55,49,32,105,116,111,102,41,
-32,40,40,65,32,58,49,52,55,50,32,43,41,32,40,40,65,32,58,49,
-52,55,51,32,45,41,32,40,40,65,32,58,49,52,55,52,32,42,41,32,
-40,40,65,32,58,49,52,55,53,32,117,113,117,111,116,41,32,40,40,65,
-32,58,49,52,55,54,32,117,114,101,109,41,32,40,40,65,32,58,49,52,
-55,55,32,97,110,100,41,32,40,40,65,32,58,49,52,55,56,32,111,114,
-41,32,40,40,65,32,58,49,52,55,57,32,120,111,114,41,32,40,40,65,
-32,58,49,52,56,48,32,115,104,108,41,32,40,40,65,32,58,49,52,56,
-49,32,115,104,114,41,32,40,40,65,32,58,49,52,56,50,32,97,115,104,
-114,41,32,40,40,65,32,58,49,52,56,51,32,105,110,118,41,32,40,40,
-65,32,58,49,52,56,52,32,116,111,68,98,108,41,32,40,40,65,32,58,
-49,52,56,53,32,116,111,73,110,116,41,32,40,40,65,32,58,49,52,56,
-54,32,61,61,41,32,40,40,65,32,58,49,52,56,55,32,47,61,41,32,
-40,40,65,32,58,49,52,56,56,32,60,41,32,40,40,65,32,58,49,52,
-56,57,32,60,61,41,32,40,40,65,32,58,49,52,57,48,32,62,41,32,
-40,40,65,32,58,49,52,57,49,32,62,61,41,32,40,40,65,32,58,49,
-52,57,50,32,61,61,41,32,40,40,65,32,58,49,52,57,51,32,47,61,
-41,32,40,40,65,32,58,49,52,57,52,32,117,60,41,32,40,40,65,32,
-58,49,52,57,53,32,60,61,41,32,40,40,65,32,58,49,52,57,54,32,
-62,41,32,40,40,65,32,58,49,52,57,55,32,62,61,41,32,40,40,65,
-32,58,49,52,57,56,32,73,41,32,40,40,65,32,58,49,52,57,57,32,
-73,41,32,40,40,65,32,58,49,53,48,48,32,61,61,41,32,40,40,65,
-32,58,49,53,48,49,32,47,61,41,32,40,40,65,32,58,49,53,48,50,
-32,60,41,32,40,40,65,32,58,49,53,48,51,32,60,61,41,32,40,40,
-65,32,58,49,53,48,52,32,62,41,32,40,40,65,32,58,49,53,48,53,
-32,62,61,41,32,40,40,65,32,58,49,53,48,54,32,101,114,114,111,114,
-41,32,40,40,65,32,58,49,53,48,55,32,89,41,32,40,40,65,32,58,
-49,53,48,56,32,115,101,113,41,32,40,40,65,32,58,49,53,48,57,32,
-99,111,109,112,97,114,101,41,32,40,40,65,32,58,49,53,49,48,32,101,
-113,117,97,108,41,32,40,40,65,32,58,49,53,49,49,32,73,41,32,40,
-40,65,32,58,49,53,49,50,32,73,41,32,40,40,65,32,58,49,53,49,
-51,32,73,41,32,40,40,65,32,58,49,53,49,52,32,73,79,46,62,62,
-61,41,32,40,40,65,32,58,49,53,49,53,32,73,79,46,62,62,41,32,
-40,40,65,32,58,49,53,49,54,32,73,79,46,114,101,116,117,114,110,41,
-32,40,40,65,32,58,49,53,49,55,32,73,79,46,103,101,116,65,114,103,
-115,41,32,40,40,65,32,58,49,53,49,56,32,73,79,46,100,114,111,112,
-65,114,103,115,41,32,40,40,65,32,58,49,53,49,57,32,73,79,46,112,
-101,114,102,111,114,109,73,79,41,32,40,40,65,32,58,49,53,50,48,32,
-40,40,66,32,95,49,53,49,53,41,32,95,49,53,49,56,41,41,32,40,
-40,65,32,58,49,53,50,49,32,73,79,46,99,97,116,99,104,41,32,40,
-40,65,32,58,49,53,50,50,32,40,114,110,102,32,35,48,41,41,32,40,
-40,65,32,58,49,53,50,51,32,40,114,110,102,32,35,49,41,41,32,40,
-40,65,32,58,49,53,50,52,32,110,101,119,67,65,83,116,114,105,110,103,
-76,101,110,41,32,40,40,65,32,58,49,53,50,53,32,112,101,101,107,67,
-65,83,116,114,105,110,103,41,32,40,40,65,32,58,49,53,50,54,32,112,
-101,101,107,67,65,83,116,114,105,110,103,76,101,110,41,32,40,40,65,32,
-58,49,53,50,55,32,116,111,80,116,114,41,32,40,40,65,32,58,49,53,
-50,56,32,116,111,73,110,116,41,32,40,40,65,32,58,49,53,50,57,32,
-116,111,80,116,114,41,32,40,40,65,32,58,49,53,51,48,32,116,111,73,
-110,116,41,32,40,40,65,32,58,49,53,51,49,32,40,40,40,89,32,40,
-40,40,67,39,32,67,41,32,40,40,66,32,40,40,83,39,32,83,39,41,
-32,40,40,67,32,95,49,52,57,50,41,32,35,48,41,41,41,32,40,40,
-40,67,39,32,40,67,39,32,66,41,41,32,40,40,67,32,66,41,32,40,
-40,67,32,95,49,52,56,49,41,32,35,49,41,41,41,32,40,40,67,32,
-95,49,52,53,49,41,32,35,49,41,41,41,41,32,73,41,41,32,40,95,
-49,52,56,51,32,35,48,41,41,32,35,48,41,41,32,40,40,65,32,58,
-49,53,51,50,32,94,105,115,119,105,110,100,111,119,115,41,32,40,40,65,
-32,58,49,53,51,51,32,40,40,95,49,52,56,54,32,40,95,49,53,49,
-57,32,95,49,53,51,50,41,41,32,35,49,41,41,32,40,40,65,32,58,
-49,53,51,52,32,94,103,101,116,82,97,119,41,32,40,40,65,32,58,49,
-53,51,53,32,40,75,32,40,40,40,95,51,51,32,95,49,53,54,56,41,
-32,40,40,40,95,49,53,51,56,32,40,40,80,32,95,52,56,48,41,32,
-95,52,56,48,41,41,32,75,41,32,75,41,41,32,40,85,32,40,75,32,
-40,95,51,53,32,95,49,53,54,56,41,41,41,41,41,41,32,40,40,65,
-32,58,49,53,51,54,32,40,40,40,83,39,32,66,41,32,40,40,66,32,
-40,95,51,51,32,95,49,53,54,56,41,41,32,40,40,67,32,95,49,53,
-55,57,41,32,95,49,53,54,50,41,41,41,32,40,40,66,32,40,66,32,
-40,40,67,39,32,40,95,51,51,32,95,49,53,54,56,41,41,32,40,40,
-80,32,40,40,95,51,53,32,95,49,53,54,56,41,32,95,52,56,48,41,
-41,32,40,40,40,67,39,32,40,95,51,51,32,95,49,53,54,56,41,41,
-32,95,49,53,57,51,41,32,40,40,66,32,40,40,40,83,39,32,95,49,
-53,57,56,41,32,95,52,50,56,41,32,40,95,51,53,32,95,49,53,54,
-56,41,41,41,32,95,49,55,51,48,41,41,41,41,41,41,32,40,40,66,
-32,40,40,67,39,32,66,41,32,40,40,66,32,40,95,51,52,32,95,49,
-53,54,56,41,41,32,95,49,53,56,54,41,41,41,32,40,40,66,32,40,
-40,67,39,32,40,95,51,51,32,95,49,53,54,56,41,41,32,40,40,67,
-32,40,40,40,67,39,32,95,49,53,51,56,41,32,40,40,40,67,39,32,
-80,41,32,95,52,52,50,41,32,95,52,56,48,41,41,32,75,41,41,32,
-75,41,41,41,32,40,40,66,32,85,41,32,40,40,40,67,39,32,40,67,
-39,32,66,41,41,32,40,40,66,32,40,66,32,40,95,51,52,32,95,49,
-53,54,56,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,
-95,50,55,48,41,32,95,49,53,57,48,41,41,32,95,49,55,51,49,41,
-41,41,32,40,95,51,53,32,95,49,53,54,56,41,41,41,41,41,41,41,
-41,32,40,40,65,32,58,49,53,51,55,32,40,40,40,95,51,51,32,95,
-49,53,54,56,41,32,95,49,53,51,52,41,32,40,40,40,83,39,32,40,
-95,51,52,32,95,49,53,54,56,41,41,32,40,40,40,67,39,32,95,50,
-55,48,41,32,40,40,66,32,40,95,52,54,32,95,49,53,54,56,41,41,
-32,40,40,67,32,40,95,53,50,55,32,95,50,57,54,41,41,32,35,48,
-41,41,41,32,40,95,50,53,32,34,103,101,116,82,97,119,32,102,97,105,
-108,101,100,34,41,41,41,32,40,95,51,53,32,95,49,53,54,56,41,41,
-41,41,32,40,40,65,32,58,49,53,51,56,32,40,40,66,32,89,41,32,
-40,40,66,32,40,66,32,40,66,32,40,66,32,40,40,95,51,52,32,95,
-49,53,54,56,41,32,40,95,49,53,55,54,32,95,49,53,55,51,41,41,
-41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,40,
-95,51,51,32,95,49,53,54,56,41,32,95,49,53,51,55,41,41,41,41,
-41,32,40,40,40,83,39,32,40,67,39,32,40,67,39,32,40,67,39,32,
-67,41,41,41,41,32,40,40,40,67,39,32,40,83,39,32,40,83,39,32,
-40,83,39,32,40,67,39,32,67,41,41,41,41,41,32,40,40,40,67,39,
-32,40,83,39,32,40,83,39,32,40,83,39,32,40,67,39,32,40,67,39,
-32,83,41,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,
-83,39,32,40,83,39,32,40,67,39,32,40,67,39,32,40,67,39,32,67,
-41,41,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,
-39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,
-39,32,83,41,41,41,41,41,41,41,41,32,40,40,40,83,39,32,40,67,
-39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,83,
-39,32,40,67,39,32,67,41,41,41,41,41,41,41,41,32,40,40,66,32,
-40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,
-32,40,83,39,32,40,67,39,32,40,67,39,32,83,39,41,41,41,41,41,
-41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
-40,66,32,40,66,32,40,66,32,67,41,41,41,41,41,41,41,41,32,40,
-40,40,67,39,32,40,83,39,32,40,83,39,32,40,67,39,32,40,83,39,
-32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,
-41,41,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,
-39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,
-39,32,40,67,39,32,40,67,39,32,67,41,41,41,41,41,41,41,41,41,
-41,32,40,40,40,83,39,32,40,83,39,32,40,83,39,32,40,67,39,32,
-40,67,39,32,40,83,39,32,40,67,39,32,40,67,39,32,40,67,39,32,
-40,67,39,32,40,67,39,32,83,41,41,41,41,41,41,41,41,41,41,41,
-32,40,40,40,83,39,32,40,83,39,32,40,83,39,32,40,67,39,32,40,
-67,39,32,40,83,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,
-67,39,32,40,67,39,32,40,83,39,32,67,41,41,41,41,41,41,41,41,
-41,41,41,41,32,40,40,40,83,39,32,40,83,39,32,40,83,39,32,40,
-67,39,32,66,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,
-40,83,39,32,83,39,41,32,40,40,66,32,67,39,41,32,40,40,66,32,
-67,39,41,32,40,40,66,32,67,39,41,32,40,40,66,32,67,39,41,32,
-40,40,66,32,67,39,41,32,40,40,66,32,83,39,41,32,40,40,66,32,
-67,39,41,32,40,40,66,32,67,39,41,32,40,40,67,32,61,61,41,32,
-35,52,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,40,67,
-39,32,40,67,39,32,40,67,39,32,67,41,41,41,32,40,40,66,32,40,
-66,32,40,66,32,40,40,83,39,32,67,39,41,32,40,40,66,32,67,39,
-41,32,40,40,66,32,67,39,41,32,40,40,66,32,67,39,41,32,40,40,
-66,32,67,39,41,32,40,40,66,32,67,39,41,32,40,40,66,32,67,39,
-41,32,40,40,66,32,67,39,41,32,40,40,66,32,83,39,41,32,40,40,
-67,32,61,61,41,32,35,50,41,41,41,41,41,41,41,41,41,41,41,41,
-41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,41,
-32,40,40,66,32,40,66,32,40,66,32,40,40,83,39,32,67,39,41,32,
-40,40,66,32,83,39,41,32,40,40,66,32,67,39,41,32,40,40,66,32,
-67,39,41,32,40,40,66,32,67,39,41,32,40,40,66,32,67,39,41,32,
-40,40,66,32,67,39,41,32,40,40,66,32,67,39,41,32,40,40,66,32,
-67,39,41,32,40,40,67,32,61,61,41,32,35,54,41,41,41,41,41,41,
-41,41,41,41,41,41,41,32,40,40,40,83,39,32,40,83,39,32,40,83,
-39,32,67,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,40,83,
-39,32,67,39,41,32,40,40,66,32,67,39,41,32,40,40,66,32,67,39,
-41,32,40,40,66,32,67,39,41,32,40,40,66,32,67,39,41,32,40,40,
-66,32,67,39,41,32,40,40,66,32,83,39,41,32,40,40,66,32,67,39,
-41,32,40,40,66,32,67,39,41,32,40,40,67,32,61,61,41,32,35,49,
-41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,40,83,39,32,
-40,83,39,32,40,83,39,32,67,41,41,41,32,40,40,66,32,40,66,32,
-40,66,32,40,40,83,39,32,67,39,41,32,40,40,66,32,67,39,41,32,
-40,40,66,32,67,39,41,32,40,40,66,32,67,39,41,32,40,40,66,32,
-67,39,41,32,40,40,66,32,67,39,41,32,40,40,66,32,67,39,41,32,
-40,40,66,32,67,39,41,32,40,40,66,32,67,39,41,32,40,40,67,32,
-61,61,41,32,35,53,41,41,41,41,41,41,41,41,41,41,41,41,41,32,
-40,40,40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,41,32,40,
-40,66,32,40,66,32,40,66,32,40,40,83,39,32,67,39,41,32,40,40,
-66,32,67,39,41,32,40,40,66,32,67,39,41,32,40,40,66,32,67,39,
-41,32,40,40,66,32,67,39,41,32,40,40,66,32,67,39,41,32,40,40,
-66,32,67,39,41,32,40,40,66,32,83,39,41,32,40,40,66,32,67,39,
-41,32,40,40,67,32,61,61,41,32,35,56,41,41,41,41,41,41,41,41,
-41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,40,83,39,
-32,66,41,32,40,66,39,32,40,66,39,32,40,66,39,32,40,66,39,32,
-40,66,39,32,40,66,39,32,40,40,66,32,67,39,41,32,40,40,67,32,
-61,61,41,32,35,49,50,55,41,41,41,41,41,41,41,41,41,41,41,41,
-32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,41,32,
-40,40,66,32,40,66,32,40,66,32,40,40,83,39,32,67,39,41,32,40,
-40,66,32,67,39,41,32,40,40,66,32,67,39,41,32,40,40,66,32,67,
-39,41,32,40,40,66,32,67,39,41,32,40,40,66,32,83,39,41,32,40,
-40,66,32,67,39,41,32,40,40,66,32,67,39,41,32,40,40,67,32,61,
-61,41,32,35,49,51,41,41,41,41,41,41,41,41,41,41,41,41,32,40,
-40,66,32,40,66,32,40,66,32,40,40,83,39,32,66,41,32,40,66,39,
-32,40,66,39,32,40,66,39,32,40,66,39,32,40,40,66,32,67,39,41,
-32,40,40,66,32,67,39,41,32,40,40,67,32,61,61,41,32,35,49,48,
-41,41,41,41,41,41,41,41,41,41,41,32,40,40,40,67,39,32,40,67,
-39,32,40,67,39,32,67,41,41,41,32,40,40,66,32,40,66,32,40,66,
-32,40,40,83,39,32,67,39,41,32,40,40,66,32,67,39,41,32,40,40,
-66,32,67,39,41,32,40,40,66,32,67,39,41,32,40,40,66,32,83,39,
-41,32,40,40,66,32,67,39,41,32,40,40,66,32,67,39,41,32,40,40,
-67,32,61,61,41,32,35,49,52,41,41,41,41,41,41,41,41,41,41,41,
-32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,41,32,
-40,40,66,32,40,66,32,40,66,32,40,40,83,39,32,67,39,41,32,40,
-40,66,32,67,39,41,32,40,40,66,32,67,39,41,32,40,40,66,32,83,
-39,41,32,40,40,66,32,67,39,41,32,40,40,66,32,67,39,41,32,40,
-40,66,32,67,39,41,32,40,40,67,32,61,61,41,32,35,49,53,41,41,
-41,41,41,41,41,41,41,41,41,32,40,40,40,83,39,32,40,67,39,32,
-40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,66,41,41,41,
-41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,40,83,39,32,66,
-41,32,40,66,39,32,40,40,66,32,67,39,41,32,40,40,66,32,67,39,
-41,32,40,40,66,32,67,39,41,32,40,40,66,32,67,39,41,32,40,40,
-67,32,61,61,41,32,35,50,49,41,41,41,41,41,41,41,41,41,41,32,
-40,40,40,83,39,32,40,83,39,32,40,83,39,32,67,41,41,41,32,40,
-40,66,32,40,66,32,40,66,32,40,40,83,39,32,67,39,41,32,40,40,
-66,32,67,39,41,32,40,40,66,32,67,39,41,32,40,40,66,32,67,39,
-41,32,40,40,66,32,67,39,41,32,40,40,66,32,67,39,41,32,40,40,
-67,32,61,61,41,32,35,49,49,41,41,41,41,41,41,41,41,41,41,32,
-40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,83,
-39,32,66,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,
-66,32,66,39,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,
-66,32,66,39,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,
-66,32,40,66,32,40,67,39,32,66,41,41,41,41,41,41,32,40,40,66,
-32,40,66,32,40,66,32,40,40,83,39,32,66,41,32,40,66,39,32,40,
-40,67,32,61,61,41,32,35,50,55,41,41,41,41,41,41,32,40,40,66,
-32,40,66,32,40,66,32,40,40,83,39,32,40,67,39,32,66,41,41,32,
-40,40,40,83,39,32,95,49,50,50,41,32,40,40,67,32,40,95,53,51,
-48,32,95,50,57,54,41,41,32,35,51,50,41,41,32,40,40,67,32,40,
-95,53,50,55,32,95,50,57,54,41,41,32,35,49,50,55,41,41,41,41,
-41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,66,41,41,
-41,32,40,40,66,32,40,66,32,40,66,32,40,67,39,32,40,40,83,39,
-32,40,95,51,52,32,95,49,53,54,56,41,41,32,95,49,53,56,49,41,
-41,41,41,41,32,40,40,66,32,40,66,32,40,40,83,39,32,66,41,32,
-40,66,39,32,40,40,66,32,40,95,51,52,32,95,49,53,54,56,41,41,
-32,95,49,53,56,54,41,41,41,41,41,32,40,40,66,32,40,66,32,40,
-40,83,39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,40,
-95,51,52,32,95,49,53,54,56,41,41,41,32,40,40,66,32,85,41,32,
-95,52,50,56,41,41,41,41,41,32,40,40,40,67,39,32,66,41,32,67,
-39,41,32,40,67,32,95,52,56,49,41,41,41,41,41,41,32,95,49,51,
-55,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,
-66,32,40,66,32,40,40,95,51,51,32,95,49,53,54,56,41,32,95,49,
-53,51,55,41,41,41,41,41,41,32,40,40,40,83,39,32,40,67,39,32,
-40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,41,41,41,32,40,
-40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,67,32,40,40,
-67,32,40,95,50,49,50,32,95,50,57,53,41,41,32,40,95,49,51,56,
-32,35,57,49,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,
-40,66,32,40,66,32,40,66,32,40,40,95,51,51,32,95,49,53,54,56,
-41,32,95,49,53,51,55,41,41,41,41,41,41,32,40,40,40,67,39,32,
-40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,66,41,41,41,
-41,41,32,40,40,66,32,40,66,32,40,67,39,32,40,67,39,32,67,41,
-41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,83,32,
-40,40,67,32,61,61,41,32,35,54,53,41,41,41,41,41,41,32,40,40,
-66,32,40,66,32,40,67,39,32,67,41,41,41,32,40,40,66,32,40,66,
-32,40,66,32,40,83,32,40,40,67,32,61,61,41,32,35,54,54,41,41,
-41,41,41,32,40,40,66,32,40,67,39,32,67,41,41,32,40,40,66,32,
-40,66,32,40,83,32,40,40,67,32,61,61,41,32,35,54,55,41,41,41,
-41,32,40,40,66,32,67,41,32,40,67,32,40,40,67,32,61,61,41,32,
-35,54,56,41,41,41,41,41,41,41,41,41,41,32,95,49,51,55,41,41,
-41,41,32,73,41,41,41,41,41,32,40,40,66,32,40,66,32,40,40,83,
-39,32,40,95,51,52,32,95,49,53,54,56,41,41,32,95,49,53,56,54,
-41,41,41,32,40,40,66,32,40,66,32,40,40,67,39,32,40,95,51,52,
-32,95,49,53,54,56,41,41,32,40,40,66,32,40,95,50,55,48,32,95,
-49,53,56,54,41,41,32,40,40,66,32,40,95,50,55,48,32,95,52,49,
-48,41,41,32,40,40,40,67,39,32,95,52,54,53,41,32,95,52,50,56,
-41,32,34,92,56,38,32,92,56,38,34,41,41,41,41,41,41,32,40,82,
-32,75,41,41,41,41,41,41,32,40,40,66,32,40,67,32,40,95,51,52,
-32,95,49,53,54,56,41,41,41,32,40,40,80,32,75,41,32,75,41,41,
-41,41,41,32,73,41,41,41,32,73,41,41,41,41,32,73,41,41,41,41,
-32,73,41,41,41,32,40,40,66,32,40,66,32,40,40,83,39,32,40,95,
-51,52,32,95,49,53,54,56,41,41,32,95,49,53,56,54,41,41,41,32,
-40,40,67,32,40,40,40,67,39,32,67,39,41,32,67,39,41,32,40,40,
-67,39,32,95,52,56,50,41,32,95,52,52,50,41,41,41,32,75,41,41,
-41,41,41,32,40,40,66,32,40,40,83,39,32,66,41,32,40,40,66,32,
-40,67,39,32,40,95,51,52,32,95,49,53,54,56,41,41,41,32,40,40,
-66,32,85,41,32,95,52,50,56,41,41,41,41,32,40,40,40,67,39,32,
-66,41,32,40,66,39,32,40,85,32,75,41,41,41,32,40,40,66,32,95,
-52,56,50,41,32,95,52,52,50,41,41,41,41,41,41,32,73,41,41,41,
-32,73,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,
-66,41,41,41,32,40,40,66,32,40,40,83,39,32,40,83,39,32,67,39,
-41,41,32,40,40,66,32,40,66,32,67,39,41,41,32,40,40,40,67,39,
-32,66,41,32,40,40,66,32,95,49,50,50,41,32,95,52,48,57,41,41,
-32,95,52,48,57,41,41,41,41,32,40,40,66,32,40,66,32,40,67,32,
-40,67,39,32,66,41,41,41,41,32,40,40,66,32,40,66,32,90,41,41,
-32,40,40,66,32,40,66,32,40,66,32,40,40,83,39,32,40,95,51,52,
-32,95,49,53,54,56,41,41,32,95,49,53,56,54,41,41,41,41,32,40,
-40,66,32,40,66,32,40,66,32,40,66,32,40,40,95,51,52,32,95,49,
-53,54,56,41,32,40,95,49,53,56,49,32,35,51,50,41,41,41,41,41,
-41,32,40,66,32,40,40,67,39,32,40,83,39,32,40,95,51,52,32,95,
-49,53,54,56,41,41,41,32,40,40,67,32,66,41,32,40,40,40,67,39,
-32,40,95,53,48,57,32,95,50,57,49,41,41,32,95,52,50,56,41,32,
-35,49,41,41,41,41,41,41,41,41,41,41,32,40,85,32,95,52,57,56,
-41,41,41,41,32,40,40,66,32,40,40,67,39,32,66,41,32,40,67,39,
-32,66,41,41,41,32,40,40,66,32,40,66,32,40,40,67,39,32,66,41,
-32,40,66,39,32,40,40,66,32,40,95,51,52,32,95,49,53,54,56,41,
-41,32,40,85,32,35,49,41,41,41,41,41,41,32,40,40,40,67,39,32,
-66,41,32,40,66,39,32,67,41,41,32,40,67,32,95,52,56,49,41,41,
-41,41,41,41,32,40,40,66,32,40,40,67,39,32,66,41,32,40,67,39,
-32,66,41,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,
-32,40,66,32,40,40,83,39,32,66,41,32,40,40,66,32,40,95,51,52,
-32,95,49,53,54,56,41,41,32,40,85,32,35,49,41,41,41,41,41,32,
-40,40,66,32,40,40,83,39,32,66,41,32,40,66,39,32,40,40,66,32,
-40,95,51,52,32,95,49,53,54,56,41,41,32,95,49,53,56,54,41,41,
-41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,40,95,51,
-52,32,95,49,53,54,56,41,32,40,95,49,53,56,49,32,35,51,50,41,
-41,41,41,41,41,32,40,40,66,32,40,40,83,39,32,40,67,39,32,66,
-41,41,32,40,40,66,32,40,66,32,40,95,51,52,32,95,49,53,54,56,
-41,41,41,32,40,40,66,32,85,41,32,40,40,40,67,39,32,40,95,53,
-48,57,32,95,50,57,49,41,41,32,95,52,50,56,41,32,35,49,41,41,
-41,41,41,32,67,41,41,41,41,41,41,41,41,32,40,40,66,32,95,49,
-53,56,54,41,32,40,40,67,32,95,52,54,53,41,32,35,56,41,41,41,
-41,32,40,40,66,32,40,66,32,85,41,41,32,40,40,66,32,40,66,32,
-95,52,57,57,41,41,32,40,40,66,32,95,52,56,50,41,32,95,52,52,
-50,41,41,41,41,41,41,41,32,40,40,40,67,39,32,66,41,32,66,41,
-32,40,40,40,67,39,32,66,41,32,40,66,39,32,80,41,41,32,40,40,
-67,32,40,40,40,67,39,32,67,39,41,32,40,40,66,32,83,39,41,32,
-67,39,41,41,32,40,40,66,32,40,66,32,80,41,41,32,40,67,32,95,
-52,56,49,41,41,41,41,32,73,41,41,41,41,41,32,40,40,40,67,39,
-32,66,41,32,66,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,
-40,67,39,32,66,41,41,32,85,41,41,32,40,40,67,32,40,40,40,67,
-39,32,67,39,41,32,40,40,66,32,83,39,41,32,67,39,41,41,32,40,
-40,66,32,40,66,32,40,67,32,80,41,41,41,32,40,67,32,95,52,56,
-49,41,41,41,41,32,73,41,41,41,41,41,32,40,40,40,67,39,32,66,
-41,32,40,66,39,32,40,95,51,52,32,95,49,53,54,56,41,41,41,32,
-40,40,66,32,40,40,83,39,32,40,95,51,52,32,95,49,53,54,56,41,
-41,32,95,49,53,56,54,41,41,32,40,40,67,32,40,40,40,67,39,32,
-67,39,41,32,95,49,53,51,56,41,32,95,52,52,50,41,41,32,75,41,
-41,41,41,41,32,40,40,66,32,40,40,83,39,32,40,95,51,52,32,95,
-49,53,54,56,41,41,32,95,49,53,56,54,41,41,32,40,40,66,32,40,
-66,32,40,95,50,55,48,32,95,49,53,56,54,41,41,41,32,40,40,66,
-32,40,66,32,40,95,50,55,48,32,95,52,49,48,41,41,41,32,40,40,
-40,67,39,32,40,67,39,32,95,52,54,53,41,41,32,40,40,40,67,39,
-32,66,41,32,40,40,66,32,40,95,53,48,57,32,95,50,57,49,41,41,
-32,95,52,50,56,41,41,32,95,52,50,56,41,41,32,34,92,56,38,32,
-92,56,38,34,41,41,41,41,41,41,32,40,40,66,32,40,66,32,82,41,
-41,32,40,40,66,32,40,66,32,40,40,83,39,32,66,41,32,40,40,66,
-32,40,95,51,52,32,95,49,53,54,56,41,41,32,95,49,53,56,49,41,
-41,41,41,32,40,40,40,67,39,32,66,41,32,66,41,32,40,67,32,95,
-52,56,49,41,41,41,41,41,41,32,73,41,41,32,40,40,66,32,40,66,
-32,40,40,95,51,52,32,95,49,53,54,56,41,32,40,95,49,53,56,49,
-32,35,49,48,41,41,41,41,32,40,40,66,32,40,66,32,40,40,95,51,
-52,32,95,49,53,54,56,41,32,40,95,49,53,55,54,32,95,49,53,55,
-51,41,41,41,41,32,40,40,66,32,40,40,67,39,32,40,66,32,40,95,
-51,53,32,95,49,53,54,56,41,41,41,32,40,40,40,83,39,32,40,67,
-39,32,80,41,41,32,40,40,66,32,40,83,32,95,52,56,50,41,41,32,
-40,40,40,67,39,32,66,41,32,40,85,32,95,52,56,48,41,41,32,40,
-40,66,32,40,83,32,40,85,32,95,52,56,48,41,41,41,32,40,40,66,
-32,90,41,32,40,40,66,32,90,41,32,40,40,40,67,39,32,67,41,32,
-40,40,67,32,40,40,40,83,39,32,83,39,41,32,40,40,66,32,95,49,
-50,50,41,32,40,40,66,32,95,49,50,51,41,32,95,52,48,57,41,41,
-41,32,40,40,66,32,40,67,32,40,95,50,49,49,32,95,49,51,52,41,
-41,41,32,95,52,55,52,41,41,41,32,40,40,67,32,79,41,32,75,41,
-41,41,32,95,52,56,48,41,41,41,41,41,41,41,32,73,41,41,41,32,
-40,40,40,83,39,32,95,52,56,50,41,32,40,40,66,32,95,52,52,50,
-41,32,95,53,57,56,41,41,32,95,53,57,57,41,41,41,41,41,41,41,
-41,41,32,40,40,65,32,58,49,53,51,57,32,94,117,110,108,105,110,107,
-41,32,40,40,65,32,58,49,53,52,48,32,40,40,40,67,39,32,40,95,
-51,51,32,95,49,53,54,56,41,41,32,40,40,67,32,95,54,51,52,41,
-32,95,49,53,51,57,41,41,32,40,40,40,67,39,32,95,50,55,48,41,
-32,40,40,66,32,40,95,52,54,32,95,49,53,54,56,41,41,32,40,40,
-67,32,40,95,50,49,50,32,95,50,57,53,41,41,32,35,48,41,41,41,
-32,40,95,50,53,32,34,114,101,109,111,118,101,70,105,108,101,32,102,97,
-105,108,101,100,34,41,41,41,41,32,40,40,65,32,58,49,53,52,49,32,
-95,49,53,49,55,41,32,40,40,65,32,58,49,53,52,50,32,95,49,53,
-50,48,41,32,40,40,65,32,58,49,53,52,51,32,94,103,101,116,101,110,
-118,41,32,40,40,65,32,58,49,53,52,52,32,40,40,40,67,39,32,40,
-95,51,51,32,95,49,53,54,56,41,41,32,40,40,67,32,95,54,51,52,
-41,32,95,49,53,52,51,41,41,32,40,40,67,32,40,40,83,32,40,40,
-67,32,40,95,50,49,49,32,95,54,52,54,41,41,32,95,54,52,56,41,
-41,32,40,40,66,32,40,40,95,50,56,53,32,95,49,53,54,54,41,32,
-95,52,57,57,41,41,32,95,54,51,53,41,41,41,32,40,40,95,51,53,
-32,95,49,53,54,56,41,32,95,52,57,56,41,41,41,41,32,40,40,65,
-32,58,49,53,52,53,32,73,41,32,40,40,65,32,58,49,53,52,54,32,
-73,79,46,115,101,114,105,97,108,105,122,101,41,32,40,40,65,32,58,49,
-53,52,55,32,73,79,46,112,114,105,110,116,41,32,40,40,65,32,58,49,
-53,52,56,32,73,79,46,100,101,115,101,114,105,97,108,105,122,101,41,32,
-40,40,65,32,58,49,53,52,57,32,73,79,46,115,116,100,105,110,41,32,
-40,40,65,32,58,49,53,53,48,32,73,79,46,115,116,100,111,117,116,41,
-32,40,40,65,32,58,49,53,53,49,32,73,79,46,115,116,100,101,114,114,
-41,32,40,40,65,32,58,49,53,53,50,32,94,102,111,112,101,110,41,32,
-40,40,65,32,58,49,53,53,51,32,94,102,99,108,111,115,101,41,32,40,
-40,65,32,58,49,53,53,52,32,94,102,102,108,117,115,104,41,32,40,40,
-65,32,58,49,53,53,53,32,94,102,103,101,116,99,41,32,40,40,65,32,
-58,49,53,53,54,32,94,102,112,117,116,99,41,32,40,40,65,32,58,49,
-53,53,55,32,94,102,119,114,105,116,101,41,32,40,40,65,32,58,49,53,
-53,56,32,94,103,101,116,84,105,109,101,77,105,108,108,105,41,32,40,40,
-65,32,58,49,53,53,57,32,40,40,95,50,49,48,32,40,95,50,49,49,
-32,95,54,52,54,41,41,32,40,95,50,49,52,32,95,49,53,53,57,41,
-41,41,32,40,40,65,32,58,49,53,54,48,32,40,40,40,95,49,55,49,
-50,32,40,95,49,55,49,54,32,95,49,53,54,48,41,41,32,40,40,66,
-32,40,95,52,56,50,32,34,72,97,110,100,108,101,45,34,41,41,32,40,
-95,49,55,49,52,32,95,54,52,55,41,41,41,32,40,95,49,55,49,56,
-32,95,49,53,54,48,41,41,41,32,40,40,65,32,58,49,53,54,49,32,
-40,95,49,53,52,53,32,95,54,52,56,41,41,32,40,40,65,32,58,49,
-53,54,50,32,40,90,32,40,90,32,75,41,41,41,32,40,40,65,32,58,
-49,53,54,51,32,40,75,32,40,90,32,75,41,41,41,32,40,40,65,32,
-58,49,53,54,52,32,40,75,32,40,75,32,75,41,41,41,32,40,40,65,
-32,58,49,53,54,53,32,40,75,32,40,75,32,65,41,41,41,32,40,40,
-65,32,58,49,53,54,54,32,40,40,95,50,56,48,32,40,40,66,32,40,
-67,32,95,49,53,49,52,41,41,32,40,66,32,95,49,53,49,54,41,41,
-41,32,40,95,50,56,52,32,95,49,53,54,54,41,41,41,32,40,40,65,
-32,58,49,53,54,55,32,40,40,40,40,40,95,49,50,32,95,49,53,54,
-54,41,32,95,49,53,49,54,41,32,40,95,51,57,32,95,49,53,54,56,
-41,41,32,40,95,50,48,32,95,49,53,54,55,41,41,32,40,95,50,49,
-32,95,49,53,54,55,41,41,41,32,40,40,65,32,58,49,53,54,56,32,
-40,40,40,40,95,51,49,32,95,49,53,54,55,41,32,95,49,53,49,52,
-41,32,95,49,53,49,53,41,32,95,49,53,49,54,41,41,32,40,40,65,
-32,58,49,53,54,57,32,40,40,95,52,48,32,95,49,53,54,56,41,32,
-95,50,53,41,41,32,40,40,65,32,58,49,53,55,48,32,95,49,53,52,
-54,41,32,40,40,65,32,58,49,53,55,49,32,95,49,53,52,56,41,32,
-40,40,65,32,58,49,53,55,50,32,95,49,53,52,57,41,32,40,40,65,
-32,58,49,53,55,51,32,95,49,53,53,48,41,32,40,40,65,32,58,49,
-53,55,52,32,95,49,53,53,49,41,32,40,40,65,32,58,49,53,55,53,
-32,40,40,40,67,39,32,40,95,51,52,32,95,49,53,54,56,41,41,32,
-95,49,53,53,51,41,32,40,40,95,51,53,32,95,49,53,54,56,41,32,
-95,49,52,53,48,41,41,41,32,40,40,65,32,58,49,53,55,54,32,40,
-40,40,67,39,32,40,95,51,52,32,95,49,53,54,56,41,41,32,95,49,
-53,53,52,41,32,40,40,95,51,53,32,95,49,53,54,56,41,32,95,49,
-52,53,48,41,41,41,32,40,40,65,32,58,49,53,55,55,32,40,40,40,
-67,39,32,40,95,51,51,32,95,49,53,54,56,41,41,32,95,49,53,53,
-53,41,32,40,40,67,32,40,40,83,32,40,40,67,32,40,95,50,49,49,
-32,95,50,57,53,41,41,32,35,45,49,41,41,32,40,40,66,32,40,95,
-51,53,32,95,49,53,54,56,41,41,32,95,49,51,55,41,41,41,32,40,
-95,50,53,32,34,104,71,101,116,67,104,97,114,58,32,69,79,70,34,41,
-41,41,41,32,40,40,65,32,58,49,53,55,56,32,40,40,40,67,39,32,
-40,67,39,32,40,95,51,52,32,95,49,53,54,56,41,41,41,32,40,40,
-67,39,32,95,49,53,53,54,41,32,95,49,51,56,41,41,32,40,40,95,
-51,53,32,95,49,53,54,56,41,32,95,49,52,53,48,41,41,41,32,40,
-40,65,32,58,49,53,55,57,32,40,40,40,67,39,32,40,67,39,32,40,
-95,51,51,32,95,49,53,54,56,41,41,41,32,40,40,40,67,39,32,66,
-41,32,40,40,66,32,95,50,55,48,41,32,95,54,51,52,41,41,32,40,
-40,40,67,39,32,66,41,32,40,40,66,32,95,50,55,48,41,32,40,40,
-66,32,95,54,51,52,41,32,40,40,67,32,40,40,67,32,40,40,80,32,
-40,40,79,32,35,49,49,52,41,32,75,41,41,32,40,40,79,32,35,49,
-49,57,41,32,75,41,41,41,32,40,40,79,32,35,57,55,41,32,75,41,
-41,41,32,34,119,43,34,41,41,41,41,32,95,49,53,53,50,41,41,41,
-32,40,40,67,32,40,40,83,32,40,40,67,32,40,95,50,49,49,32,95,
-49,53,53,57,41,41,32,95,49,53,54,49,41,41,32,40,40,66,32,40,
-95,51,53,32,95,49,53,54,56,41,41,32,95,52,57,57,41,41,41,32,
-40,40,95,51,53,32,95,49,53,54,56,41,32,95,52,57,56,41,41,41,
-41,32,40,40,65,32,58,49,53,56,48,32,40,40,40,83,39,32,40,67,
-39,32,40,95,51,51,32,95,49,53,54,56,41,41,41,32,95,49,53,55,
-57,41,32,40,40,40,67,39,32,80,41,32,40,40,66,32,95,50,53,41,
-32,40,95,52,56,50,32,34,111,112,101,110,70,105,108,101,58,32,99,97,
-110,110,111,116,32,111,112,101,110,32,34,41,41,41,32,40,95,51,53,32,
-95,49,53,54,56,41,41,41,41,32,40,40,65,32,58,49,53,56,49,32,
-40,95,49,53,55,56,32,95,49,53,55,51,41,41,32,40,40,65,32,58,
-49,53,56,50,32,40,95,49,53,55,55,32,95,49,53,55,50,41,41,32,
-40,40,65,32,58,49,53,56,51,32,40,40,40,83,39,32,95,49,53,57,
-56,41,32,95,49,53,50,51,41,32,40,95,49,53,52,55,32,95,49,53,
-55,51,41,41,41,32,40,40,65,32,58,49,53,56,52,32,40,95,49,53,
-52,55,32,95,49,53,55,51,41,41,32,40,40,65,32,58,49,53,56,53,
-32,40,40,66,32,40,66,32,95,49,53,56,56,41,41,32,95,49,55,49,
-52,41,41,32,40,40,65,32,58,49,53,56,54,32,40,95,49,53,56,55,
-32,95,49,53,55,51,41,41,32,40,40,65,32,58,49,53,56,55,32,40,
-40,66,32,40,95,52,53,32,95,49,53,54,56,41,41,32,95,49,53,55,
-56,41,41,32,40,40,65,32,58,49,53,56,56,32,40,95,49,53,56,57,
-32,95,49,53,55,51,41,41,32,40,40,65,32,58,49,53,56,57,32,40,
-40,40,83,39,32,40,67,39,32,40,95,51,52,32,95,49,53,54,56,41,
-41,41,32,95,49,53,56,55,41,32,40,40,67,32,95,49,53,55,56,41,
-32,35,49,48,41,41,41,32,40,40,65,32,58,49,53,57,48,32,40,40,
-40,67,39,32,66,41,32,40,40,66,32,40,95,51,51,32,95,49,53,54,
-56,41,41,32,40,40,67,32,95,49,53,56,48,41,32,95,49,53,54,51,
-41,41,41,32,40,40,40,67,39,32,40,83,39,32,40,95,51,52,32,95,
-49,53,54,56,41,41,41,32,40,67,32,95,49,53,56,55,41,41,32,95,
-49,53,55,53,41,41,41,32,40,40,65,32,58,49,53,57,49,32,40,40,
-40,67,39,32,66,41,32,40,40,66,32,40,95,51,51,32,95,49,53,54,
-56,41,41,32,40,40,67,32,95,49,53,56,48,41,32,95,49,53,54,51,
-41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,95,51,
-51,32,95,49,53,54,56,41,41,32,95,54,51,51,41,41,32,40,40,66,
-32,85,41,32,40,40,40,83,39,32,40,83,39,32,40,83,39,32,40,95,
-51,51,32,95,49,53,54,56,41,41,41,41,32,40,40,67,39,32,67,41,
-32,40,40,67,32,95,49,53,53,55,41,32,35,49,41,41,41,32,40,40,
-66,32,40,40,67,39,32,66,41,32,40,66,39,32,40,40,66,32,40,95,
-51,52,32,95,49,53,54,56,41,41,32,95,54,51,56,41,41,41,41,32,
-40,40,40,67,39,32,66,41,32,40,66,39,32,40,40,66,32,40,95,51,
-52,32,95,49,53,54,56,41,41,32,95,49,53,55,53,41,41,41,32,40,
-40,40,67,39,32,40,67,39,32,95,50,55,48,41,41,32,40,40,66,32,
-40,66,32,40,95,52,54,32,95,49,53,54,56,41,41,41,32,40,95,50,
-49,50,32,95,50,57,53,41,41,41,32,40,95,50,53,32,34,119,114,105,
-116,101,70,105,108,101,70,97,115,116,32,102,97,105,108,101,100,34,41,41,
-41,41,41,41,41,41,41,32,40,40,65,32,58,49,53,57,50,32,40,40,
-40,67,39,32,40,95,51,51,32,95,49,53,54,56,41,41,32,40,40,67,
-32,95,49,53,56,48,41,32,95,49,53,54,50,41,41,32,40,40,40,67,
-39,32,40,95,51,51,32,95,49,53,54,56,41,41,32,95,49,53,57,51,
-41,32,40,95,51,53,32,95,49,53,54,56,41,41,41,41,32,40,40,65,
-32,58,49,53,57,51,32,40,40,40,83,39,32,40,95,51,51,32,95,49,
-53,54,56,41,41,32,95,49,53,53,53,41,32,40,40,40,83,39,32,67,
-41,32,40,40,66,32,40,83,32,40,40,67,32,40,95,50,49,49,32,95,
-50,57,53,41,41,32,35,45,49,41,41,41,32,40,40,40,67,39,32,66,
-41,32,40,40,66,32,40,95,51,51,32,95,49,53,54,56,41,41,32,40,
-40,66,32,95,49,53,57,55,41,32,95,49,53,57,51,41,41,41,32,40,
-40,66,32,40,66,32,40,95,51,53,32,95,49,53,54,56,41,41,41,32,
-40,40,66,32,95,52,56,49,41,32,95,49,51,55,41,41,41,41,41,32,
-40,40,40,67,39,32,40,95,51,52,32,95,49,53,54,56,41,41,32,95,
-49,53,55,53,41,32,40,40,95,51,53,32,95,49,53,54,56,41,32,75,
-41,41,41,41,41,32,40,40,65,32,58,49,53,57,52,32,40,40,40,67,
-39,32,66,41,32,40,40,66,32,40,95,51,51,32,95,49,53,54,56,41,
-41,32,40,40,67,32,95,49,53,56,48,41,32,95,49,53,54,51,41,41,
-41,32,40,40,40,67,39,32,40,83,39,32,40,95,51,52,32,95,49,53,
-54,56,41,41,41,32,40,67,32,95,49,53,55,48,41,41,32,95,49,53,
-55,53,41,41,41,32,40,40,65,32,58,49,53,57,53,32,40,40,40,67,
-39,32,40,95,51,51,32,95,49,53,54,56,41,41,32,40,40,67,32,95,
-49,53,56,48,41,32,95,49,53,54,50,41,41,32,40,40,40,83,39,32,
-40,95,51,51,32,95,49,53,54,56,41,41,32,95,49,53,55,49,41,32,
-40,40,40,67,39,32,66,41,32,40,40,66,32,40,95,51,52,32,95,49,
-53,54,56,41,41,32,95,49,53,55,53,41,41,32,40,95,51,53,32,95,
-49,53,54,56,41,41,41,41,41,32,40,40,65,32,58,49,53,57,54,32,
-95,49,53,53,56,41,32,40,40,65,32,58,49,53,57,55,32,40,40,66,
-32,40,95,51,53,32,95,49,53,54,56,41,41,32,95,49,53,49,57,41,
-41,32,40,40,65,32,58,49,53,57,56,32,95,49,53,48,56,41,32,40,
-40,65,32,58,49,53,57,57,32,40,75,32,40,75,32,40,40,95,51,53,
-32,95,49,53,54,56,41,32,95,49,52,53,48,41,41,41,41,32,40,40,
-65,32,58,49,54,48,48,32,94,116,109,112,110,97,109,101,41,32,40,40,
-65,32,58,49,54,48,49,32,40,40,66,32,40,40,40,67,39,32,40,95,
-51,51,32,95,49,53,54,56,41,41,32,40,40,40,83,39,32,95,50,55,
-48,41,32,40,40,66,32,95,54,51,52,41,32,40,85,32,75,41,41,41,
-32,40,40,40,67,39,32,95,50,55,50,41,32,40,40,66,32,95,54,51,
-52,41,32,40,85,32,65,41,41,41,32,95,49,54,48,48,41,41,41,32,
-40,40,40,83,39,32,40,95,51,51,32,95,49,53,54,56,41,41,32,95,
-54,51,53,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,95,
-51,52,32,95,49,53,54,56,41,41,32,95,54,51,56,41,41,32,40,40,
-40,83,39,32,40,95,51,51,32,95,49,53,54,56,41,41,32,40,40,67,
-32,95,49,53,56,48,41,32,95,49,53,54,51,41,41,32,40,40,66,32,
-40,66,32,40,95,51,53,32,95,49,53,54,56,41,41,41,32,80,41,41,
-41,41,41,41,32,40,40,40,83,39,32,40,95,52,52,53,32,40,40,67,
-32,40,95,50,49,50,32,95,49,51,50,41,41,32,35,52,54,41,41,41,
-32,95,52,52,50,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,
-80,41,32,40,40,67,32,80,41,32,75,41,41,41,32,40,90,32,40,40,
-66,32,40,40,67,39,32,80,41,32,95,52,52,50,41,41,32,40,40,66,
-32,40,95,52,56,49,32,35,52,54,41,41,32,95,52,52,50,41,41,41,
-41,41,41,41,32,40,40,65,32,58,49,54,48,50,32,85,41,32,40,40,
-65,32,58,49,54,48,51,32,40,85,32,73,41,41,32,40,40,65,32,58,
-49,54,48,52,32,40,75,32,40,110,111,68,101,102,97,117,108,116,32,34,
-80,114,105,110,116,79,114,82,117,110,46,112,114,105,110,116,79,114,82,117,
-110,34,41,41,41,32,40,40,65,32,58,49,54,48,53,32,40,95,49,54,
-48,50,32,73,41,41,32,40,40,65,32,58,49,54,48,54,32,40,40,66,
-32,95,49,54,48,50,41,32,40,40,66,32,40,66,32,95,49,53,56,56,
-41,41,32,95,49,55,49,52,41,41,41,32,40,40,65,32,58,49,54,48,
-55,32,94,109,100,53,70,105,108,101,41,32,40,40,65,32,58,49,54,48,
-56,32,73,41,32,40,40,65,32,58,49,54,48,57,32,40,40,95,50,49,
-48,32,40,95,50,49,49,32,40,95,52,48,48,32,95,54,50,53,41,41,
-41,32,40,95,50,49,52,32,95,49,54,48,57,41,41,41,32,40,40,65,
-32,58,49,54,49,48,32,40,40,40,95,49,55,49,50,32,40,95,49,55,
-49,54,32,95,49,54,49,48,41,41,32,40,40,66,32,40,95,52,56,50,
-32,34,77,68,53,34,41,41,32,40,95,49,55,49,52,32,40,95,52,48,
-53,32,95,54,50,57,41,41,41,41,32,40,95,49,55,49,56,32,95,49,
-54,49,48,41,41,41,32,40,40,65,32,58,49,54,49,49,32,35,49,54,
-41,32,40,40,65,32,58,49,54,49,50,32,40,40,66,32,40,40,95,51,
-51,32,95,49,53,54,56,41,32,40,95,54,52,48,32,95,49,54,49,49,
-41,41,41,32,40,40,40,67,39,32,40,83,39,32,40,95,51,52,32,95,
-49,53,54,56,41,41,41,32,95,49,54,48,55,41,32,40,40,40,83,39,
-32,40,95,51,51,32,95,49,53,54,56,41,41,32,40,40,66,32,95,54,
-51,54,41,32,40,40,67,32,80,41,32,95,49,54,49,49,41,41,41,32,
-40,40,40,67,39,32,66,41,32,40,40,66,32,40,95,51,52,32,95,49,
-53,54,56,41,41,32,95,54,51,56,41,41,32,40,40,66,32,40,95,51,
-53,32,95,49,53,54,56,41,41,32,40,40,66,32,95,49,54,48,56,41,
-32,95,49,53,49,51,41,41,41,41,41,41,41,32,40,40,65,32,58,49,
-54,49,51,32,40,40,40,67,39,32,40,95,51,51,32,95,49,53,54,56,
-41,41,32,40,40,67,32,95,49,53,55,57,41,32,95,49,53,54,50,41,
-41,32,40,40,80,32,40,40,95,51,53,32,95,49,53,54,56,41,32,95,
-52,57,56,41,41,32,40,40,40,83,39,32,40,95,51,51,32,95,49,53,
-54,56,41,41,32,95,49,54,49,50,41,32,40,40,40,67,39,32,66,41,
-32,40,40,66,32,40,95,51,52,32,95,49,53,54,56,41,41,32,95,49,
-53,55,53,41,41,32,40,40,66,32,40,95,51,53,32,95,49,53,54,56,
-41,41,32,95,52,57,57,41,41,41,41,41,41,32,40,40,65,32,58,49,
-54,49,52,32,94,115,121,115,116,101,109,41,32,40,40,65,32,58,49,54,
-49,53,32,40,40,40,67,39,32,40,95,51,51,32,95,49,53,54,56,41,
-41,32,40,40,67,32,95,54,51,52,41,32,95,49,54,49,52,41,41,32,
-40,40,40,83,39,32,95,50,55,48,41,32,40,40,66,32,40,95,52,54,
-32,95,49,53,54,56,41,41,32,40,40,67,32,40,95,50,49,50,32,95,
-50,57,53,41,41,32,35,48,41,41,41,32,40,40,66,32,40,95,50,55,
-48,32,95,50,53,41,41,32,40,40,66,32,40,95,52,56,50,32,34,99,
-97,108,108,67,111,109,109,97,110,100,58,32,102,97,105,108,101,100,32,34,
-41,41,32,40,95,49,55,49,52,32,95,50,57,55,41,41,41,41,41,41,
-32,40,40,65,32,58,49,54,49,54,32,40,40,66,32,40,66,32,67,41,
-41,32,80,41,41,32,40,40,65,32,58,49,54,49,55,32,35,49,48,48,
-48,48,48,48,48,48,48,41,32,40,40,65,32,58,49,54,49,56,32,40,
-40,40,95,49,54,49,54,32,95,49,54,49,55,41,32,95,52,56,48,41,
-32,95,52,56,48,41,41,32,40,40,65,32,58,49,54,49,57,32,40,40,
-83,32,66,41,32,40,40,66,32,40,40,83,39,32,66,41,32,40,66,39,
-32,66,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,
-66,32,90,41,41,41,41,41,32,40,40,67,39,32,40,67,39,32,40,67,
-39,32,40,67,39,32,67,41,41,41,41,32,40,40,66,32,40,40,83,39,
-32,66,41,32,40,66,39,32,40,40,66,32,40,83,39,32,67,39,41,41,
-32,40,95,53,50,55,32,95,50,57,54,41,41,41,41,41,32,40,40,67,
-39,32,40,67,39,32,40,67,39,32,67,41,41,41,32,40,40,40,83,39,
-32,66,41,32,40,66,39,32,40,40,66,32,40,67,39,32,67,39,41,41,
-32,40,67,32,40,95,53,50,55,32,95,50,57,54,41,41,41,41,41,32,
-40,40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,66,32,66,39,
-41,32,95,49,54,49,54,41,41,32,95,52,56,50,41,41,41,41,41,41,
-41,41,41,32,40,40,65,32,58,49,54,50,48,32,40,95,52,49,55,32,
-95,49,54,49,57,41,41,32,40,40,65,32,58,49,54,50,49,32,80,41,
-32,40,40,65,32,58,49,54,50,50,32,85,41,32,40,40,65,32,58,49,
-54,50,51,32,40,85,32,73,41,41,32,40,40,65,32,58,49,54,50,52,
-32,40,40,95,50,56,48,32,40,40,66,32,40,66,32,40,95,50,55,48,
-32,95,49,54,50,50,41,41,41,32,40,40,66,32,40,40,67,39,32,67,
-41,32,95,49,54,50,51,41,41,32,40,40,66,32,40,66,32,95,49,54,
-50,49,41,41,32,40,40,66,32,95,52,49,49,41,32,40,40,66,32,85,
-41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,79,41,41,41,
-32,40,66,32,80,41,41,32,75,41,41,41,41,41,41,41,32,40,95,50,
-56,52,32,95,49,54,50,52,41,41,41,32,40,40,65,32,58,49,54,50,
-53,32,40,40,40,40,40,95,49,50,32,95,49,54,50,52,41,32,40,40,
-66,32,40,95,50,55,48,32,95,49,54,50,50,41,41,32,40,40,40,67,
-39,32,40,67,39,32,95,49,54,50,49,41,41,32,40,40,40,67,39,32,
-40,67,39,32,79,41,41,32,80,41,32,75,41,41,32,95,49,54,49,56,
-41,41,41,32,40,95,51,57,32,95,49,54,50,54,41,41,32,40,40,40,
-67,39,32,66,41,32,40,95,51,51,32,95,49,54,50,54,41,41,32,75,
-41,41,32,40,95,50,49,32,95,49,54,50,53,41,41,41,32,40,40,65,
-32,58,49,54,50,54,32,40,40,40,40,95,51,49,32,95,49,54,50,53,
-41,32,40,40,66,32,40,66,32,40,95,50,55,48,32,95,49,54,50,50,
-41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,67,41,32,
-95,49,54,50,51,41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,
-41,32,40,40,66,32,40,66,32,95,52,51,51,41,41,32,40,40,66,32,
-40,66,32,40,95,52,49,49,32,40,40,40,67,39,32,79,41,32,40,40,
-40,83,39,32,80,41,32,40,85,32,75,41,41,32,40,85,32,65,41,41,
-41,32,75,41,41,41,41,32,40,40,66,32,95,52,49,49,41,32,40,40,
-40,67,39,32,40,67,39,32,79,41,41,32,40,40,40,67,39,32,40,83,
-39,32,95,49,54,50,51,41,41,32,40,40,67,32,66,41,32,40,85,32,
-75,41,41,41,32,40,85,32,65,41,41,41,32,75,41,41,41,41,41,32,
-40,40,66,32,40,40,67,39,32,66,41,32,40,40,66,32,95,49,54,50,
-49,41,32,95,52,49,48,41,41,41,32,40,40,66,32,40,66,32,95,49,
-54,50,48,41,41,32,95,52,56,49,41,41,41,41,41,41,32,40,95,51,
-55,32,95,49,54,50,54,41,41,32,40,95,49,52,32,95,49,54,50,53,
-41,41,41,32,40,40,65,32,58,49,54,50,55,32,40,40,95,52,48,32,
-95,49,54,50,54,41,32,40,40,66,32,40,95,50,55,48,32,95,49,54,
-50,50,41,41,32,40,40,66,32,85,41,32,40,40,66,32,90,41,32,40,
-40,66,32,40,66,32,40,95,49,54,50,49,32,95,52,56,48,41,41,41,
-32,40,40,66,32,40,67,32,40,40,40,83,39,32,95,49,54,49,54,41,
-32,95,52,50,56,41,32,40,95,52,50,54,32,35,49,41,41,41,41,32,
-40,40,67,32,79,41,32,75,41,41,41,41,41,41,41,41,32,40,40,65,
-32,58,49,54,50,56,32,40,40,40,40,40,95,48,32,95,49,54,50,53,
-41,32,40,40,95,50,55,48,32,95,49,54,50,50,41,32,40,85,32,40,
-90,32,40,40,66,32,40,95,49,54,50,49,32,95,52,56,48,41,41,32,
-40,40,67,32,40,40,40,83,39,32,95,49,54,49,54,41,32,95,52,50,
-56,41,32,40,95,52,50,54,32,35,49,41,41,41,32,95,52,56,48,41,
-41,41,41,41,41,32,40,40,66,32,40,66,32,40,95,50,55,48,32,95,
-49,54,50,50,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,
-32,83,41,32,95,49,54,50,51,41,41,32,40,40,40,67,39,32,40,67,
-39,32,66,41,41,32,40,40,66,32,66,39,41,32,95,49,54,50,51,41,
-41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,67,39,32,66,
-41,41,32,40,40,66,32,40,66,32,95,49,54,50,49,41,41,32,95,52,
-56,50,41,41,41,32,95,49,54,49,57,41,41,41,41,41,32,40,95,56,
-32,95,49,54,50,56,41,41,32,40,95,57,32,95,49,54,50,56,41,41,
-41,32,40,40,65,32,58,49,54,50,57,32,40,40,95,50,55,48,32,95,
-49,54,50,50,41,32,40,40,83,32,73,41,32,40,90,32,40,40,40,67,
-39,32,40,67,39,32,95,49,54,50,49,41,41,32,40,40,40,67,39,32,
-40,67,39,32,79,41,41,32,40,67,32,80,41,41,32,75,41,41,32,95,
-49,54,49,56,41,41,41,41,41,32,40,40,65,32,58,49,54,51,48,32,
-40,40,66,32,40,95,50,55,48,32,95,49,54,50,50,41,41,32,40,40,
-66,32,85,41,32,40,40,66,32,90,41,32,40,40,40,67,39,32,40,67,
-39,32,95,49,54,50,49,41,41,32,40,40,40,67,39,32,40,67,39,32,
-79,41,41,32,40,40,66,32,40,66,32,40,80,32,95,49,52,53,48,41,
-41,41,32,40,67,32,80,41,41,41,32,75,41,41,32,95,49,54,49,56,
-41,41,41,41,41,32,40,40,65,32,58,49,54,51,49,32,40,40,66,32,
-40,40,95,51,51,32,95,49,54,50,54,41,32,95,49,54,50,57,41,41,
-32,40,66,32,95,49,54,51,48,41,41,41,32,40,40,65,32,58,49,54,
-51,50,32,40,40,66,32,40,66,32,40,95,50,55,48,32,95,49,54,50,
-50,41,41,41,32,40,40,66,32,40,40,67,39,32,40,83,39,32,40,83,
-32,73,41,41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,
-40,40,66,32,40,66,32,67,41,41,32,40,40,66,32,40,66,32,40,67,
-32,67,39,41,41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,
-32,95,49,54,50,51,41,32,40,40,66,32,40,40,67,39,32,66,41,32,
-95,49,54,50,49,41,41,32,95,49,54,49,57,41,41,41,41,41,32,40,
-90,32,75,41,41,41,41,32,95,49,54,50,51,41,41,41,32,40,40,65,
-32,58,49,54,51,51,32,40,40,40,67,39,32,40,95,51,32,95,49,54,
-50,56,41,41,32,40,40,95,50,56,53,32,95,49,54,50,52,41,32,95,
-52,57,57,41,41,32,40,40,95,49,52,32,95,49,54,50,53,41,32,95,
-52,57,56,41,41,41,32,40,40,65,32,58,49,54,51,52,32,40,40,40,
-67,39,32,95,49,54,51,50,41,32,95,49,54,51,53,41,32,40,40,95,
-49,52,32,95,49,54,50,53,41,32,95,52,56,48,41,41,41,32,40,40,
-65,32,58,49,54,51,53,32,40,40,40,83,39,32,40,95,49,53,32,95,
-49,54,50,53,41,41,32,40,40,95,50,56,53,32,95,49,54,50,52,41,
-32,95,52,56,49,41,41,32,95,49,54,51,52,41,41,32,40,40,65,32,
-58,49,54,51,54,32,40,40,40,67,39,32,95,49,54,51,50,41,32,40,
-40,95,50,56,53,32,95,49,54,50,52,41,32,95,52,57,57,41,41,32,
-40,40,95,49,52,32,95,49,54,50,53,41,32,95,52,57,56,41,41,41,
-32,40,40,65,32,58,49,54,51,55,32,40,40,66,32,40,67,32,66,41,
-41,32,40,40,40,67,39,32,40,67,39,32,80,41,41,32,40,67,32,80,
-41,41,32,40,40,83,32,40,40,67,32,67,39,41,32,95,49,56,51,41,
-41,32,40,90,32,40,90,32,40,40,66,32,95,49,56,52,41,32,40,95,
-52,49,49,32,40,85,32,40,40,40,67,39,32,40,67,39,32,79,41,41,
-32,40,40,40,67,39,32,66,41,32,80,41,32,95,53,57,57,41,41,32,
-75,41,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,49,54,51,
-56,32,40,40,83,32,40,85,32,40,95,50,32,95,49,54,50,56,41,41,
-41,32,40,90,32,40,90,32,40,95,52,49,53,32,40,95,51,32,95,49,
-54,50,56,41,41,41,41,41,41,32,40,40,65,32,58,49,54,51,57,32,
-40,40,66,32,40,66,32,40,95,50,55,48,32,95,49,54,50,50,41,41,
-41,32,40,40,66,32,40,66,32,85,41,41,32,40,40,66,32,40,40,67,
-39,32,83,41,32,40,40,66,32,40,40,67,39,32,67,39,41,32,83,41,
-41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,67,39,32,40,
-83,39,32,66,41,41,41,32,67,41,41,32,40,40,40,67,39,32,40,67,
-39,32,40,67,39,32,95,49,54,50,49,41,41,41,32,40,40,40,67,39,
-32,40,67,39,32,40,67,39,32,79,41,41,41,32,40,40,66,32,40,40,
-67,39,32,66,41,32,80,41,41,32,40,67,32,80,41,41,41,32,75,41,
-41,32,95,49,54,49,56,41,41,41,41,41,32,40,40,66,32,40,66,32,
-40,95,49,54,50,49,32,95,52,56,48,41,41,41,32,40,40,66,32,40,
-67,32,40,40,40,83,39,32,95,49,54,49,54,41,32,95,52,50,56,41,
-32,40,95,52,50,54,32,35,49,41,41,41,41,32,40,40,67,32,79,41,
-32,75,41,41,41,41,41,41,41,32,40,40,65,32,58,49,54,52,48,32,
-40,40,66,32,40,66,32,40,95,50,55,48,32,95,49,54,50,50,41,41,
-41,32,40,40,66,32,40,66,32,85,41,41,32,40,40,66,32,40,40,67,
-39,32,83,41,32,40,40,66,32,40,40,67,39,32,67,39,41,32,83,41,
-41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,67,39,32,40,
-67,39,32,66,41,41,41,32,67,41,41,32,40,40,40,67,39,32,40,67,
-39,32,40,67,39,32,95,49,54,50,49,41,41,41,32,40,40,40,67,39,
-32,40,67,39,32,40,67,39,32,79,41,41,41,32,40,40,66,32,40,66,
-32,40,67,32,80,41,41,41,32,40,67,32,80,41,41,41,32,75,41,41,
-32,95,49,54,49,56,41,41,41,41,41,32,40,40,66,32,40,66,32,40,
-95,49,54,50,49,32,95,52,56,48,41,41,41,32,40,40,66,32,40,67,
-32,40,40,40,83,39,32,95,49,54,49,54,41,32,95,52,50,56,41,32,
-40,95,52,50,54,32,35,49,41,41,41,41,32,40,40,67,32,79,41,32,
-75,41,41,41,41,41,41,41,32,40,40,65,32,58,49,54,52,49,32,40,
-40,95,50,55,48,32,95,49,54,50,50,41,32,40,40,83,32,73,41,32,
-40,40,66,32,90,41,32,40,40,66,32,40,67,32,40,40,83,32,95,52,
-48,57,41,32,40,40,66,32,40,95,49,54,50,49,32,95,52,56,48,41,
-41,32,40,40,67,32,40,40,40,83,39,32,95,49,54,49,54,41,32,95,
-52,50,56,41,32,40,95,52,50,54,32,35,49,41,41,41,32,40,40,79,
-32,34,101,111,102,34,41,32,75,41,41,41,41,41,41,32,40,40,40,67,
-39,32,95,49,54,50,49,41,32,40,40,40,67,39,32,79,41,32,40,80,
-32,95,49,52,53,48,41,41,32,75,41,41,32,95,49,54,49,56,41,41,
-41,41,41,41,32,40,40,65,32,58,49,54,52,50,32,40,40,66,32,40,
-66,32,40,95,50,55,48,32,95,49,54,50,50,41,41,41,32,40,40,40,
-67,39,32,66,41,32,40,40,66,32,67,41,32,95,49,54,50,51,41,41,
-32,40,40,66,32,40,66,32,85,41,41,32,40,40,66,32,40,66,32,40,
-66,32,90,41,41,41,32,40,40,66,32,40,40,67,39,32,66,41,32,40,
-66,39,32,95,49,54,50,49,41,41,41,32,40,40,66,32,40,40,67,39,
-32,67,41,32,95,49,54,49,54,41,41,32,40,40,67,32,79,41,32,75,
-41,41,41,41,41,41,41,41,32,40,40,65,32,58,49,54,52,51,32,40,
-40,66,32,40,95,50,55,48,32,95,49,54,50,50,41,41,32,40,40,40,
-67,39,32,83,41,32,95,49,54,50,51,41,32,40,40,66,32,40,67,32,
-40,40,67,32,67,39,41,32,40,85,32,40,40,66,32,40,66,32,40,66,
-32,40,95,49,54,50,49,32,95,52,56,48,41,41,41,41,32,40,40,40,
-67,39,32,66,41,32,95,49,54,49,54,41,32,40,95,52,50,54,32,35,
-49,41,41,41,41,41,41,41,32,40,90,32,40,90,32,40,40,40,67,39,
-32,95,49,54,50,49,41,32,40,40,40,67,39,32,79,41,32,40,80,32,
-95,49,52,53,48,41,41,32,75,41,41,32,95,49,54,49,56,41,41,41,
-41,41,41,41,32,40,40,65,32,58,49,54,52,52,32,40,40,95,50,55,
-48,32,95,49,54,50,50,41,32,40,40,83,32,73,41,32,40,40,66,32,
-90,41,32,40,40,66,32,40,67,32,40,40,83,32,73,41,32,40,40,66,
-32,40,95,49,54,50,49,32,95,52,56,48,41,41,32,40,40,67,32,40,
-40,40,67,39,32,95,49,54,49,54,41,32,95,52,50,56,41,32,95,52,
-56,48,41,41,32,40,40,79,32,34,33,101,111,102,34,41,32,75,41,41,
-41,41,41,41,32,40,40,66,32,90,41,32,40,40,40,67,39,32,40,67,
-39,32,95,49,54,50,49,41,41,32,40,40,40,67,39,32,40,67,39,32,
-79,41,41,32,40,67,32,80,41,41,32,75,41,41,32,95,49,54,49,56,
-41,41,41,41,41,41,41,32,40,40,65,32,58,49,54,52,53,32,40,40,
-66,32,40,95,50,55,48,32,95,49,54,50,50,41,41,32,40,40,66,32,
-85,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,95,49,54,
-50,49,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,
-79,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,80,32,95,49,
-52,53,48,41,41,41,41,32,40,40,66,32,40,66,32,80,41,41,32,95,
-52,56,50,41,41,41,32,75,41,41,32,95,49,54,49,56,41,41,41,41,
-32,40,40,65,32,58,49,54,52,54,32,40,40,40,83,39,32,66,41,32,
-40,40,66,32,40,95,49,53,32,95,49,54,50,53,41,41,32,40,40,95,
-50,56,53,32,95,49,54,50,52,41,32,95,52,56,49,41,41,41,32,40,
-40,66,32,40,66,32,40,95,53,32,95,49,54,50,56,41,41,41,32,40,
-67,32,40,95,49,54,32,95,49,54,50,53,41,41,41,41,41,32,40,40,
-65,32,58,49,54,52,55,32,40,40,40,83,39,32,66,41,32,40,40,66,
-32,40,95,49,53,32,95,49,54,50,53,41,41,32,40,40,95,50,56,53,
-32,95,49,54,50,52,41,32,95,52,56,49,41,41,41,32,40,40,66,32,
-40,66,32,95,49,54,51,52,41,41,32,40,67,32,40,95,49,54,32,95,
-49,54,50,53,41,41,41,41,41,32,40,40,65,32,58,49,54,52,56,32,
-40,40,40,67,39,32,40,67,39,32,95,49,54,51,50,41,41,32,95,49,
-54,52,55,41,32,40,40,95,49,52,32,95,49,54,50,53,41,32,95,52,
-56,48,41,41,41,32,40,40,65,32,58,49,54,52,57,32,40,40,40,67,
-39,32,40,67,39,32,95,49,54,51,50,41,41,32,95,49,54,53,48,41,
-32,40,40,95,49,52,32,95,49,54,50,53,41,32,95,52,56,48,41,41,
-41,32,40,40,65,32,58,49,54,53,48,32,40,40,40,83,39,32,66,41,
-32,40,40,66,32,40,95,49,53,32,95,49,54,50,53,41,41,32,40,40,
-95,50,56,53,32,95,49,54,50,52,41,32,95,52,56,49,41,41,41,32,
-40,40,40,67,39,32,40,67,39,32,95,49,54,51,50,41,41,32,40,40,
-66,32,40,83,32,40,95,49,54,32,95,49,54,50,53,41,41,41,32,95,
-49,54,52,57,41,41,32,40,40,95,49,52,32,95,49,54,50,53,41,32,
-95,52,56,48,41,41,41,41,32,40,40,65,32,58,49,54,53,49,32,40,
-90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,75,41,41,
-41,41,41,41,41,32,40,40,65,32,58,49,54,53,50,32,40,90,32,40,
-40,66,32,90,41,32,40,40,66,32,90,41,32,40,40,66,32,90,41,32,
-40,40,66,32,90,41,32,40,40,66,32,90,41,32,40,40,66,32,90,41,
-32,85,41,41,41,41,41,41,41,41,32,40,40,65,32,58,49,54,53,51,
-32,40,40,66,32,90,41,32,40,40,66,32,90,41,32,40,40,66,32,40,
-66,32,90,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,
-32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,
-40,66,32,40,66,32,90,41,41,32,80,41,41,41,41,41,41,41,41,32,
-40,40,65,32,58,49,54,53,52,32,40,40,66,32,90,41,32,40,40,66,
-32,90,41,32,40,40,66,32,90,41,32,40,40,66,32,40,66,32,90,41,
-41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,
-90,41,41,32,40,40,66,32,40,66,32,90,41,41,32,80,41,41,41,41,
-41,41,41,41,32,40,40,65,32,58,49,54,53,53,32,40,40,66,32,90,
-41,32,40,40,66,32,90,41,32,40,40,66,32,90,41,32,40,40,66,32,
-90,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,66,
-32,90,41,41,32,40,40,66,32,40,66,32,90,41,41,32,80,41,41,41,
-41,41,41,41,41,32,40,40,65,32,58,49,54,53,54,32,40,75,32,40,
-75,32,40,75,32,40,75,32,40,75,32,40,90,32,75,41,41,41,41,41,
-41,41,32,40,40,65,32,58,49,54,53,55,32,40,40,66,32,40,66,32,
-90,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,
-66,32,90,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,
-32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,
-40,66,32,40,66,32,40,66,32,90,41,41,41,32,40,40,66,32,40,66,
-32,67,41,41,32,80,41,41,41,41,41,41,41,41,41,32,40,40,65,32,
-58,49,54,53,56,32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,
-32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,
-40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,90,41,41,
-32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,90,
-41,41,32,40,40,66,32,40,66,32,67,41,41,32,80,41,41,41,41,41,
-41,41,41,41,32,40,40,65,32,58,49,54,53,57,32,40,40,67,32,95,
-49,54,53,51,41,32,95,49,54,53,49,41,41,32,40,40,65,32,58,49,
-54,54,48,32,95,49,54,53,49,41,32,40,40,65,32,58,49,54,54,49,
-32,40,40,67,32,40,40,67,32,40,40,83,32,40,40,83,32,40,40,83,
-32,40,40,83,32,40,40,83,32,40,40,83,32,73,41,32,73,41,41,32,
-75,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,
-40,90,32,75,41,41,41,32,73,41,41,32,40,40,40,67,39,32,40,67,
-39,32,66,41,41,32,95,49,54,57,50,41,32,95,49,54,54,49,41,41,
-41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,95,49,54,56,
-54,41,32,95,49,54,54,49,41,41,41,32,40,40,65,32,58,49,54,54,
-50,32,40,40,95,50,55,50,32,95,53,57,57,41,32,40,40,95,50,55,
-50,32,95,49,54,55,54,41,32,40,40,95,52,49,52,32,40,40,67,32,
-95,49,54,53,55,41,32,95,49,50,53,41,41,32,95,49,54,54,48,41,
-41,41,41,32,40,40,65,32,58,49,54,54,51,32,40,40,95,50,55,50,
-32,95,53,57,57,41,32,40,40,95,50,55,50,32,95,49,54,55,54,41,
-32,40,40,95,52,49,52,32,40,40,67,32,95,49,54,53,55,41,32,95,
-49,50,54,41,41,32,95,49,54,54,48,41,41,41,41,32,40,40,65,32,
-58,49,54,54,52,32,40,40,95,50,55,50,32,95,53,57,57,41,32,40,
-40,95,50,55,50,32,95,49,54,55,55,41,32,40,40,95,52,49,52,32,
-40,40,67,32,95,49,54,53,56,41,32,95,49,50,53,41,41,32,95,49,
-54,54,48,41,41,41,41,32,40,40,65,32,58,49,54,54,53,32,40,40,
-40,67,39,32,66,41,32,95,49,54,55,50,41,32,95,49,54,54,49,41,
-41,32,40,40,65,32,58,49,54,54,54,32,40,40,66,32,40,66,32,40,
-66,32,95,49,54,57,52,41,41,41,32,40,40,40,67,39,32,66,41,32,
-40,66,39,32,79,41,41,32,40,40,40,67,39,32,40,67,39,32,79,41,
-41,32,95,49,54,54,53,41,32,75,41,41,41,41,32,40,40,65,32,58,
-49,54,54,55,32,40,40,66,32,40,80,32,95,52,56,48,41,41,32,40,
-40,66,32,89,41,32,40,40,66,32,40,66,32,40,40,83,39,32,80,41,
-32,40,40,67,32,79,41,32,75,41,41,41,41,32,40,40,66,32,40,67,
-39,32,66,41,41,32,40,40,66,32,66,39,41,32,40,40,66,32,40,66,
-32,95,52,56,49,41,41,32,40,67,32,95,49,54,56,57,41,41,41,41,
-41,41,41,41,32,40,40,65,32,58,49,54,54,56,32,40,40,80,32,95,
-50,55,51,41,32,95,49,54,54,57,41,41,32,40,40,65,32,58,49,54,
-54,57,32,40,40,40,67,39,32,95,49,54,56,57,41,32,40,95,49,54,
-56,57,32,40,95,49,54,53,57,32,40,40,79,32,35,52,48,41,32,75,
-41,41,41,41,32,40,95,49,54,53,57,32,40,40,79,32,35,52,49,41,
-32,75,41,41,41,41,32,40,40,65,32,58,49,54,55,48,32,40,40,40,
-67,39,32,95,49,54,56,57,41,32,40,95,49,54,56,57,32,40,95,49,
-54,53,57,32,40,40,79,32,35,49,50,51,41,32,75,41,41,41,41,32,
-40,95,49,54,53,57,32,40,40,79,32,35,49,50,53,41,32,75,41,41,
-41,41,32,40,40,65,32,58,49,54,55,49,32,40,40,40,67,39,32,95,
-49,54,56,57,41,32,40,95,49,54,56,57,32,40,95,49,54,53,57,32,
-40,40,79,32,35,57,49,41,32,75,41,41,41,41,32,40,95,49,54,53,
-57,32,40,40,79,32,35,57,51,41,32,75,41,41,41,41,32,40,40,65,
-32,58,49,54,55,50,32,40,40,67,32,40,40,40,83,39,32,67,39,41,
-32,40,40,67,32,95,49,53,57,56,41,32,95,49,50,53,41,41,32,40,
-40,40,83,39,32,83,41,32,40,40,40,67,39,32,40,67,39,32,83,41,
-41,32,40,40,40,67,39,32,40,67,39,32,83,41,41,32,40,40,40,67,
-39,32,40,67,39,32,67,41,41,32,40,40,40,67,39,32,40,67,39,32,
-83,41,41,32,40,40,66,32,40,40,67,39,32,67,41,32,40,40,67,32,
-40,40,40,67,39,32,83,39,41,32,40,85,32,95,49,54,53,49,41,41,
-32,75,41,41,32,40,90,32,75,41,41,41,41,32,40,40,66,32,40,66,
-32,95,49,54,55,50,41,41,32,40,95,53,48,57,32,95,50,57,49,41,
-41,41,41,32,40,90,32,75,41,41,41,32,95,49,54,53,54,41,41,32,
-40,90,32,40,90,32,75,41,41,41,41,32,40,90,32,40,90,32,75,41,
-41,41,41,32,40,40,67,32,40,40,40,83,39,32,83,39,41,32,40,40,
-67,32,61,61,41,32,35,48,41,41,32,95,49,54,56,49,41,41,32,73,
-41,41,41,41,32,95,50,54,41,41,32,40,40,65,32,58,49,54,55,51,
-32,40,40,40,83,39,32,66,41,32,40,40,40,67,39,32,83,41,32,40,
-40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,
-67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,67,32,40,
-40,40,67,39,32,83,39,41,32,40,85,32,95,49,54,53,49,41,41,32,
-75,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,
-40,90,32,75,41,41,41,32,73,41,41,32,40,90,32,40,90,32,75,41,
-41,41,41,32,40,90,32,40,90,32,75,41,41,41,41,32,95,49,54,56,
-50,41,41,32,40,40,65,32,58,49,54,55,52,32,75,41,32,40,40,65,
-32,58,49,54,55,53,32,65,41,32,40,40,65,32,58,49,54,55,54,32,
-40,40,83,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,67,
-41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,
-40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,
-67,32,83,41,32,75,41,41,32,40,90,32,75,41,41,41,32,40,90,32,
-75,41,41,41,32,40,90,32,75,41,41,41,32,73,41,41,32,40,40,40,
-67,39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,95,49,54,55,
-56,32,95,49,54,53,55,41,41,32,40,40,66,32,95,53,57,57,41,32,
-95,49,54,55,54,41,41,41,32,95,49,54,55,54,41,41,41,32,40,90,
-32,40,90,32,75,41,41,41,41,32,40,80,32,95,49,54,55,53,41,41,
-41,32,40,40,65,32,58,49,54,55,55,32,40,40,83,32,40,40,40,67,
-39,32,67,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,
-83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,
-32,40,40,40,67,39,32,83,41,32,40,40,67,32,83,41,32,75,41,41,
-32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,
-75,41,41,41,32,73,41,41,32,40,90,32,40,90,32,75,41,41,41,41,
-32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,
-95,49,54,55,56,32,95,49,54,53,56,41,41,32,40,40,66,32,95,53,
-57,57,41,32,95,49,54,55,55,41,41,41,32,95,49,54,55,55,41,41,
-41,32,40,80,32,95,49,54,55,53,41,41,41,32,40,40,65,32,58,49,
-54,55,56,32,40,40,66,32,40,40,83,39,32,66,41,32,40,40,66,32,
-83,41,32,40,40,40,67,39,32,40,67,39,32,83,41,41,32,40,40,40,
-67,39,32,40,67,39,32,83,41,41,32,40,40,40,67,39,32,40,67,39,
-32,83,41,41,32,40,40,40,67,39,32,40,67,39,32,83,41,41,32,40,
-40,40,67,39,32,40,67,39,32,83,41,41,32,40,40,40,67,39,32,67,
-41,32,40,40,67,32,40,67,39,32,83,39,41,41,32,75,41,41,32,40,
-90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,
-41,41,32,73,41,41,32,40,90,32,40,90,32,75,41,41,41,41,32,40,
-90,32,40,90,32,75,41,41,41,41,41,41,32,40,40,66,32,40,66,32,
-40,66,32,40,66,32,40,80,32,95,49,54,55,53,41,41,41,41,41,32,
-40,40,66,32,40,66,32,40,66,32,85,41,41,41,32,40,40,83,39,32,
-66,41,32,40,40,66,32,40,67,39,32,66,41,41,32,85,41,41,41,41,
-41,41,32,40,40,65,32,58,49,54,55,57,32,95,49,54,53,50,41,32,
-40,40,65,32,58,49,54,56,48,32,95,49,54,53,51,41,32,40,40,65,
-32,58,49,54,56,49,32,95,49,54,53,52,41,32,40,40,65,32,58,49,
-54,56,50,32,95,49,54,53,53,41,32,40,40,65,32,58,49,54,56,51,
-32,40,40,67,32,95,49,54,56,53,41,32,95,49,50,53,41,41,32,40,
-40,65,32,58,49,54,56,52,32,40,40,67,32,95,49,54,56,53,41,32,
-95,49,50,54,41,41,32,40,40,65,32,58,49,54,56,53,32,40,40,40,
-83,39,32,66,41,32,40,40,66,32,83,41,32,40,40,40,67,39,32,40,
-67,39,32,83,41,41,32,40,40,40,67,39,32,40,67,39,32,83,41,41,
-32,40,40,40,67,39,32,40,67,39,32,83,41,41,32,40,40,40,67,39,
-32,40,67,39,32,83,41,41,32,40,40,40,67,39,32,40,67,39,32,83,
-41,41,32,40,40,40,67,39,32,67,41,32,40,40,40,67,39,32,40,67,
-39,32,83,39,41,41,32,85,41,32,75,41,41,32,40,90,32,75,41,41,
-41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,73,41,
-41,32,40,90,32,40,90,32,75,41,41,41,41,32,40,90,32,40,90,32,
-75,41,41,41,41,41,32,40,40,40,83,39,32,66,41,32,40,40,66,32,
-83,41,32,40,40,40,67,39,32,40,67,39,32,83,41,41,32,40,40,40,
-67,39,32,40,67,39,32,83,41,41,32,40,40,40,67,39,32,40,67,39,
-32,83,41,41,32,40,40,40,67,39,32,40,67,39,32,83,41,41,32,40,
-40,40,67,39,32,40,67,39,32,83,41,41,32,40,40,40,67,39,32,67,
-41,32,40,40,67,32,40,67,39,32,83,39,41,41,32,75,41,41,32,40,
-90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,
-41,41,32,73,41,41,32,40,90,32,40,90,32,75,41,41,41,41,32,40,
-90,32,40,90,32,75,41,41,41,41,41,32,95,49,54,53,56,41,41,41,
-32,40,40,65,32,58,49,54,56,54,32,40,40,40,83,39,32,40,83,39,
-32,83,41,41,32,40,40,40,67,39,32,40,83,39,32,40,83,39,32,67,
-41,41,41,32,40,40,40,83,39,32,66,41,32,40,66,39,32,40,40,66,
-32,67,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,
-41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,
-40,40,67,32,83,41,32,75,41,41,32,40,90,32,75,41,41,41,32,40,
-90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,73,41,41,41,41,
-32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,90,
-41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,40,67,39,32,
-40,67,39,32,66,41,41,32,40,40,40,67,39,32,67,41,32,40,40,66,
-32,95,49,54,56,55,41,32,95,49,54,54,49,41,41,32,35,48,41,41,
-32,95,49,54,54,49,41,41,41,41,41,41,32,40,40,66,32,40,66,32,
-40,40,67,39,32,40,67,39,32,66,41,41,32,95,49,54,56,54,41,41,
-41,32,40,40,66,32,67,41,32,40,67,32,95,49,54,56,54,41,41,41,
-41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,40,
-67,39,32,67,41,32,95,49,54,56,55,41,32,35,48,41,41,32,95,49,
-54,54,49,41,41,41,32,40,40,65,32,58,49,54,56,55,32,40,40,40,
-67,39,32,40,67,39,32,67,41,41,32,40,40,66,32,40,66,32,40,40,
-83,39,32,67,39,41,32,40,40,67,32,95,49,53,57,56,41,32,95,49,
-50,53,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,
-32,67,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,
-67,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,67,
-41,41,41,32,40,40,40,67,39,32,40,83,39,32,40,83,39,32,83,41,
-41,41,32,40,40,40,67,39,32,40,83,39,32,40,83,39,32,83,41,41,
-41,32,40,40,40,67,39,32,40,83,39,32,40,83,39,32,83,41,41,41,
-32,40,40,40,67,39,32,66,41,32,40,40,40,67,39,32,83,39,41,32,
-83,39,41,32,95,49,54,55,50,41,41,32,40,40,66,32,40,66,32,40,
-66,32,40,66,32,95,49,54,55,57,41,41,41,41,32,40,40,66,32,40,
-66,32,67,41,41,32,40,40,66,32,67,41,32,40,67,32,95,49,54,56,
-55,41,41,41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,
-32,40,67,39,32,83,41,41,32,40,40,66,32,40,66,32,40,40,67,39,
-32,67,39,41,32,40,66,39,32,95,49,54,53,51,41,41,41,41,32,40,
-40,40,83,39,32,40,83,39,32,40,83,39,32,83,41,41,41,32,40,40,
-40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,83,41,41,41,
-41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,
-83,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,
-40,67,39,32,83,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,
-40,67,39,32,40,67,39,32,83,41,41,41,41,32,40,40,40,67,39,32,
-40,67,39,32,40,67,39,32,40,67,39,32,83,41,41,41,41,32,40,40,
-40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,41,32,40,40,40,
-67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,83,39,41,41,41,
-41,32,40,40,66,32,40,66,32,40,67,32,66,41,41,41,32,40,40,66,
-32,67,41,32,95,49,54,56,56,41,41,41,32,75,41,41,32,40,90,32,
-75,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,
-32,73,41,41,32,40,90,32,40,90,32,75,41,41,41,41,32,40,90,32,
-40,90,32,75,41,41,41,41,32,40,40,66,32,40,67,39,32,67,41,41,
-32,40,67,32,95,49,54,56,55,41,41,41,41,41,41,32,40,40,40,67,
-39,32,66,41,32,40,95,53,49,48,32,95,50,57,49,41,41,32,95,52,
-50,56,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,40,83,
-39,32,66,41,32,95,49,54,56,49,41,41,41,41,32,40,40,66,32,40,
-66,32,40,67,39,32,67,41,41,41,32,40,40,40,67,39,32,66,41,32,
-40,66,39,32,40,40,66,32,67,41,32,40,67,32,95,49,54,56,55,41,
-41,41,41,32,40,95,53,49,48,32,95,50,57,49,41,41,41,41,41,41,
-32,40,40,40,83,39,32,40,83,39,32,40,83,39,32,40,67,39,32,66,
-41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,95,49,
-54,56,50,41,41,41,41,32,40,40,66,32,40,66,32,67,41,41,32,40,
-40,66,32,67,41,32,40,67,32,95,49,54,56,55,41,41,41,41,41,32,
-40,40,66,32,40,66,32,67,41,41,32,40,40,66,32,67,41,32,40,67,
-32,95,49,54,56,55,41,41,41,41,41,41,32,95,49,54,53,54,41,41,
-32,40,75,32,40,75,32,40,75,32,40,95,50,53,32,34,97,98,111,118,
-101,78,101,115,116,32,66,101,115,105,100,101,34,41,41,41,41,41,41,32,
-40,75,32,40,75,32,40,75,32,40,95,50,53,32,34,97,98,111,118,101,
-78,101,115,116,32,65,98,111,118,101,34,41,41,41,41,41,41,41,32,95,
-50,54,41,41,32,40,40,65,32,58,49,54,56,56,32,40,40,66,32,89,
-41,32,40,40,40,67,39,32,40,67,39,32,67,41,41,32,40,40,66,32,
-40,66,32,40,40,83,39,32,67,39,41,32,40,40,67,32,95,49,53,57,
-56,41,32,95,49,50,53,41,41,41,41,32,40,40,66,32,40,40,67,39,
-32,40,83,39,32,83,41,41,32,40,40,40,67,39,32,40,67,39,32,40,
-67,39,32,83,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,
-39,32,83,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,
-32,83,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,
-83,41,41,41,32,40,40,66,32,40,66,32,40,40,67,39,32,67,41,32,
-40,40,67,32,40,40,40,67,39,32,83,39,41,32,40,85,32,95,49,54,
-53,49,41,41,32,75,41,41,32,40,90,32,75,41,41,41,41,41,32,40,
-40,40,67,39,32,66,41,32,66,41,32,40,95,53,48,57,32,95,50,57,
-49,41,41,41,41,32,40,90,32,75,41,41,41,32,73,41,41,32,40,90,
-32,40,90,32,75,41,41,41,41,32,40,90,32,40,90,32,75,41,41,41,
-41,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,40,83,
-39,32,83,39,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,
-95,49,50,50,41,32,95,49,50,51,41,41,32,40,40,67,32,40,95,53,
-50,57,32,95,50,57,54,41,41,32,35,48,41,41,41,32,40,40,66,32,
-40,66,32,95,49,54,55,57,41,41,32,95,49,54,55,50,41,41,41,32,
-40,40,66,32,95,49,54,56,48,41,32,40,40,67,32,95,52,54,53,41,
-32,35,51,50,41,41,41,41,41,41,32,95,50,54,41,41,41,32,40,40,
-65,32,58,49,54,56,57,32,40,40,67,32,95,49,54,57,49,41,32,95,
-49,50,53,41,41,32,40,40,65,32,58,49,54,57,48,32,40,40,67,32,
-95,49,54,57,49,41,32,95,49,50,54,41,41,32,40,40,65,32,58,49,
-54,57,49,32,40,40,40,83,39,32,66,41,32,40,40,66,32,83,41,32,
-40,40,40,67,39,32,40,67,39,32,83,41,41,32,40,40,40,67,39,32,
-40,67,39,32,83,41,41,32,40,40,40,67,39,32,40,67,39,32,83,41,
-41,32,40,40,40,67,39,32,40,67,39,32,83,41,41,32,40,40,40,67,
-39,32,40,67,39,32,83,41,41,32,40,40,40,67,39,32,67,41,32,40,
-40,40,67,39,32,40,67,39,32,83,39,41,41,32,85,41,32,75,41,41,
-32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,
-75,41,41,41,32,73,41,41,32,40,90,32,40,90,32,75,41,41,41,41,
-32,40,90,32,40,90,32,75,41,41,41,41,41,32,40,40,40,83,39,32,
-66,41,32,40,40,66,32,83,41,32,40,40,40,67,39,32,40,67,39,32,
-83,41,41,32,40,40,40,67,39,32,40,67,39,32,83,41,41,32,40,40,
-40,67,39,32,40,67,39,32,83,41,41,32,40,40,40,67,39,32,40,67,
-39,32,83,41,41,32,40,40,40,67,39,32,40,67,39,32,83,41,41,32,
-40,40,40,67,39,32,67,41,32,40,40,67,32,40,67,39,32,83,39,41,
-41,32,75,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,
-41,32,40,90,32,75,41,41,41,32,73,41,41,32,40,90,32,40,90,32,
-75,41,41,41,41,32,40,90,32,40,90,32,75,41,41,41,41,41,32,95,
-49,54,53,55,41,41,41,32,40,40,65,32,58,49,54,57,50,32,40,40,
-40,83,39,32,40,83,39,32,83,41,41,32,40,40,40,83,39,32,40,83,
-39,32,83,41,41,32,40,40,40,67,39,32,40,67,39,32,67,41,41,32,
-40,40,40,67,39,32,40,83,39,32,83,41,41,32,40,40,40,67,39,32,
-40,83,39,32,83,41,41,32,40,40,40,67,39,32,40,83,39,32,83,41,
-41,32,40,40,40,67,39,32,66,41,32,83,41,32,40,40,66,32,40,66,
-32,40,66,32,40,95,50,55,49,32,95,49,54,55,57,41,41,41,41,32,
-40,40,66,32,67,41,32,40,67,32,95,49,54,57,50,41,41,41,41,41,
-32,40,40,66,32,40,66,32,40,40,67,39,32,66,41,32,95,49,54,53,
-51,41,41,41,32,40,40,40,83,39,32,40,83,39,32,83,41,41,32,40,
-40,40,67,39,32,40,67,39,32,40,67,39,32,83,41,41,41,32,40,40,
-40,67,39,32,40,67,39,32,40,67,39,32,83,41,41,41,32,40,40,40,
-67,39,32,40,67,39,32,40,67,39,32,83,41,41,41,32,40,40,40,67,
-39,32,40,67,39,32,40,67,39,32,83,41,41,41,32,40,40,40,67,39,
-32,40,67,39,32,40,67,39,32,83,41,41,41,32,40,40,40,67,39,32,
-40,67,39,32,67,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,
-39,32,83,39,41,41,41,32,40,40,66,32,40,66,32,85,41,41,32,95,
-49,54,57,51,41,41,32,75,41,41,32,40,90,32,75,41,41,41,32,40,
-90,32,75,41,41,41,32,40,90,32,75,41,41,41,32,73,41,41,32,40,
-90,32,40,90,32,75,41,41,41,41,32,40,90,32,40,90,32,75,41,41,
-41,41,32,40,40,66,32,67,41,32,40,67,32,95,49,54,57,50,41,41,
-41,41,41,41,32,40,40,66,32,40,66,32,40,40,67,39,32,66,41,32,
-40,40,66,32,95,50,55,49,41,32,95,49,54,56,49,41,41,41,41,32,
-40,40,66,32,67,41,32,40,67,32,95,49,54,57,50,41,41,41,41,41,
-32,40,40,40,83,39,32,40,83,39,32,40,67,39,32,66,41,41,41,32,
-40,40,66,32,40,66,32,40,66,32,95,49,54,56,50,41,41,41,32,40,
-40,66,32,67,41,32,40,67,32,95,49,54,57,50,41,41,41,41,32,40,
-40,66,32,67,41,32,40,67,32,95,49,54,57,50,41,41,41,41,41,32,
-95,49,54,53,54,41,41,32,40,40,40,67,39,32,40,83,39,32,40,83,
-39,32,66,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,83,39,
-32,66,41,41,41,41,32,40,40,66,32,40,40,83,39,32,66,41,32,40,
-40,66,32,67,41,32,40,67,32,40,95,50,49,49,32,95,49,49,56,41,
-41,41,41,41,32,40,40,66,32,95,49,54,57,50,41,32,95,49,54,54,
-49,41,41,41,41,32,40,40,66,32,40,66,32,40,40,67,39,32,40,67,
-39,32,66,41,41,32,40,40,66,32,40,66,32,95,50,55,49,41,41,32,
-95,49,54,57,50,41,41,41,41,32,40,40,66,32,67,41,32,40,67,32,
-95,49,54,57,50,41,41,41,41,41,41,32,40,40,66,32,40,66,32,90,
-41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,66,
-32,90,41,41,32,40,40,66,32,95,49,54,57,50,41,32,95,49,54,54,
-49,41,41,41,41,41,41,32,40,40,65,32,58,49,54,57,51,32,40,40,
-66,32,89,41,32,40,40,66,32,40,40,67,39,32,83,41,32,40,40,40,
-67,39,32,40,67,39,32,83,41,41,32,40,40,40,67,39,32,40,67,39,
-32,83,41,41,32,40,40,40,67,39,32,40,67,39,32,83,41,41,32,40,
-40,40,67,39,32,40,67,39,32,83,41,41,32,40,40,66,32,40,40,67,
-39,32,67,41,32,40,40,67,32,40,40,40,67,39,32,83,39,41,32,40,
-85,32,95,49,54,53,49,41,41,32,75,41,41,32,40,90,32,75,41,41,
-41,41,32,75,41,41,32,40,90,32,75,41,41,41,32,73,41,41,32,40,
-90,32,40,90,32,75,41,41,41,41,32,40,90,32,40,90,32,75,41,41,
-41,41,41,32,40,40,67,32,83,41,32,40,95,49,54,56,48,32,40,40,
-79,32,35,51,50,41,32,75,41,41,41,41,41,41,32,40,40,65,32,58,
-49,54,57,52,32,40,95,49,54,57,54,32,95,49,50,54,41,41,32,40,
-40,65,32,58,49,54,57,53,32,40,95,49,54,57,54,32,95,49,50,53,
-41,41,32,40,40,65,32,58,49,54,57,54,32,40,40,66,32,40,80,32,
-95,49,54,54,48,41,41,32,40,40,67,32,40,40,40,67,39,32,67,39,
-41,32,95,49,54,57,55,41,32,95,49,54,54,49,41,41,32,35,48,41,
-41,41,32,40,40,65,32,58,49,54,57,55,32,40,40,66,32,89,41,32,
-40,40,40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,41,32,40,
-40,66,32,40,66,32,40,66,32,40,40,83,39,32,67,39,41,32,40,40,
-67,32,95,49,53,57,56,41,32,95,49,50,53,41,41,41,41,41,32,40,
-40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,
-41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,
-32,67,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,
-32,40,67,39,32,67,41,41,41,41,32,40,40,40,67,39,32,40,83,39,
-32,40,67,39,32,40,83,39,32,83,41,41,41,41,32,40,40,40,67,39,
-32,66,41,32,40,40,66,32,40,67,39,32,40,83,39,32,83,41,41,41,
-32,40,40,40,83,39,32,40,67,39,32,40,83,39,32,83,41,41,41,32,
-40,40,40,67,39,32,67,41,32,40,40,66,32,40,40,67,39,32,83,39,
-41,32,83,39,41,41,32,40,40,66,32,40,40,67,39,32,66,41,32,95,
-49,54,55,50,41,41,32,95,49,54,57,54,41,41,41,32,40,40,66,32,
-40,66,32,40,66,32,95,49,54,55,57,41,41,41,32,40,40,40,67,39,
-32,66,41,32,40,40,66,32,67,41,32,40,67,32,40,40,67,32,95,49,
-54,56,55,41,32,95,49,50,53,41,41,41,41,32,40,40,66,32,95,49,
-54,54,49,41,32,95,49,54,54,52,41,41,41,41,41,32,40,40,66,32,
-40,66,32,40,66,32,40,40,83,39,32,66,41,32,95,49,54,56,48,41,
-41,41,41,32,40,40,66,32,40,66,32,40,67,39,32,67,41,41,41,32,
-40,40,40,67,39,32,66,41,32,40,66,39,32,40,40,66,32,67,41,32,
-95,49,54,57,56,41,41,41,32,40,40,40,67,39,32,66,41,32,40,95,
-53,49,48,32,95,50,57,49,41,41,32,95,52,50,56,41,41,41,41,41,
-41,41,32,40,40,66,32,40,66,32,40,66,32,40,40,83,39,32,66,41,
-32,95,49,54,56,49,41,41,41,41,32,40,40,66,32,40,66,32,40,67,
-39,32,67,41,41,41,32,40,40,40,67,39,32,66,41,32,40,66,39,32,
-67,41,41,32,40,95,53,49,48,32,95,50,57,49,41,41,41,41,41,41,
-32,40,40,40,67,39,32,40,83,39,32,40,83,39,32,40,67,39,32,66,
-41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,95,49,
-54,56,50,41,41,41,41,32,40,40,66,32,40,66,32,67,41,41,32,67,
-41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,67,41,32,
-40,67,32,40,40,67,32,95,49,54,56,55,41,32,95,49,50,53,41,41,
-41,41,32,40,40,66,32,95,49,54,54,49,41,32,95,49,54,54,52,41,
-41,41,41,41,32,95,49,54,53,54,41,41,32,40,75,32,40,75,32,40,
-75,32,40,95,50,53,32,34,115,101,112,49,32,66,101,115,105,100,101,34,
-41,41,41,41,41,41,32,40,75,32,40,75,32,40,75,32,40,95,50,53,
-32,34,115,101,112,49,32,65,98,111,118,101,34,41,41,41,41,41,41,41,
-32,95,50,54,41,41,41,32,40,40,65,32,58,49,54,57,56,32,40,40,
-66,32,89,41,32,40,40,40,83,39,32,40,67,39,32,40,83,39,32,40,
-83,39,32,83,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,
-67,39,32,40,67,39,32,40,67,39,32,83,41,41,41,41,41,32,40,40,
-40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,
-83,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,
-32,40,67,39,32,40,67,39,32,83,41,41,41,41,41,32,40,40,40,67,
-39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,83,41,
-41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,67,
-39,32,40,83,39,32,40,83,39,32,67,41,41,41,41,32,40,40,40,67,
-39,32,40,67,39,32,40,67,39,32,67,41,41,41,32,40,40,40,67,39,
-32,40,67,39,32,40,67,39,32,40,67,39,32,83,39,41,41,41,41,32,
-40,40,66,32,40,40,67,39,32,66,41,32,66,41,41,32,40,40,40,67,
-39,32,66,41,32,40,40,66,32,40,83,39,32,95,49,54,55,51,41,41,
-32,40,40,66,32,40,66,32,95,49,54,57,57,41,41,32,40,40,40,83,
-39,32,66,41,32,95,49,54,57,51,41,32,40,40,66,32,40,66,32,95,
-49,54,54,49,41,41,32,40,40,67,32,40,40,67,32,83,39,41,32,95,
-49,54,54,50,41,41,32,95,49,54,54,51,41,41,41,41,41,41,32,40,
-40,40,67,39,32,66,41,32,40,95,49,54,56,56,32,95,49,50,53,41,
-41,32,40,40,66,32,95,49,54,54,49,41,32,95,49,54,54,52,41,41,
-41,41,41,32,75,41,41,32,40,90,32,75,41,41,41,41,32,40,40,66,
-32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,67,41,41,32,67,
-41,41,41,41,32,40,90,32,75,41,41,41,32,73,41,41,32,40,90,32,
-40,90,32,75,41,41,41,41,32,40,90,32,40,90,32,75,41,41,41,41,
-32,95,49,54,57,55,41,41,41,32,40,40,65,32,58,49,54,57,57,32,
-40,40,67,32,40,40,67,32,40,40,67,32,40,40,67,32,40,40,67,32,
-40,40,67,32,40,40,80,32,95,49,54,53,49,41,32,40,75,32,95,49,
-54,53,54,41,41,41,32,40,40,40,67,39,32,66,41,32,95,49,54,56,
-48,41,32,95,49,54,57,57,41,41,41,32,40,40,40,67,39,32,66,41,
-32,95,49,54,56,49,41,32,95,49,54,57,57,41,41,41,32,40,90,32,
-95,49,54,57,57,41,41,41,32,95,49,54,53,54,41,41,32,40,75,32,
-40,75,32,40,75,32,40,95,50,53,32,34,111,110,101,76,105,110,101,114,
-32,66,101,115,105,100,101,34,41,41,41,41,41,41,32,40,75,32,40,75,
-32,40,75,32,40,95,50,53,32,34,111,110,101,76,105,110,101,114,32,65,
-98,111,118,101,34,41,41,41,41,41,41,32,40,40,65,32,58,49,55,48,
-48,32,80,41,32,40,40,65,32,58,49,55,48,49,32,40,85,32,75,41,
-41,32,40,40,65,32,58,49,55,48,50,32,40,85,32,65,41,41,32,40,
-40,65,32,58,49,55,48,51,32,40,40,95,49,55,48,48,32,35,49,48,
-48,41,32,40,40,80,32,40,40,95,53,49,53,32,95,50,57,49,41,32,
-40,95,51,55,51,32,35,51,41,41,41,32,40,40,95,53,49,53,32,95,
-50,57,49,41,32,40,95,51,55,51,32,35,50,41,41,41,41,41,32,40,
-40,65,32,58,49,55,48,52,32,40,95,49,55,48,53,32,95,49,55,48,
-51,41,41,32,40,40,65,32,58,49,55,48,53,32,40,40,67,32,40,40,
-40,83,39,32,95,49,55,48,54,41,32,95,49,55,48,49,41,32,95,49,
-55,48,50,41,41,32,75,41,41,32,40,40,65,32,58,49,55,48,54,32,
-40,40,66,32,40,40,67,39,32,66,41,32,66,41,41,32,40,40,40,83,
-39,32,40,67,39,32,40,67,39,32,66,41,41,41,32,40,40,66,32,40,
-66,32,66,39,41,41,32,40,40,40,83,39,32,40,67,39,32,66,41,41,
-32,40,40,66,32,40,66,32,83,41,41,32,40,40,66,32,67,41,32,95,
-49,55,48,55,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,
-32,67,41,32,95,49,55,48,56,41,41,32,95,49,54,54,49,41,41,41,
-41,32,40,40,66,32,40,67,39,32,40,95,51,56,48,32,95,50,57,50,
-41,41,41,32,40,95,53,49,49,32,95,50,57,49,41,41,41,41,41,32,
-40,40,65,32,58,49,55,48,55,32,40,75,32,40,75,32,40,40,67,32,
-40,40,40,67,39,32,89,41,32,40,40,40,67,39,32,83,41,32,40,40,
-40,67,39,32,40,83,39,32,67,41,41,32,40,40,40,83,39,32,40,67,
-39,32,40,83,39,32,40,83,39,32,67,41,41,41,41,32,40,40,40,67,
-39,32,40,67,39,32,40,67,39,32,66,41,41,41,32,40,40,66,32,40,
-66,32,40,66,32,80,41,41,41,32,40,40,40,67,39,32,40,67,39,32,
-40,67,39,32,40,67,39,32,67,41,41,41,41,32,40,40,40,67,39,32,
-40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,83,41,41,41,
-41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,
-32,40,67,39,32,83,41,41,41,41,41,32,40,40,40,67,39,32,40,67,
-39,32,40,67,39,32,40,67,39,32,67,41,41,41,41,32,40,40,40,67,
-39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,83,39,
-41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,83,39,32,
-40,83,39,32,67,41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,
-40,66,32,40,67,39,32,40,83,39,32,67,41,41,41,32,40,40,40,67,
-39,32,66,41,32,40,66,39,32,80,41,41,32,40,66,32,40,66,32,40,
-95,52,56,50,32,40,40,79,32,35,49,48,41,32,75,41,41,41,41,41,
-41,41,32,40,85,32,40,75,32,75,41,41,41,41,32,40,40,40,67,39,
-32,66,41,32,66,41,32,40,95,53,48,57,32,95,50,57,49,41,41,41,
-41,32,40,90,32,75,41,41,41,32,73,41,41,32,40,90,32,40,90,32,
-75,41,41,41,41,32,40,90,32,40,90,32,75,41,41,41,41,32,40,95,
-50,53,32,34,100,105,115,112,108,97,121,32,108,97,121,34,41,41,41,41,
-32,40,40,66,32,40,40,83,39,32,66,41,32,40,66,39,32,40,40,66,
-32,95,52,56,50,41,32,40,40,67,32,95,52,54,53,41,32,35,51,50,
-41,41,41,41,41,32,40,40,66,32,40,66,32,40,40,83,39,32,66,41,
-32,95,52,56,50,41,41,41,32,40,40,40,67,39,32,66,41,32,66,41,
-32,40,40,40,67,39,32,66,41,32,40,95,53,48,57,32,95,50,57,49,
-41,41,32,95,52,50,56,41,41,41,41,41,41,32,40,40,40,67,39,32,
-40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,41,41,32,40,40,
-40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,
-83,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,
-32,40,67,39,32,40,67,39,32,83,41,41,41,41,41,32,40,40,40,67,
-39,32,40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,41,41,32,
-40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,
-39,32,83,39,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,
-40,83,39,32,40,83,39,32,67,41,41,41,41,32,40,40,40,67,39,32,
-40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,40,83,39,32,67,
-41,41,41,32,40,40,40,67,39,32,66,41,32,40,66,39,32,80,41,41,
-32,40,66,32,40,66,32,40,95,52,56,50,32,40,40,79,32,35,49,48,
-41,32,75,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,40,
-83,39,32,66,41,32,95,52,56,50,41,41,41,32,40,40,40,67,39,32,
-66,41,32,66,41,32,40,40,40,67,39,32,66,41,32,40,95,53,48,57,
-32,95,50,57,49,41,41,32,95,52,50,56,41,41,41,41,41,32,90,41,
-41,32,40,90,32,75,41,41,41,32,73,41,41,32,40,90,32,40,90,32,
-75,41,41,41,41,32,40,90,32,40,90,32,75,41,41,41,41,32,40,95,
-50,53,32,34,100,105,115,112,108,97,121,32,108,97,121,50,34,41,41,41,
-41,32,40,85,32,40,75,32,65,41,41,41,41,32,40,85,32,40,90,32,
-75,41,41,41,41,32,40,90,32,75,41,41,41,32,35,48,41,41,41,41,
-32,40,40,65,32,58,49,55,48,56,32,40,67,32,40,40,40,67,39,32,
-89,41,32,40,40,67,32,40,40,40,67,39,32,83,39,41,32,40,40,66,
-32,67,41,32,40,40,40,83,39,32,40,83,39,32,40,83,39,32,80,41,
-41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,
-32,67,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,
-32,40,67,39,32,67,41,41,41,41,32,40,40,40,67,39,32,40,67,39,
-32,40,67,39,32,40,67,39,32,40,67,39,32,83,39,41,41,41,41,41,
-32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,67,
-41,41,41,41,32,40,40,66,32,40,40,83,39,32,40,67,39,32,40,83,
-39,32,67,41,41,41,32,40,40,40,83,39,32,40,67,39,32,40,83,39,
-32,67,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,
-83,39,32,67,41,41,32,40,40,66,32,40,66,32,40,80,32,95,49,54,
-53,49,41,41,41,32,40,66,32,40,66,32,95,49,54,55,57,41,41,41,
-41,41,32,40,40,66,32,40,66,32,40,40,83,39,32,66,41,32,95,49,
-54,56,48,41,41,41,32,40,40,67,32,40,67,39,32,66,41,41,32,95,
-52,50,56,41,41,41,41,32,40,40,66,32,40,66,32,40,40,83,39,32,
-66,41,32,95,49,54,56,49,41,41,41,32,40,40,40,67,39,32,66,41,
-32,66,41,32,40,95,53,49,48,32,95,50,57,49,41,41,41,41,41,41,
-32,40,40,40,67,39,32,40,83,39,32,40,83,39,32,40,67,39,32,66,
-41,41,41,41,32,40,40,66,32,40,83,39,32,66,41,41,32,40,67,32,
-95,49,55,48,57,41,41,41,32,73,41,41,41,32,95,49,54,53,54,41,
-41,32,40,90,32,40,90,32,75,41,41,41,41,32,40,90,32,40,90,32,
-75,41,41,41,41,32,40,95,50,53,32,34,98,101,115,116,32,103,101,116,
-34,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,
-67,39,32,40,67,39,32,67,41,41,41,41,41,32,40,40,40,67,39,32,
-40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,41,
-41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,
-32,40,67,39,32,40,67,39,32,83,39,41,41,41,41,41,41,32,40,40,
-40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,
-67,41,41,41,41,41,32,40,40,66,32,40,40,67,39,32,40,83,39,32,
-40,83,39,32,40,83,39,32,67,41,41,41,41,32,40,40,40,67,39,32,
-40,83,39,32,40,83,39,32,40,83,39,32,67,41,41,41,41,32,40,40,
-40,67,39,32,66,41,32,40,40,66,32,40,83,39,32,40,83,39,32,67,
-41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,80,32,95,49,54,
-53,49,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,
-95,49,54,55,57,41,41,41,41,32,40,40,40,67,39,32,66,41,32,66,
-41,32,40,95,53,49,48,32,95,50,57,49,41,41,41,41,41,41,32,40,
-40,66,32,40,66,32,40,66,32,40,40,83,39,32,66,41,32,95,49,54,
-56,48,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,
-32,66,39,41,32,40,40,40,67,39,32,66,41,32,40,95,53,48,57,32,
-95,50,57,49,41,41,32,95,52,50,56,41,41,41,41,41,32,40,66,32,
-90,41,41,41,41,32,40,40,40,67,39,32,40,83,39,32,40,83,39,32,
-40,83,39,32,40,67,39,32,66,41,41,41,41,41,32,40,40,66,32,40,
-83,39,32,40,83,39,32,66,41,41,41,32,40,67,32,95,49,55,49,48,
-41,41,41,32,73,41,41,41,32,95,49,54,53,54,41,41,32,40,90,32,
-40,90,32,75,41,41,41,41,32,40,90,32,40,90,32,75,41,41,41,41,
-32,40,95,50,53,32,34,98,101,115,116,32,103,101,116,49,34,41,41,41,
-41,41,32,40,85,32,65,41,41,41,32,40,85,32,75,41,41,41,32,75,
-41,41,41,32,40,40,65,32,58,49,55,48,57,32,40,40,40,67,39,32,
-67,41,32,95,49,55,49,48,41,32,35,48,41,41,32,40,40,65,32,58,
-49,55,49,48,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,
-83,39,32,67,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,95,
-49,55,49,49,41,41,41,32,40,40,66,32,40,66,32,40,95,53,49,48,
-32,95,50,57,49,41,41,41,32,40,40,40,83,39,32,67,41,32,40,40,
-40,67,39,32,83,41,32,40,95,53,50,55,32,95,50,57,54,41,41,32,
-73,41,41,32,73,41,41,41,41,32,73,41,41,32,40,40,65,32,58,49,
-55,49,49,32,40,40,67,32,40,40,40,83,39,32,67,39,41,32,40,40,
-67,32,40,95,53,50,55,32,95,50,57,54,41,41,32,35,48,41,41,32,
-40,40,40,67,39,32,67,41,32,40,40,40,67,39,32,40,67,39,32,83,
-41,41,32,40,40,40,67,39,32,40,67,39,32,83,41,41,32,40,40,40,
-67,39,32,40,67,39,32,67,41,41,32,40,40,40,67,39,32,67,41,32,
-40,40,40,67,39,32,40,67,39,32,83,39,41,41,32,40,40,66,32,40,
-67,32,40,40,80,32,95,49,50,54,41,32,40,75,32,95,49,50,54,41,
-41,41,41,32,40,40,66,32,40,66,32,95,49,55,49,49,41,41,32,40,
-40,40,67,39,32,66,41,32,40,95,53,49,48,32,95,50,57,49,41,41,
-32,95,52,50,56,41,41,41,41,32,40,90,32,75,41,41,41,32,40,90,
-32,75,41,41,41,32,95,49,50,53,41,41,32,40,90,32,40,90,32,75,
-41,41,41,41,32,40,90,32,40,90,32,75,41,41,41,41,32,40,95,50,
-53,32,34,102,105,116,115,34,41,41,41,41,32,95,49,50,53,41,41,32,
-40,40,65,32,58,49,55,49,50,32,40,40,66,32,40,66,32,67,41,41,
-32,80,41,41,32,40,40,65,32,58,49,55,49,51,32,40,85,32,40,90,
-32,75,41,41,41,32,40,40,65,32,58,49,55,49,52,32,40,85,32,40,
-75,32,75,41,41,41,32,40,40,65,32,58,49,55,49,53,32,40,85,32,
-40,75,32,65,41,41,41,32,40,40,65,32,58,49,55,49,54,32,40,90,
-32,40,40,66,32,40,66,32,95,52,56,50,41,41,32,95,49,55,49,52,
-41,41,41,32,40,40,65,32,58,49,55,49,55,32,40,40,40,67,39,32,
-67,41,32,40,40,67,32,95,49,55,49,51,41,32,35,48,41,41,32,75,
-41,41,32,40,40,65,32,58,49,55,49,56,32,40,40,66,32,95,49,55,
-50,51,41,32,95,49,55,49,57,41,41,32,40,40,65,32,58,49,55,49,
-57,32,40,40,67,32,95,49,55,49,51,41,32,35,48,41,41,32,40,40,
-65,32,58,49,55,50,48,32,95,52,56,49,41,32,40,40,65,32,58,49,
-55,50,49,32,95,52,56,50,41,32,40,40,65,32,58,49,55,50,50,32,
-40,40,67,32,83,41,32,40,40,66,32,40,66,32,40,95,52,56,49,32,
-35,52,48,41,41,41,32,40,40,67,32,66,41,32,40,95,52,56,49,32,
-35,52,49,41,41,41,41,41,32,40,40,65,32,58,49,55,50,51,32,40,
-40,66,32,40,67,32,40,40,67,32,83,39,41,32,40,40,66,32,40,95,
-52,56,49,32,35,57,49,41,41,32,40,95,52,56,49,32,35,57,51,41,
-41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,95,
-52,56,49,32,35,57,49,41,41,41,41,41,32,40,40,40,83,39,32,66,
-41,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,89,41,41,
-32,40,40,66,32,40,40,67,39,32,66,41,32,40,40,66,32,80,41,32,
-40,95,52,56,49,32,35,57,51,41,41,41,41,32,40,40,66,32,40,66,
-32,40,66,32,40,66,32,40,95,52,56,49,32,35,52,52,41,41,41,41,
-41,32,40,67,39,32,66,41,41,41,41,41,41,41,41,32,40,40,65,32,
-58,49,55,50,52,32,35,49,48,41,32,40,40,65,32,58,49,55,50,53,
-32,35,49,49,41,32,40,40,65,32,58,49,55,50,54,32,40,40,67,32,
-40,40,83,32,40,40,40,83,39,32,83,39,41,32,40,40,40,67,39,32,
-40,95,50,49,49,32,95,49,51,50,41,41,32,95,52,52,55,41,32,35,
-52,53,41,41,32,85,41,41,32,40,40,66,32,40,66,32,40,40,95,53,
-49,48,32,95,50,57,49,41,32,35,48,41,41,41,32,40,40,66,32,85,
-41,32,95,52,52,56,41,41,41,41,32,40,40,95,52,49,54,32,40,40,
-40,67,39,32,40,67,39,32,40,95,53,49,48,32,95,50,57,49,41,41,
-41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,95,53,48,57,
-32,95,50,57,49,41,41,32,40,40,67,32,40,95,53,49,49,32,95,50,
-57,49,41,41,32,35,49,48,41,41,41,32,95,49,51,56,41,41,32,40,
-95,49,51,56,32,35,52,56,41,41,41,32,35,48,41,41,41,32,40,40,
-65,32,58,49,55,50,55,32,95,49,52,55,48,41,32,40,40,65,32,58,
-49,55,50,56,32,40,40,40,67,39,32,67,41,32,40,40,66,32,95,49,
-55,50,51,41,32,40,66,32,95,52,56,50,41,41,41,32,75,41,41,32,
-40,40,65,32,58,49,55,50,57,32,40,40,66,32,40,66,32,85,41,41,
-32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,95,52,56,50,32,
-40,40,79,32,35,52,48,41,32,75,41,41,41,41,41,41,32,40,40,40,
-67,39,32,66,41,32,40,40,66,32,40,67,39,32,66,41,41,32,40,66,
-32,95,52,56,50,41,41,41,32,40,40,66,32,40,66,32,40,95,52,56,
-50,32,40,40,79,32,35,52,52,41,32,75,41,41,41,41,32,40,40,67,
-32,40,67,39,32,95,52,56,50,41,41,32,40,40,79,32,35,52,49,41,
-32,75,41,41,41,41,41,41,41,32,40,40,65,32,58,49,55,51,48,32,
-40,40,83,32,40,85,32,95,52,56,48,41,41,32,40,90,32,40,90,32,
-40,40,67,32,40,95,52,52,53,32,40,40,95,50,55,50,32,95,49,50,
-51,41,32,40,40,67,32,40,95,50,49,49,32,95,49,51,50,41,41,32,
-35,49,48,41,41,41,41,32,40,40,40,83,39,32,80,41,32,40,40,67,
-32,79,41,32,75,41,41,32,40,90,32,40,40,40,67,39,32,66,41,32,
-95,52,56,49,41,32,95,49,55,51,48,41,41,41,41,41,41,41,41,32,
-40,40,65,32,58,49,55,51,49,32,40,95,52,49,49,32,40,40,67,32,
-95,52,56,50,41,32,40,40,79,32,35,49,48,41,32,75,41,41,41,41,
-32,40,40,65,32,58,49,55,51,50,32,40,40,66,32,40,40,83,32,40,
-85,32,95,52,56,48,41,41,32,40,90,32,40,90,32,40,40,66,32,40,
-40,40,83,39,32,95,52,56,49,41,32,40,85,32,75,41,41,32,40,40,
-66,32,95,49,55,51,50,41,32,40,85,32,65,41,41,41,41,32,40,95,
-52,52,53,32,40,40,95,50,55,50,32,95,49,50,51,41,32,95,49,52,
-54,41,41,41,41,41,41,41,32,40,95,52,52,52,32,95,49,52,54,41,
-41,41,32,40,40,65,32,58,49,55,51,51,32,40,95,52,53,48,32,40,
-40,79,32,35,51,50,41,32,75,41,41,41,32,40,40,65,32,58,49,55,
-51,52,32,40,40,40,67,39,32,40,83,39,32,95,52,56,50,41,41,32,
-40,40,40,67,39,32,40,67,39,32,95,52,54,53,41,41,32,40,40,40,
-67,39,32,66,41,32,40,95,53,49,48,32,95,50,57,49,41,41,32,95,
-52,50,56,41,41,32,35,51,50,41,41,32,73,41,41,32,40,40,65,32,
-58,49,55,51,53,32,40,40,80,32,95,49,52,53,48,41,32,40,40,40,
-67,39,32,66,41,32,95,49,53,48,56,41,32,95,49,55,51,53,41,41,
-41,32,40,40,65,32,58,49,55,51,54,32,40,40,83,32,40,85,32,40,
-40,40,110,111,77,97,116,99,104,32,34,46,47,108,105,98,47,84,101,120,
-116,47,83,116,114,105,110,103,46,104,115,34,41,32,35,54,54,41,32,35,
-49,41,41,41,32,40,40,40,67,39,32,40,67,39,32,67,41,41,32,40,
-40,40,67,39,32,40,67,39,32,40,67,39,32,66,41,41,41,32,40,40,
-40,67,39,32,40,67,39,32,40,67,39,32,66,41,41,41,32,40,40,40,
-67,39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,40,67,39,32,
-83,39,41,32,40,40,67,32,40,95,50,49,49,32,95,49,51,50,41,41,
-32,35,52,53,41,41,41,32,85,41,41,32,40,40,66,32,40,66,32,40,
-95,50,55,48,32,40,95,53,49,50,32,40,95,53,52,57,32,95,51,50,
-51,41,41,41,41,41,32,85,41,41,41,32,40,40,66,32,40,67,32,40,
-95,52,52,53,32,95,49,52,50,41,41,41,32,40,40,40,67,39,32,66,
-41,32,40,40,66,32,67,41,32,40,40,40,83,39,32,83,41,32,40,40,
-66,32,40,40,67,39,32,83,39,41,32,83,41,41,32,40,40,66,32,40,
-66,32,40,40,67,39,32,40,67,39,32,66,41,41,32,40,67,32,40,40,
-67,32,61,61,41,32,35,52,54,41,41,41,41,41,32,40,40,66,32,40,
-66,32,40,67,32,40,95,52,52,53,32,95,49,52,50,41,41,41,41,32,
-40,40,40,67,39,32,66,41,32,40,66,39,32,40,40,66,32,67,41,32,
-40,40,40,67,39,32,67,41,32,40,40,66,32,40,40,67,39,32,83,39,
-41,32,83,41,41,32,40,66,32,40,40,67,39,32,40,67,39,32,66,41,
-41,32,40,67,32,40,40,40,67,39,32,40,95,50,49,49,32,95,49,51,
-50,41,41,32,95,49,52,56,41,32,35,49,48,49,41,41,41,41,41,41,
-32,73,41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,95,53,48,
-57,32,40,95,53,52,57,32,95,51,50,51,41,41,41,32,40,40,40,83,
-39,32,40,95,53,49,49,32,40,95,53,52,57,32,95,51,50,51,41,41,
-41,32,40,40,66,32,40,95,53,54,50,32,95,51,50,52,41,41,32,95,
-51,53,57,41,41,32,40,40,66,32,40,40,95,50,54,57,32,40,40,67,
-32,40,40,80,32,40,95,53,53,48,32,40,40,80,32,95,51,50,51,41,
-32,95,51,50,48,41,41,41,32,95,50,57,50,41,41,32,95,50,57,54,
-41,41,32,40,40,95,53,49,53,32,40,95,53,52,57,32,95,51,50,51,
-41,41,32,40,95,51,55,51,32,35,49,48,41,41,41,41,32,40,40,66,
-32,40,95,50,55,48,32,40,95,53,49,50,32,95,50,57,49,41,41,41,
-32,95,52,50,56,41,41,41,41,41,41,41,41,41,32,40,40,40,67,39,
-32,67,41,32,40,40,66,32,40,40,67,39,32,83,39,41,32,83,41,41,
-32,40,66,32,40,40,67,39,32,40,67,39,32,66,41,41,32,40,67,32,
-40,40,40,67,39,32,40,95,50,49,49,32,95,49,51,50,41,41,32,95,
-49,52,56,41,32,35,49,48,49,41,41,41,41,41,41,32,73,41,41,41,
-41,32,40,40,66,32,40,95,53,54,50,32,95,51,50,52,41,41,32,95,
-51,53,57,41,41,41,41,41,32,40,40,40,83,39,32,40,83,39,32,83,
-41,41,32,40,40,66,32,40,66,32,40,67,32,83,41,41,41,32,40,40,
-66,32,40,66,32,40,40,67,39,32,40,67,39,32,66,41,41,32,40,67,
-32,40,40,67,32,61,61,41,32,35,52,51,41,41,41,41,41,32,40,40,
-67,39,32,66,41,32,40,95,53,49,49,32,40,95,53,52,57,32,95,51,
-50,51,41,41,41,41,41,41,32,40,40,40,83,39,32,40,83,39,32,83,
-41,41,32,40,40,66,32,40,66,32,40,67,32,83,41,41,41,32,40,40,
-66,32,40,66,32,40,40,67,39,32,40,67,39,32,66,41,41,32,40,67,
-32,40,40,67,32,61,61,41,32,35,52,53,41,41,41,41,41,32,40,40,
-67,39,32,66,41,32,40,95,50,54,51,32,40,95,53,53,48,32,40,40,
-80,32,95,51,50,51,41,32,95,51,50,48,41,41,41,41,41,41,41,32,
-40,40,67,39,32,66,41,32,40,95,53,49,49,32,40,95,53,52,57,32,
-95,51,50,51,41,41,41,41,41,41,41,32,40,40,66,32,40,40,95,51,
-57,56,32,40,40,67,32,40,40,80,32,40,95,53,52,57,32,95,51,50,
-51,41,41,32,95,51,50,51,41,41,32,95,51,50,48,41,41,32,40,40,
-95,53,49,53,32,40,95,53,52,57,32,95,51,50,51,41,41,32,40,95,
-51,55,51,32,35,49,48,41,41,41,41,32,95,51,53,57,41,41,41,41,
-32,40,40,65,32,58,49,55,51,55,32,95,49,53,49,51,41,32,95,49,
-48,55,49,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
-41,
-};
-unsigned char *combexpr = data;
-int combexprlen = 300441;
+118,54,46,48,10,49,56,54,54,10,40,40,65,32,58,48,32,40,40,66,
+32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,32,40,40,66,32,
+40,66,32,40,66,32,67,41,41,41,32,40,40,66,32,40,66,32,67,41,
+41,32,80,41,41,41,41,32,40,40,65,32,58,49,32,40,85,32,40,90,
+32,40,90,32,40,90,32,75,41,41,41,41,41,32,40,40,65,32,58,50,
+32,40,85,32,40,75,32,40,90,32,40,90,32,75,41,41,41,41,41,32,
+40,40,65,32,58,51,32,40,85,32,40,75,50,32,40,90,32,75,41,41,
+41,41,32,40,40,65,32,58,52,32,40,85,32,40,75,51,32,75,41,41,
+41,32,40,40,65,32,58,53,32,40,85,32,40,75,51,32,65,41,41,41,
+32,40,40,65,32,58,54,32,40,75,32,40,110,111,68,101,102,97,117,108,
+116,32,34,65,108,116,101,114,110,97,116,105,118,101,46,101,109,112,116,121,
+34,41,41,41,32,40,40,65,32,58,55,32,40,75,32,40,110,111,68,101,
+102,97,117,108,116,32,34,65,108,116,101,114,110,97,116,105,118,101,46,60,
+124,62,34,41,41,41,32,40,40,65,32,58,56,32,40,40,83,32,40,40,
+40,83,39,32,83,39,41,32,40,40,66,32,95,49,53,41,32,95,49,41,
+41,32,40,40,40,67,39,32,95,50,57,56,41,32,40,40,66,32,95,49,
+51,41,32,95,49,41,41,32,95,53,48,51,41,41,41,32,95,53,41,41,
+32,40,40,65,32,58,57,32,40,40,83,32,40,40,40,83,39,32,67,39,
+41,32,95,51,41,32,95,52,41,41,32,40,40,40,67,39,32,95,49,52,
+41,32,95,49,41,32,95,53,48,50,41,41,41,32,40,40,65,32,58,49,
+48,32,40,40,40,83,39,32,80,41,32,95,50,41,32,40,40,40,67,39,
+32,95,49,52,41,32,95,49,41,32,95,49,53,54,56,41,41,41,32,40,
+40,65,32,58,49,49,32,40,40,66,32,89,41,32,40,40,40,83,39,32,
+66,41,32,40,40,66,32,80,41,32,95,50,41,41,32,40,40,66,32,40,
+67,39,32,66,41,41,32,95,51,41,41,41,41,32,40,40,65,32,58,49,
+50,32,40,40,66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,
+32,40,40,66,32,40,66,32,40,66,32,67,41,41,41,32,40,40,66,32,
+40,66,32,67,41,41,32,80,41,41,41,41,32,40,40,65,32,58,49,51,
+32,40,85,32,40,90,32,40,90,32,40,90,32,75,41,41,41,41,41,32,
+40,40,65,32,58,49,52,32,40,85,32,40,75,32,40,90,32,40,90,32,
+75,41,41,41,41,41,32,40,40,65,32,58,49,53,32,40,85,32,40,75,
+50,32,40,90,32,75,41,41,41,41,32,40,40,65,32,58,49,54,32,40,
+85,32,40,75,51,32,75,41,41,41,32,40,40,65,32,58,49,55,32,40,
+85,32,40,75,51,32,65,41,41,41,32,40,40,65,32,58,49,56,32,40,
+75,32,40,110,111,68,101,102,97,117,108,116,32,34,65,112,112,108,105,99,
+97,116,105,118,101,46,112,117,114,101,34,41,41,41,32,40,40,65,32,58,
+49,57,32,40,75,32,40,110,111,68,101,102,97,117,108,116,32,34,65,112,
+112,108,105,99,97,116,105,118,101,46,60,42,62,34,41,41,41,32,40,40,
+65,32,58,50,48,32,40,40,40,83,39,32,66,41,32,95,49,53,41,32,
+40,40,40,67,39,32,95,50,57,53,41,32,95,49,51,41,32,95,50,56,
+53,41,41,41,32,40,40,65,32,58,50,49,32,40,40,40,83,39,32,66,
+41,32,95,49,53,41,32,40,40,40,67,39,32,95,50,57,56,41,32,95,
+49,51,41,32,95,50,56,54,41,41,41,32,40,40,65,32,58,50,50,32,
+40,40,40,83,39,32,66,41,32,40,66,39,32,95,49,53,41,41,32,40,
+40,66,32,95,50,57,56,41,32,95,49,51,41,41,41,32,40,40,65,32,
+58,50,51,32,40,40,40,83,39,32,66,41,32,40,66,39,32,40,66,39,
+32,95,49,53,41,41,41,32,40,40,40,83,39,32,66,41,32,40,66,39,
+32,95,49,53,41,41,32,40,40,66,32,95,50,57,56,41,32,95,49,51,
+41,41,41,41,32,40,40,65,32,58,50,52,32,95,49,54,52,48,41,32,
+40,40,65,32,58,50,53,32,40,40,66,32,95,50,57,50,41,32,95,50,
+52,41,41,32,40,40,65,32,58,50,54,32,40,40,40,83,39,32,95,50,
+57,50,41,32,95,50,52,41,32,73,41,41,32,40,40,65,32,58,50,55,
+32,95,49,54,50,52,41,32,40,40,65,32,58,50,56,32,40,95,50,55,
+32,34,117,110,100,101,102,105,110,101,100,34,41,41,32,40,40,65,32,58,
+50,57,32,73,41,32,40,40,65,32,58,51,48,32,40,40,40,67,39,32,
+66,41,32,95,49,54,51,57,41,32,40,40,67,32,95,50,56,52,41,32,
+95,50,57,41,41,41,32,40,40,65,32,58,51,49,32,40,40,40,67,39,
+32,95,51,48,41,32,40,40,95,50,57,52,32,95,49,54,57,53,41,32,
+95,49,57,51,41,41,32,40,40,95,50,56,52,32,40,95,51,55,32,95,
+49,54,57,55,41,41,32,95,49,57,50,41,41,41,32,40,40,65,32,58,
+51,50,32,40,40,66,32,40,40,83,32,95,50,57,50,41,32,40,95,51,
+55,32,95,49,54,57,55,41,41,41,32,95,50,55,41,41,32,40,40,65,
+32,58,51,51,32,40,40,66,32,40,66,32,40,66,32,67,41,41,41,32,
+40,40,66,32,40,66,32,67,41,41,32,80,41,41,41,32,40,40,65,32,
+58,51,52,32,40,85,32,40,90,32,40,90,32,75,41,41,41,41,32,40,
+40,65,32,58,51,53,32,40,85,32,40,75,32,40,90,32,75,41,41,41,
+41,32,40,40,65,32,58,51,54,32,40,85,32,40,75,50,32,75,41,41,
+41,32,40,40,65,32,58,51,55,32,40,85,32,40,75,50,32,65,41,41,
+41,32,40,40,65,32,58,51,56,32,40,75,32,40,110,111,68,101,102,97,
+117,108,116,32,34,77,111,110,97,100,46,62,62,61,34,41,41,41,32,40,
+40,65,32,58,51,57,32,40,40,40,67,39,32,40,67,39,32,66,41,41,
+32,95,51,53,41,32,75,41,41,32,40,40,65,32,58,52,48,32,40,40,
+66,32,95,49,52,41,32,95,51,52,41,41,32,40,40,65,32,58,52,49,
+32,40,40,40,83,39,32,40,67,39,32,66,41,41,32,95,51,53,41,32,
+40,40,40,83,39,32,40,67,39,32,66,41,41,32,95,51,53,41,32,40,
+66,39,32,95,51,55,41,41,41,41,32,40,40,65,32,58,52,50,32,80,
+41,32,40,40,65,32,58,52,51,32,40,85,32,75,41,41,32,40,40,65,
+32,58,52,52,32,40,85,32,65,41,41,32,40,40,65,32,58,52,53,32,
+40,75,32,95,50,55,41,41,32,40,40,65,32,58,52,54,32,40,40,66,
+32,40,66,32,89,41,41,32,40,40,40,83,39,32,66,41,32,40,66,39,
+32,40,40,66,32,80,41,32,40,40,67,32,95,51,55,41,32,95,53,48,
+50,41,41,41,41,32,40,40,40,83,39,32,40,67,39,32,66,41,41,32,
+40,40,66,32,40,66,32,40,67,39,32,66,41,41,41,32,40,66,39,32,
+95,51,53,41,41,41,32,40,40,40,83,39,32,40,67,39,32,40,67,39,
+32,66,41,41,41,32,40,66,39,32,95,51,53,41,41,32,40,40,40,67,
+39,32,66,41,32,40,66,39,32,95,51,55,41,41,32,95,53,48,51,41,
+41,41,41,41,41,32,40,40,65,32,58,52,55,32,40,40,66,32,40,66,
+32,89,41,41,32,40,40,40,83,39,32,66,41,32,40,66,39,32,40,40,
+66,32,80,41,32,40,40,67,32,95,51,55,41,32,95,49,53,54,56,41,
+41,41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,
+66,32,40,66,32,40,67,39,32,66,41,41,41,32,40,66,39,32,95,51,
+53,41,41,41,32,90,41,41,41,41,32,40,40,65,32,58,52,56,32,40,
+40,66,32,85,41,32,40,40,67,32,95,51,55,41,32,95,49,53,54,56,
+41,41,41,32,40,40,65,32,58,52,57,32,40,40,67,32,95,52,54,41,
+32,95,50,56,53,41,41,32,40,40,65,32,58,53,48,32,40,40,67,32,
+95,52,55,41,32,95,50,56,53,41,41,32,40,40,65,32,58,53,49,32,
+40,40,66,32,95,50,56,55,41,32,95,51,53,41,41,32,40,40,65,32,
+58,53,50,32,40,40,66,32,67,41,32,40,40,66,32,67,39,41,32,95,
+51,53,41,41,41,32,40,40,65,32,58,53,51,32,40,40,66,32,95,50,
+56,55,41,32,95,53,50,41,41,32,40,40,65,32,58,53,52,32,40,40,
+66,32,89,41,32,40,40,40,83,39,32,66,41,32,40,66,39,32,40,40,
+66,32,80,41,32,40,40,67,32,95,51,55,41,32,95,53,48,50,41,41,
+41,41,32,40,40,40,83,39,32,66,41,32,40,40,66,32,40,83,39,32,
+40,83,39,32,66,41,41,41,32,40,66,39,32,95,51,53,41,41,41,32,
+40,40,40,83,39,32,40,67,39,32,40,67,39,32,66,41,41,41,32,40,
+40,66,32,40,66,32,40,66,32,40,67,39,32,66,41,41,41,41,32,40,
+66,39,32,40,66,39,32,95,51,53,41,41,41,41,32,40,40,40,67,39,
+32,66,41,32,40,66,39,32,40,66,39,32,40,40,66,32,95,50,56,50,
+41,32,95,51,55,41,41,41,41,32,40,40,66,32,40,67,32,83,41,41,
+32,95,53,48,51,41,41,41,41,41,41,41,32,40,40,65,32,58,53,53,
+32,40,40,66,32,89,41,32,40,40,40,83,39,32,66,41,32,40,66,39,
+32,40,40,66,32,80,41,32,40,40,67,32,95,51,55,41,32,40,40,80,
+32,95,53,48,50,41,32,95,53,48,50,41,41,41,41,41,32,40,40,40,
+83,39,32,66,41,32,40,40,66,32,40,83,39,32,40,83,39,32,66,41,
+41,41,32,40,66,39,32,95,51,53,41,41,41,32,40,40,40,83,39,32,
+40,67,39,32,40,67,39,32,66,41,41,41,32,40,40,66,32,40,66,32,
+40,66,32,40,67,39,32,66,41,41,41,41,32,40,66,39,32,40,66,39,
+32,95,51,53,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,85,
+41,41,41,32,40,40,40,67,39,32,66,41,32,40,66,39,32,40,66,39,
+32,40,66,39,32,40,40,66,32,95,50,56,50,41,32,95,51,55,41,41,
+41,41,41,32,40,40,40,83,39,32,67,41,32,40,40,66,32,40,40,67,
+39,32,83,39,41,32,83,39,41,41,32,40,40,66,32,40,40,67,39,32,
+66,41,32,80,41,41,32,95,53,48,51,41,41,41,32,40,40,66,32,40,
+66,32,80,41,41,32,95,53,48,51,41,41,41,41,41,41,41,41,41,32,
+40,40,65,32,58,53,54,32,40,40,95,50,57,51,32,95,50,56,52,41,
+32,40,95,50,57,55,32,95,53,54,41,41,41,32,40,40,65,32,58,53,
+55,32,40,40,40,40,40,95,49,50,32,95,53,54,41,32,95,50,56,54,
+41,32,83,41,32,40,95,50,48,32,95,53,55,41,41,32,40,95,50,49,
+32,95,53,55,41,41,41,32,40,40,65,32,58,53,56,32,40,40,40,40,
+95,51,51,32,95,53,55,41,32,40,40,40,67,39,32,67,41,32,40,67,
+32,83,39,41,41,32,73,41,41,32,40,95,51,57,32,95,53,56,41,41,
+32,40,95,52,48,32,95,53,56,41,41,41,32,40,40,65,32,58,53,57,
+32,40,40,66,32,40,66,32,67,41,41,32,80,41,41,32,40,40,65,32,
+58,54,48,32,40,85,32,40,90,32,75,41,41,41,32,40,40,65,32,58,
+54,49,32,40,85,32,40,75,32,75,41,41,41,32,40,40,65,32,58,54,
+50,32,40,85,32,40,75,32,65,41,41,41,32,40,40,65,32,58,54,51,
+32,40,75,32,40,110,111,68,101,102,97,117,108,116,32,34,77,111,110,97,
+100,80,108,117,115,46,109,122,101,114,111,34,41,41,41,32,40,40,65,32,
+58,54,52,32,40,75,32,40,110,111,68,101,102,97,117,108,116,32,34,77,
+111,110,97,100,80,108,117,115,46,109,112,108,117,115,34,41,41,41,32,40,
+40,65,32,58,54,53,32,85,41,32,40,40,65,32,58,54,54,32,40,40,
+95,50,57,51,32,40,40,66,32,40,66,32,40,95,50,56,50,32,95,54,
+53,41,41,41,32,40,40,66,32,40,40,67,39,32,67,41,32,95,54,57,
+41,41,32,40,66,32,80,41,41,41,41,32,40,95,50,57,55,32,95,54,
+54,41,41,41,32,40,40,65,32,58,54,55,32,40,40,40,40,40,95,49,
+50,32,95,54,54,41,32,40,40,66,32,40,95,50,56,50,32,95,54,53,
+41,41,32,80,41,41,32,40,95,52,49,32,95,54,56,41,41,32,40,40,
+66,32,40,66,32,40,95,50,56,50,32,95,54,53,41,41,41,32,40,40,
+40,67,39,32,66,41,32,40,40,66,32,67,41,32,95,54,57,41,41,32,
+40,90,32,95,54,57,41,41,41,41,32,40,95,50,49,32,95,54,55,41,
+41,41,32,40,40,65,32,58,54,56,32,40,40,40,40,95,51,51,32,95,
+54,55,41,32,40,40,66,32,40,66,32,40,95,50,56,50,32,95,54,53,
+41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,67,41,32,
+95,54,57,41,41,32,40,66,32,95,54,57,41,41,41,41,32,40,95,49,
+54,32,95,54,55,41,41,32,40,95,49,52,32,95,54,55,41,41,41,32,
+40,40,65,32,58,54,57,32,40,85,32,73,41,41,32,40,40,65,32,58,
+55,48,32,40,40,66,32,40,95,50,56,52,32,95,54,54,52,41,41,32,
+95,54,57,41,41,32,40,40,65,32,58,55,49,32,40,40,66,32,40,95,
+50,56,50,32,95,54,53,41,41,32,40,66,32,40,80,32,95,49,53,54,
+56,41,41,41,41,32,40,40,65,32,58,55,50,32,40,40,66,32,40,95,
+50,56,50,32,95,54,53,41,41,32,40,90,32,40,80,32,95,49,53,54,
+56,41,41,41,41,32,40,40,65,32,58,55,51,32,40,40,95,50,56,50,
+32,95,54,53,41,32,40,40,83,32,80,41,32,73,41,41,41,32,40,40,
+65,32,58,55,52,32,40,40,66,32,40,95,50,56,50,32,95,54,53,41,
+41,32,40,40,67,32,40,83,39,32,80,41,41,32,73,41,41,41,32,40,
+40,65,32,58,55,53,32,40,40,66,32,40,66,32,40,66,32,40,66,32,
+40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
+32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
+66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,
+32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
+66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
+40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,66,
+32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
+66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
+40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,
+40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
+32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
+66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,
+32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
+66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
+40,66,32,67,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
+32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
+66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,
+66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
+40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,
+66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
+40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,
+32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
+66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,41,41,41,41,
+41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,
+66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
+40,66,32,67,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,66,
+32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
+66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,41,41,41,41,
+41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
+40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,
+41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,
+40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,
+41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,
+66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,41,41,41,41,
+32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
+40,66,32,67,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,
+66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,41,41,32,40,
+40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,
+41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,
+32,40,40,66,32,40,66,32,40,66,32,67,41,41,41,32,40,40,66,32,
+40,66,32,67,41,41,32,80,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,55,54,32,40,85,
+32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,
+90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,
+40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,
+32,75,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,32,40,40,65,32,58,55,55,32,40,85,32,40,75,32,40,
+90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,
+40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,
+32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,75,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,
+40,40,65,32,58,55,56,32,40,85,32,40,75,50,32,40,90,32,40,90,
+32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,
+90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,
+40,90,32,40,90,32,40,90,32,75,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,55,57,32,
+40,85,32,40,75,51,32,40,90,32,40,90,32,40,90,32,40,90,32,40,
+90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,
+40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,75,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,
+40,40,65,32,58,56,48,32,40,85,32,40,75,52,32,40,90,32,40,90,
+32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,
+90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,
+40,90,32,75,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,32,40,40,65,32,58,56,49,32,40,85,32,40,75,32,40,75,
+52,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,
+40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,
+32,40,90,32,40,90,32,75,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,32,40,40,65,32,58,56,50,32,40,85,32,40,
+75,50,32,40,75,52,32,40,90,32,40,90,32,40,90,32,40,90,32,40,
+90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,
+40,90,32,40,90,32,40,90,32,75,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,32,40,40,65,32,58,56,51,32,40,85,32,
+40,75,51,32,40,75,52,32,40,90,32,40,90,32,40,90,32,40,90,32,
+40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,
+32,40,90,32,40,90,32,75,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,32,40,40,65,32,58,56,52,32,40,85,32,40,75,52,
+32,40,75,52,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,
+40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,
+32,75,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,
+40,65,32,58,56,53,32,40,85,32,40,75,32,40,75,52,32,40,75,52,
+32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,
+90,32,40,90,32,40,90,32,40,90,32,40,90,32,75,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,56,54,32,
+40,85,32,40,75,50,32,40,75,52,32,40,75,52,32,40,90,32,40,90,
+32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,
+90,32,40,90,32,75,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,32,40,40,65,32,58,56,55,32,40,85,32,40,75,51,32,40,75,52,
+32,40,75,52,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,
+40,90,32,40,90,32,40,90,32,40,90,32,75,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,32,40,40,65,32,58,56,56,32,40,85,32,40,
+75,52,32,40,75,52,32,40,75,52,32,40,90,32,40,90,32,40,90,32,
+40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,75,41,41,41,41,
+41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,56,57,32,40,85,
+32,40,75,32,40,75,52,32,40,75,52,32,40,75,52,32,40,90,32,40,
+90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,75,41,41,
+41,41,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,57,48,32,
+40,85,32,40,75,50,32,40,75,52,32,40,75,52,32,40,75,52,32,40,
+90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,75,41,41,
+41,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,57,49,32,40,
+85,32,40,75,51,32,40,75,52,32,40,75,52,32,40,75,52,32,40,90,
+32,40,90,32,40,90,32,40,90,32,40,90,32,75,41,41,41,41,41,41,
+41,41,41,41,41,32,40,40,65,32,58,57,50,32,40,85,32,40,75,52,
+32,40,75,52,32,40,75,52,32,40,75,52,32,40,90,32,40,90,32,40,
+90,32,40,90,32,75,41,41,41,41,41,41,41,41,41,41,32,40,40,65,
+32,58,57,51,32,40,85,32,40,75,32,40,75,52,32,40,75,52,32,40,
+75,52,32,40,75,52,32,40,90,32,40,90,32,40,90,32,75,41,41,41,
+41,41,41,41,41,41,41,32,40,40,65,32,58,57,52,32,40,85,32,40,
+75,50,32,40,75,52,32,40,75,52,32,40,75,52,32,40,75,52,32,40,
+90,32,40,90,32,75,41,41,41,41,41,41,41,41,41,32,40,40,65,32,
+58,57,53,32,40,85,32,40,75,51,32,40,75,52,32,40,75,52,32,40,
+75,52,32,40,75,52,32,40,90,32,75,41,41,41,41,41,41,41,41,32,
+40,40,65,32,58,57,54,32,40,85,32,40,75,52,32,40,75,52,32,40,
+75,52,32,40,75,52,32,40,75,52,32,75,41,41,41,41,41,41,41,32,
+40,40,65,32,58,57,55,32,40,85,32,40,75,52,32,40,75,52,32,40,
+75,52,32,40,75,52,32,40,75,52,32,65,41,41,41,41,41,41,41,32,
+40,40,65,32,58,57,56,32,40,75,32,40,110,111,68,101,102,97,117,108,
+116,32,34,66,105,116,115,46,46,38,46,34,41,41,41,32,40,40,65,32,
+58,57,57,32,40,75,32,40,110,111,68,101,102,97,117,108,116,32,34,66,
+105,116,115,46,46,124,46,34,41,41,41,32,40,40,65,32,58,49,48,48,
+32,40,75,32,40,110,111,68,101,102,97,117,108,116,32,34,66,105,116,115,
+46,120,111,114,34,41,41,41,32,40,40,65,32,58,49,48,49,32,40,75,
+32,40,110,111,68,101,102,97,117,108,116,32,34,66,105,116,115,46,99,111,
+109,112,108,101,109,101,110,116,34,41,41,41,32,40,40,65,32,58,49,48,
+50,32,40,40,40,83,39,32,40,83,39,32,83,41,41,32,40,40,66,32,
+40,66,32,40,83,32,40,40,67,32,40,95,53,57,51,32,95,51,49,53,
+41,41,32,35,48,41,41,41,41,32,40,40,66,32,40,40,83,39,32,83,
+41,32,40,67,32,40,40,67,32,40,95,53,57,53,32,95,51,49,53,41,
+41,32,35,48,41,41,41,41,32,95,56,57,41,41,41,32,40,40,40,67,
+39,32,40,67,39,32,66,41,41,32,95,57,49,41,32,40,95,53,55,56,
+32,95,51,49,48,41,41,41,41,32,40,40,65,32,58,49,48,51,32,40,
+40,40,83,39,32,40,83,39,32,83,41,41,32,40,40,66,32,40,66,32,
+40,83,32,40,40,67,32,40,95,53,57,51,32,95,51,49,53,41,41,32,
+35,48,41,41,41,41,32,40,40,66,32,40,40,83,39,32,83,41,32,40,
+67,32,40,40,67,32,40,95,53,57,53,32,95,51,49,53,41,41,32,35,
+48,41,41,41,41,32,95,57,51,41,41,41,32,40,40,40,67,39,32,40,
+67,39,32,66,41,41,32,95,57,52,41,32,40,95,53,55,56,32,95,51,
+49,48,41,41,41,41,32,40,40,65,32,58,49,48,52,32,40,40,67,32,
+40,40,83,32,95,56,54,41,32,40,40,67,32,95,56,52,41,32,35,48,
+41,41,41,32,35,48,41,41,32,40,40,65,32,58,49,48,53,32,40,75,
+32,40,110,111,68,101,102,97,117,108,116,32,34,66,105,116,115,46,98,105,
+116,34,41,41,41,32,40,40,65,32,58,49,48,54,32,40,40,40,83,39,
+32,40,67,39,32,66,41,41,32,95,55,56,41,32,95,56,52,41,41,32,
+40,40,65,32,58,49,48,55,32,40,40,40,83,39,32,40,67,39,32,66,
+41,41,32,95,55,55,41,32,40,40,40,83,39,32,66,41,32,95,56,48,
+41,32,95,56,52,41,41,41,32,40,40,65,32,58,49,48,56,32,40,40,
+40,83,39,32,40,67,39,32,66,41,41,32,95,55,57,41,32,95,56,52,
+41,41,32,40,40,65,32,58,49,48,57,32,40,75,32,40,110,111,68,101,
+102,97,117,108,116,32,34,66,105,116,115,46,116,101,115,116,66,105,116,34,
+41,41,41,32,40,40,65,32,58,49,49,48,32,95,56,49,41,32,40,40,
+65,32,58,49,49,49,32,95,56,57,41,32,40,40,65,32,58,49,49,50,
+32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,95,56,49,41,32,
+40,95,53,55,56,32,95,51,49,48,41,41,41,32,40,40,65,32,58,49,
+49,51,32,95,57,49,41,32,40,40,65,32,58,49,49,52,32,95,56,50,
+41,32,40,40,65,32,58,49,49,53,32,40,40,40,67,39,32,40,67,39,
+32,66,41,41,32,95,56,50,41,32,40,95,53,55,56,32,95,51,49,48,
+41,41,41,32,40,40,65,32,58,49,49,54,32,40,75,32,40,110,111,68,
+101,102,97,117,108,116,32,34,66,105,116,115,46,112,111,112,67,111,117,110,
+116,34,41,41,41,32,40,40,65,32,58,49,49,55,32,40,75,32,40,110,
+111,68,101,102,97,117,108,116,32,34,66,105,116,115,46,98,105,116,83,105,
+122,101,77,97,121,98,101,34,41,41,41,32,40,40,65,32,58,49,49,56,
+32,40,40,66,32,40,66,32,40,95,53,49,54,32,40,95,50,55,32,34,
+98,105,116,83,105,122,101,32,105,115,32,117,110,100,101,102,105,110,101,100,
+34,41,41,41,41,32,95,57,54,41,41,32,40,40,65,32,58,49,49,57,
+32,40,40,66,32,40,66,32,40,66,32,67,41,41,41,32,40,40,66,32,
+40,66,32,67,41,41,32,80,41,41,41,32,40,40,65,32,58,49,50,48,
+32,40,85,32,40,90,32,40,90,32,75,41,41,41,41,32,40,40,65,32,
+58,49,50,49,32,40,85,32,40,75,32,40,90,32,75,41,41,41,41,32,
+40,40,65,32,58,49,50,50,32,40,85,32,40,75,50,32,75,41,41,41,
+32,40,40,65,32,58,49,50,51,32,40,85,32,40,75,50,32,65,41,41,
+41,32,40,40,65,32,58,49,50,52,32,40,75,32,40,110,111,68,101,102,
+97,117,108,116,32,34,70,105,110,105,116,101,66,105,116,115,46,102,105,110,
+105,116,101,66,105,116,83,105,122,101,34,41,41,41,32,40,40,65,32,58,
+49,50,53,32,40,40,40,83,39,32,40,83,39,32,40,40,83,39,32,40,
+95,53,55,54,32,95,51,49,48,41,41,32,40,40,67,32,40,95,53,55,
+54,32,95,51,49,48,41,41,32,35,49,41,41,41,41,32,40,40,40,67,
+39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,89,41,41,
+32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,83,41,41,41,32,
+40,40,66,32,40,66,32,40,66,32,40,83,32,40,40,67,32,40,95,53,
+57,51,32,95,51,49,53,41,41,32,40,40,95,53,56,49,32,95,51,49,
+48,41,32,40,95,51,57,50,32,35,48,41,41,41,41,41,41,41,32,40,
+40,40,67,39,32,40,67,39,32,40,67,39,32,83,41,41,41,32,40,40,
+40,67,39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,83,
+41,41,32,40,40,66,32,95,56,56,41,32,95,49,50,48,41,41,41,32,
+40,40,67,32,66,41,32,40,40,67,32,40,95,53,55,54,32,95,51,49,
+48,41,41,32,35,49,41,41,41,41,32,73,41,41,41,32,73,41,41,41,
+32,40,40,67,32,40,95,53,55,54,32,95,51,49,48,41,41,32,35,49,
+41,41,41,32,95,49,50,49,41,41,32,40,40,65,32,58,49,50,54,32,
+40,40,40,67,39,32,40,67,39,32,89,41,41,32,40,40,40,67,39,32,
+40,67,39,32,40,67,39,32,83,41,41,41,32,40,40,40,83,39,32,40,
+83,39,32,66,41,41,32,40,40,66,32,40,66,32,83,41,41,32,40,40,
+66,32,40,66,32,40,67,32,40,95,53,57,54,32,95,51,49,53,41,41,
+41,41,32,95,49,50,49,41,41,41,32,40,40,40,67,39,32,40,67,39,
+32,40,67,39,32,83,41,41,41,32,40,40,40,67,39,32,40,67,39,32,
+66,41,41,32,40,40,66,32,40,66,32,83,41,41,32,40,40,66,32,95,
+56,56,41,32,95,49,50,48,41,41,41,32,40,40,67,32,66,41,32,40,
+40,67,32,40,95,53,55,53,32,95,51,49,48,41,41,32,35,49,41,41,
+41,41,32,73,41,41,41,32,73,41,41,32,35,48,41,41,32,40,40,65,
+32,58,49,50,55,32,40,40,95,50,50,50,32,40,40,67,32,40,40,67,
+32,83,39,41,32,95,49,51,50,41,41,32,73,41,41,32,40,95,50,50,
+54,32,95,49,50,55,41,41,41,32,40,40,65,32,58,49,50,56,32,40,
+40,40,95,49,56,52,48,32,40,75,32,40,40,80,32,40,95,49,56,52,
+57,32,34,70,97,108,115,101,34,41,41,32,40,95,49,56,52,57,32,34,
+84,114,117,101,34,41,41,41,41,32,40,95,49,56,52,53,32,95,49,50,
+56,41,41,32,40,95,49,56,52,54,32,95,49,50,56,41,41,41,32,40,
+40,65,32,58,49,50,57,32,40,40,95,49,51,54,32,95,49,51,52,41,
+32,95,49,51,53,41,41,32,40,40,65,32,58,49,51,48,32,40,82,32,
+95,49,51,53,41,41,32,40,40,65,32,58,49,51,49,32,40,85,32,95,
+49,51,52,41,41,32,40,40,65,32,58,49,51,50,32,40,40,80,32,95,
+49,51,53,41,32,95,49,51,52,41,41,32,40,40,65,32,58,49,51,51,
+32,95,49,51,53,41,32,40,40,65,32,58,49,51,52,32,75,41,32,40,
+40,65,32,58,49,51,53,32,65,41,32,40,40,65,32,58,49,51,54,32,
+80,41,32,40,40,65,32,58,49,51,55,32,40,85,32,75,41,41,32,40,
+40,65,32,58,49,51,56,32,40,85,32,65,41,41,32,40,40,65,32,58,
+49,51,57,32,40,75,32,40,110,111,68,101,102,97,117,108,116,32,34,66,
+111,117,110,100,101,100,46,109,105,110,66,111,117,110,100,34,41,41,41,32,
+40,40,65,32,58,49,52,48,32,40,75,32,40,110,111,68,101,102,97,117,
+108,116,32,34,66,111,117,110,100,101,100,46,109,97,120,66,111,117,110,100,
+34,41,41,41,32,40,40,65,32,58,49,52,49,32,40,40,95,50,50,50,
+32,95,49,54,49,56,41,32,95,49,54,49,57,41,41,32,40,40,65,32,
+58,49,52,50,32,40,40,40,40,40,40,40,40,95,53,57,48,32,95,49,
+52,49,41,32,95,49,54,50,57,41,32,95,49,54,50,48,41,32,95,49,
+54,50,49,41,32,95,49,54,50,50,41,32,95,49,54,50,51,41,32,40,
+95,54,48,52,32,95,49,52,50,41,41,32,40,95,54,48,53,32,95,49,
+52,50,41,41,41,32,40,40,65,32,58,49,52,51,32,40,40,95,50,50,
+50,32,95,49,54,51,48,41,32,40,95,50,50,54,32,95,49,52,51,41,
+41,41,32,40,40,65,32,58,49,52,52,32,40,40,40,40,40,40,40,40,
+95,53,57,48,32,95,49,52,51,41,32,95,49,54,50,55,41,32,40,40,
+40,67,39,32,40,67,39,32,40,95,50,50,51,32,95,54,48,54,41,41,
+41,32,95,49,54,50,55,41,32,95,54,49,48,41,41,32,40,40,40,67,
+39,32,40,67,39,32,40,95,50,50,52,32,95,54,48,54,41,41,41,32,
+95,49,54,50,55,41,32,95,54,49,50,41,41,32,40,40,40,67,39,32,
+40,67,39,32,40,95,50,50,51,32,95,54,48,54,41,41,41,32,95,49,
+54,50,55,41,32,95,54,49,50,41,41,32,40,40,40,67,39,32,40,67,
+39,32,40,95,50,50,52,32,95,54,48,54,41,41,41,32,95,49,54,50,
+55,41,32,95,54,49,48,41,41,32,40,95,54,48,52,32,95,49,52,52,
+41,41,32,40,95,54,48,53,32,95,49,52,52,41,41,41,32,40,40,65,
+32,58,49,52,53,32,40,40,95,49,51,54,32,40,95,49,52,54,32,35,
+48,41,41,32,40,95,49,52,54,32,35,49,50,55,41,41,41,32,40,40,
+65,32,58,49,52,54,32,95,49,54,51,49,41,32,40,40,65,32,58,49,
+52,55,32,95,49,54,51,50,41,32,40,40,65,32,58,49,52,56,32,40,
+40,40,83,39,32,95,49,51,49,41,32,40,95,49,54,50,49,32,35,57,
+55,41,41,32,40,40,67,32,95,49,54,50,49,41,32,35,49,50,50,41,
+41,41,32,40,40,65,32,58,49,52,57,32,40,40,40,83,39,32,95,49,
+51,49,41,32,40,95,49,54,50,49,32,35,54,53,41,41,32,40,40,67,
+32,95,49,54,50,49,41,32,35,57,48,41,41,41,32,40,40,65,32,58,
+49,53,48,32,40,40,40,83,39,32,95,49,51,48,41,32,95,49,52,56,
+41,32,95,49,52,57,41,41,32,40,40,65,32,58,49,53,49,32,40,40,
+40,83,39,32,95,49,51,49,41,32,40,95,49,54,50,49,32,35,52,56,
+41,41,32,40,40,67,32,95,49,54,50,49,41,32,35,53,55,41,41,41,
+32,40,40,65,32,58,49,53,50,32,40,40,40,83,39,32,95,49,51,48,
+41,32,95,49,53,49,41,32,40,40,40,83,39,32,95,49,51,48,41,32,
+40,40,40,83,39,32,95,49,51,49,41,32,40,95,49,54,50,49,32,35,
+57,55,41,41,32,40,40,67,32,95,49,54,50,49,41,32,35,49,48,50,
+41,41,41,32,40,40,40,83,39,32,95,49,51,49,41,32,40,95,49,54,
+50,49,32,35,55,48,41,41,32,40,40,67,32,95,49,54,50,49,41,32,
+35,55,48,41,41,41,41,41,32,40,40,65,32,58,49,53,51,32,40,40,
+40,83,39,32,95,49,51,48,41,32,95,49,53,48,41,32,95,49,53,49,
+41,41,32,40,40,65,32,58,49,53,52,32,40,40,40,83,39,32,95,49,
+51,49,41,32,40,95,49,54,50,49,32,35,51,50,41,41,32,40,40,67,
+32,95,49,54,50,49,41,32,35,49,50,54,41,41,41,32,40,40,65,32,
+58,49,53,53,32,40,40,40,83,39,32,95,49,51,48,41,32,40,40,67,
+32,40,95,50,50,51,32,95,49,52,49,41,41,32,35,51,50,41,41,32,
+40,40,40,83,39,32,95,49,51,48,41,32,40,40,67,32,40,95,50,50,
+51,32,95,49,52,49,41,41,32,35,57,41,41,32,40,40,67,32,40,95,
+50,50,51,32,95,49,52,49,41,41,32,35,49,48,41,41,41,41,32,40,
+40,65,32,58,49,53,54,32,40,40,83,32,40,40,83,32,40,40,40,83,
+39,32,95,49,51,49,41,32,40,95,49,54,50,49,32,35,52,56,41,41,
+32,40,40,67,32,95,49,54,50,49,41,32,35,53,55,41,41,41,32,40,
+40,83,32,40,40,83,32,40,40,40,83,39,32,95,49,51,49,41,32,40,
+95,49,54,50,49,32,35,57,55,41,41,32,40,40,67,32,95,49,54,50,
+49,41,32,35,49,48,50,41,41,41,32,40,40,83,32,40,40,67,32,40,
+40,40,83,39,32,95,49,51,49,41,32,40,95,49,54,50,49,32,35,54,
+53,41,41,32,40,40,67,32,95,49,54,50,49,41,32,35,55,48,41,41,
+41,32,40,95,50,55,32,34,100,105,103,105,116,84,111,73,110,116,34,41,
+41,41,32,40,40,40,67,39,32,40,95,53,55,54,32,95,51,49,48,41,
+41,32,95,49,52,55,41,32,40,40,40,95,53,55,54,32,95,51,49,48,
+41,32,40,95,49,52,55,32,35,54,53,41,41,32,35,49,48,41,41,41,
+41,41,32,40,40,40,67,39,32,40,95,53,55,54,32,95,51,49,48,41,
+41,32,95,49,52,55,41,32,40,40,40,95,53,55,54,32,95,51,49,48,
+41,32,40,95,49,52,55,32,35,57,55,41,41,32,35,49,48,41,41,41,
+41,41,32,40,40,40,67,39,32,40,95,53,55,54,32,95,51,49,48,41,
+41,32,95,49,52,55,41,32,40,95,49,52,55,32,35,52,56,41,41,41,
+41,32,40,40,65,32,58,49,53,55,32,40,40,83,32,40,40,83,32,40,
+40,40,83,39,32,95,49,51,49,41,32,40,95,49,54,50,49,32,35,54,
+53,41,41,32,40,40,67,32,95,49,54,50,49,41,32,35,57,48,41,41,
+41,32,40,95,49,51,53,32,40,40,40,110,111,77,97,116,99,104,32,34,
+46,47,108,105,98,47,68,97,116,97,47,67,104,97,114,46,104,115,34,41,
+32,35,56,51,41,32,35,49,41,41,41,41,32,40,40,66,32,95,49,52,
+54,41,32,40,40,40,67,39,32,40,95,53,55,53,32,95,51,49,48,41,
+41,32,40,40,40,67,39,32,40,95,53,55,54,32,95,51,49,48,41,41,
+32,95,49,52,55,41,32,40,95,49,52,55,32,35,54,53,41,41,41,32,
+40,95,49,52,55,32,35,57,55,41,41,41,41,41,32,40,40,65,32,58,
+49,53,56,32,40,40,83,32,40,40,83,32,40,40,40,83,39,32,95,49,
+51,49,41,32,40,95,49,54,50,49,32,35,57,55,41,41,32,40,40,67,
+32,95,49,54,50,49,41,32,35,57,55,41,41,41,32,40,95,49,51,53,
+32,40,40,40,110,111,77,97,116,99,104,32,34,46,47,108,105,98,47,68,
+97,116,97,47,67,104,97,114,46,104,115,34,41,32,35,56,55,41,32,35,
+49,41,41,41,41,32,40,40,66,32,95,49,52,54,41,32,40,40,40,67,
+39,32,40,95,53,55,53,32,95,51,49,48,41,41,32,40,40,40,67,39,
+32,40,95,53,55,54,32,95,51,49,48,41,41,32,95,49,52,55,41,32,
+40,95,49,52,55,32,35,57,55,41,41,41,32,40,95,49,52,55,32,35,
+54,53,41,41,41,41,41,32,40,40,65,32,58,49,53,57,32,40,40,40,
+95,49,56,52,48,32,40,75,32,40,40,67,32,40,40,83,32,40,40,95,
+50,50,51,32,95,49,52,49,41,32,35,51,57,41,41,32,40,40,66,32,
+40,95,50,56,52,32,40,95,49,56,52,56,32,35,51,57,41,41,41,32,
+40,40,40,67,39,32,95,50,56,52,41,32,40,40,66,32,95,49,56,52,
+57,41,32,95,49,54,48,41,41,32,40,95,49,56,52,56,32,35,51,57,
+41,41,41,41,41,32,40,95,49,56,52,57,32,34,39,92,57,50,38,39,
+39,34,41,41,41,41,32,40,95,49,56,52,53,32,95,49,53,57,41,41,
+32,40,40,66,32,40,95,50,56,52,32,40,95,49,56,52,56,32,35,51,
+52,41,41,41,32,40,89,32,40,40,66,32,40,80,32,40,95,49,56,52,
+56,32,35,51,52,41,41,41,32,40,40,40,83,39,32,67,41,32,40,40,
+66,32,40,40,83,39,32,83,39,41,32,40,40,67,32,40,95,50,50,51,
+32,95,49,52,49,41,41,32,35,51,52,41,41,41,32,40,40,67,39,32,
+66,41,32,40,40,66,32,95,50,56,52,41,32,40,40,66,32,95,49,56,
+52,57,41,32,95,49,54,48,41,41,41,41,41,32,40,66,32,40,95,50,
+56,52,32,40,95,49,56,52,57,32,34,92,57,50,38,92,51,52,38,34,
+41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,49,54,48,32,40,
+40,40,67,39,32,89,41,32,40,40,40,83,39,32,66,41,32,40,40,66,
+32,80,41,32,40,40,83,32,40,40,83,32,95,49,53,52,41,32,40,40,
+66,32,40,95,53,48,52,32,34,39,92,57,50,38,34,41,41,32,40,40,
+40,67,39,32,95,53,48,52,41,32,40,40,66,32,40,95,49,56,52,50,
+32,95,51,49,54,41,41,32,95,49,52,55,41,41,32,40,40,79,32,35,
+51,57,41,32,75,41,41,41,41,41,32,40,40,67,32,79,41,32,75,41,
+41,41,41,32,40,40,66,32,40,66,32,40,67,32,66,41,41,41,32,40,
+66,39,32,40,40,66,32,67,41,32,40,67,32,40,95,50,50,51,32,95,
+49,52,49,41,41,41,41,41,41,41,32,40,40,79,32,40,40,80,32,35,
+49,48,41,32,34,92,57,50,38,110,34,41,41,32,40,40,79,32,40,40,
+80,32,35,49,51,41,32,34,92,57,50,38,114,34,41,41,32,40,40,79,
+32,40,40,80,32,35,57,41,32,34,92,57,50,38,116,34,41,41,32,40,
+40,79,32,40,40,80,32,35,56,41,32,34,92,57,50,38,98,34,41,41,
+32,40,40,79,32,40,40,80,32,35,57,50,41,32,34,92,57,50,38,92,
+57,50,38,34,41,41,32,75,41,41,41,41,41,41,41,32,40,40,65,32,
+58,49,54,49,32,40,40,40,40,40,40,40,95,53,55,52,32,95,49,53,
+56,50,41,32,95,49,53,56,51,41,32,95,49,53,56,52,41,32,95,49,
+53,56,54,41,32,40,40,83,32,40,40,83,32,40,40,67,32,40,95,53,
+57,51,32,95,49,54,52,41,41,32,38,48,46,48,41,41,32,73,41,41,
+32,40,95,53,55,56,32,95,49,54,49,41,41,41,32,40,40,67,32,40,
+40,67,32,40,40,67,32,40,40,67,32,40,95,53,57,50,32,95,49,54,
+52,41,41,32,38,48,46,48,41,41,32,40,40,95,53,55,56,32,95,49,
+54,49,41,32,40,40,95,50,55,55,32,95,49,54,50,41,32,40,40,95,
+54,50,54,32,40,95,51,57,50,32,35,49,41,41,32,40,95,51,57,50,
+32,35,49,41,41,41,41,41,41,32,38,48,46,48,41,41,32,38,49,46,
+48,41,41,32,95,51,57,54,41,41,32,40,40,65,32,58,49,54,50,32,
+40,40,40,40,95,50,55,51,32,95,49,54,49,41,32,95,49,53,56,53,
+41,32,40,95,50,55,57,32,95,49,54,50,41,41,32,40,40,40,83,39,
+32,95,49,53,56,53,41,32,40,40,66,32,40,95,53,56,49,32,95,49,
+54,49,41,41,32,95,54,50,50,41,41,32,40,40,66,32,40,95,53,56,
+49,32,95,49,54,49,41,41,32,95,54,50,51,41,41,41,41,32,40,40,
+65,32,58,49,54,51,32,40,40,95,50,50,50,32,95,49,53,56,55,41,
+32,95,49,53,56,56,41,41,32,40,40,65,32,58,49,54,52,32,40,40,
+40,40,40,40,40,40,95,53,57,48,32,95,49,54,51,41,32,40,95,53,
+57,57,32,95,49,54,52,41,41,32,95,49,53,56,57,41,32,95,49,53,
+57,48,41,32,95,49,53,57,49,41,32,95,49,53,57,50,41,32,40,95,
+54,48,52,32,95,49,54,52,41,41,32,40,95,54,48,53,32,95,49,54,
+52,41,41,41,32,40,40,65,32,58,49,54,53,32,40,40,40,95,49,56,
+52,48,32,40,95,49,56,52,52,32,95,49,54,53,41,41,32,95,49,53,
+57,51,41,32,40,95,49,56,52,54,32,95,49,54,53,41,41,41,32,40,
+40,65,32,58,49,54,54,32,40,95,54,50,55,32,40,40,66,32,40,40,
+40,83,39,32,40,95,53,55,55,32,40,95,54,49,53,32,95,51,52,50,
+41,41,41,32,40,40,66,32,40,95,54,50,56,32,95,51,52,51,41,41,
+32,40,85,32,75,41,41,41,32,40,40,66,32,40,40,95,50,56,49,32,
+40,40,67,32,40,40,80,32,40,95,54,49,54,32,40,40,80,32,95,51,
+52,50,41,32,95,51,51,57,41,41,41,32,95,51,49,49,41,41,32,95,
+51,49,53,41,41,32,40,40,95,53,56,49,32,40,95,54,49,53,32,95,
+51,52,50,41,41,32,40,95,51,57,50,32,35,50,41,41,41,41,32,40,
+85,32,65,41,41,41,41,32,40,95,54,51,53,32,95,49,55,56,41,41,
+41,41,32,40,40,65,32,58,49,54,55,32,40,40,40,40,40,40,40,40,
+40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,95,50,50,55,32,
+95,49,54,50,41,32,40,40,95,50,55,55,32,95,49,54,50,41,32,40,
+40,95,54,50,54,32,40,95,51,57,50,32,35,51,49,52,49,53,57,50,
+54,53,51,53,56,57,55,57,51,41,41,32,40,95,51,57,50,32,35,49,
+48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,41,41,41,41,32,
+40,40,66,32,95,49,54,51,56,41,32,95,49,54,57,41,41,32,40,40,
+66,32,95,49,54,51,56,41,32,95,49,54,56,41,41,32,40,40,66,32,
+95,49,54,51,56,41,32,95,49,55,48,41,41,32,40,95,50,53,53,32,
+95,49,54,55,41,41,32,40,95,50,53,54,32,95,49,54,55,41,41,32,
+40,40,66,32,95,49,54,51,56,41,32,95,49,55,49,41,41,32,40,40,
+66,32,95,49,54,51,56,41,32,95,49,55,50,41,41,32,40,40,66,32,
+95,49,54,51,56,41,32,95,49,55,51,41,41,32,40,40,66,32,95,49,
+54,51,56,41,32,95,49,55,52,41,41,32,40,40,66,32,95,49,54,51,
+56,41,32,95,49,55,53,41,41,32,40,40,66,32,95,49,54,51,56,41,
+32,95,49,55,54,41,41,32,40,95,50,54,51,32,95,49,54,55,41,41,
+32,40,95,50,54,52,32,95,49,54,55,41,41,32,40,95,50,54,53,32,
+95,49,54,55,41,41,32,40,95,50,54,54,32,95,49,54,55,41,41,32,
+40,95,50,54,55,32,95,49,54,55,41,41,32,40,95,50,54,56,32,95,
+49,54,55,41,41,32,40,95,50,54,57,32,95,49,54,55,41,41,32,40,
+95,50,55,48,32,95,49,54,55,41,41,32,40,95,50,55,49,32,95,49,
+54,55,41,41,32,40,95,50,55,50,32,95,49,54,55,41,41,41,32,40,
+40,65,32,58,49,54,56,32,94,108,111,103,41,32,40,40,65,32,58,49,
+54,57,32,94,101,120,112,41,32,40,40,65,32,58,49,55,48,32,94,115,
+113,114,116,41,32,40,40,65,32,58,49,55,49,32,94,115,105,110,41,32,
+40,40,65,32,58,49,55,50,32,94,99,111,115,41,32,40,40,65,32,58,
+49,55,51,32,94,116,97,110,41,32,40,40,65,32,58,49,55,52,32,94,
+97,115,105,110,41,32,40,40,65,32,58,49,55,53,32,94,97,99,111,115,
+41,32,40,40,65,32,58,49,55,54,32,94,97,116,97,110,41,32,40,40,
+65,32,58,49,55,55,32,94,97,116,97,110,50,41,32,40,40,65,32,58,
+49,55,56,32,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,95,
+54,51,48,32,40,40,67,32,40,40,80,32,95,49,54,50,41,32,95,49,
+54,52,41,41,32,95,49,54,55,41,41,32,40,75,32,40,95,51,57,50,
+32,35,50,41,41,41,32,40,75,32,40,40,95,49,55,57,32,40,40,95,
+53,56,49,32,95,51,49,48,41,32,40,95,51,57,50,32,35,50,52,41,
+41,41,32,40,40,95,53,56,49,32,95,51,49,48,41,32,40,95,51,57,
+50,32,35,53,51,41,41,41,41,41,32,40,75,32,40,40,95,49,55,57,
+32,40,40,80,32,40,40,95,53,55,56,32,95,51,49,48,41,32,40,40,
+95,53,56,49,32,95,51,49,48,41,32,40,95,51,57,50,32,35,49,50,
+53,41,41,41,41,32,40,40,95,53,56,49,32,95,51,49,48,41,32,40,
+95,51,57,50,32,35,49,50,56,41,41,41,41,32,40,40,80,32,40,40,
+95,53,55,56,32,95,51,49,48,41,32,40,40,95,53,56,49,32,95,51,
+49,48,41,32,40,95,51,57,50,32,35,49,48,50,49,41,41,41,41,32,
+40,40,95,53,56,49,32,95,51,49,48,41,32,40,95,51,57,50,32,35,
+49,48,50,52,41,41,41,41,41,41,32,40,40,95,49,55,57,32,95,49,
+56,54,41,32,95,49,56,48,41,41,32,40,40,95,49,55,57,32,95,49,
+57,49,41,32,95,49,56,53,41,41,32,40,95,54,53,49,32,95,49,55,
+56,41,41,32,40,95,54,53,50,32,95,49,55,56,41,41,32,40,95,54,
+53,51,32,95,49,55,56,41,41,32,40,40,95,49,55,57,32,95,49,56,
+55,41,32,95,49,56,49,41,41,32,40,40,95,49,55,57,32,95,49,56,
+56,41,32,95,49,56,50,41,41,32,40,40,95,49,55,57,32,95,49,56,
+57,41,32,95,49,56,51,41,41,32,40,40,95,49,55,57,32,95,49,57,
+48,41,32,95,49,56,52,41,41,32,40,75,32,95,49,51,53,41,41,32,
+40,40,66,32,40,66,32,95,49,54,51,56,41,41,32,95,49,55,55,41,
+41,41,32,40,40,65,32,58,49,55,57,32,40,67,32,40,40,40,95,50,
+50,51,32,95,51,49,52,41,32,95,49,54,52,57,41,32,35,51,50,41,
+41,41,32,40,40,65,32,58,49,56,48,32,40,40,66,32,40,40,83,32,
+40,40,40,83,39,32,67,41,32,40,40,66,32,40,40,67,39,32,67,41,
+32,40,40,40,83,39,32,40,83,39,32,67,41,41,32,40,40,66,32,40,
+66,32,40,83,32,40,40,67,32,40,95,50,50,51,32,95,54,57,49,41,
+41,32,35,48,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,67,
+41,41,32,40,40,66,32,40,66,32,40,83,32,40,40,67,32,40,95,50,
+50,51,32,95,54,57,49,41,41,32,35,50,48,52,55,41,41,41,41,32,
+40,40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,
+32,80,41,41,32,40,40,67,32,66,41,32,40,40,66,32,95,51,57,52,
+41,32,40,40,67,32,40,95,55,56,32,95,54,57,51,41,41,32,35,52,
+53,48,51,53,57,57,54,50,55,51,55,48,52,57,54,41,41,41,41,41,
+32,40,40,40,67,39,32,40,95,53,55,54,32,95,51,49,48,41,41,32,
+40,40,40,67,39,32,40,95,53,55,54,32,95,51,49,48,41,41,32,95,
+49,54,49,54,41,32,35,49,48,50,51,41,41,32,35,53,50,41,41,41,
+41,32,40,40,80,32,40,40,95,53,56,49,32,95,51,52,49,41,32,40,
+95,51,57,50,32,35,48,41,41,41,32,40,40,95,53,56,49,32,95,51,
+49,48,41,32,40,95,51,57,50,32,35,48,41,41,41,41,41,41,32,40,
+40,40,67,39,32,40,67,39,32,80,41,41,32,40,40,67,32,66,41,32,
+95,51,57,52,41,41,32,40,40,95,53,56,49,32,95,51,49,48,41,32,
+40,95,51,57,50,32,35,48,41,41,41,41,41,41,32,40,40,40,67,39,
+32,40,95,57,49,32,95,54,57,51,41,41,32,40,40,67,32,40,95,55,
+55,32,95,54,57,51,41,41,32,35,57,50,50,51,51,55,50,48,51,54,
+56,53,52,55,55,53,56,48,55,41,41,32,35,53,50,41,41,41,32,40,
+40,67,32,40,95,55,55,32,95,54,57,51,41,41,32,35,52,53,48,51,
+53,57,57,54,50,55,51,55,48,52,57,53,41,41,41,32,40,40,67,32,
+40,40,67,32,40,40,40,67,39,32,40,95,50,50,52,32,95,54,57,49,
+41,41,32,40,40,67,32,40,95,55,55,32,95,54,57,51,41,41,32,35,
+45,57,50,50,51,51,55,50,48,51,54,56,53,52,55,55,53,56,48,56,
+41,41,32,35,48,41,41,32,95,50,56,53,41,41,32,40,95,53,55,56,
+32,95,51,52,49,41,41,41,41,32,95,49,54,48,57,41,41,32,40,40,
+65,32,58,49,56,49,32,40,40,66,32,40,40,40,83,39,32,95,49,51,
+49,41,32,40,40,40,67,39,32,40,95,50,50,51,32,95,54,57,49,41,
+41,32,40,40,40,67,39,32,40,95,57,49,32,95,54,57,51,41,41,32,
+40,40,67,32,40,95,55,55,32,95,54,57,51,41,41,32,35,57,50,50,
+51,51,55,50,48,51,54,56,53,52,55,55,53,56,48,55,41,41,32,35,
+53,50,41,41,32,35,50,48,52,55,41,41,32,40,40,40,67,39,32,40,
+95,50,50,52,32,95,54,57,49,41,41,32,40,40,67,32,40,95,55,55,
+32,95,54,57,51,41,41,32,35,52,53,48,51,53,57,57,54,50,55,51,
+55,48,52,57,53,41,41,32,35,48,41,41,41,32,95,49,54,48,57,41,
+41,32,40,40,65,32,58,49,56,50,32,40,40,66,32,40,40,40,83,39,
+32,95,49,51,49,41,32,40,40,40,67,39,32,40,95,50,50,51,32,95,
+54,57,49,41,41,32,40,40,40,67,39,32,40,95,57,49,32,95,54,57,
+51,41,41,32,40,40,67,32,40,95,55,55,32,95,54,57,51,41,41,32,
+35,57,50,50,51,51,55,50,48,51,54,56,53,52,55,55,53,56,48,55,
+41,41,32,35,53,50,41,41,32,35,50,48,52,55,41,41,32,40,40,40,
+67,39,32,40,95,50,50,51,32,95,54,57,49,41,41,32,40,40,67,32,
+40,95,55,55,32,95,54,57,51,41,41,32,35,52,53,48,51,53,57,57,
+54,50,55,51,55,48,52,57,53,41,41,32,35,48,41,41,41,32,95,49,
+54,48,57,41,41,32,40,40,65,32,58,49,56,51,32,40,40,66,32,40,
+40,40,83,39,32,95,49,51,49,41,32,40,40,40,67,39,32,40,95,50,
+50,51,32,95,54,57,49,41,41,32,40,40,40,67,39,32,40,95,57,49,
+32,95,54,57,51,41,41,32,40,40,67,32,40,95,55,55,32,95,54,57,
+51,41,41,32,35,57,50,50,51,51,55,50,48,51,54,56,53,52,55,55,
+53,56,48,55,41,41,32,35,53,50,41,41,32,35,48,41,41,32,40,40,
+40,67,39,32,40,95,50,50,52,32,95,54,57,49,41,41,32,40,40,67,
+32,40,95,55,55,32,95,54,57,51,41,41,32,35,52,53,48,51,53,57,
+57,54,50,55,51,55,48,52,57,53,41,41,32,35,48,41,41,41,32,95,
+49,54,48,57,41,41,32,40,40,65,32,58,49,56,52,32,40,40,66,32,
+40,40,40,83,39,32,95,49,51,49,41,32,40,40,40,67,39,32,40,95,
+50,50,52,32,95,54,57,49,41,41,32,40,40,67,32,40,95,55,55,32,
+95,54,57,51,41,41,32,35,45,57,50,50,51,51,55,50,48,51,54,56,
+53,52,55,55,53,56,48,56,41,41,32,35,48,41,41,32,40,40,40,67,
+39,32,40,95,50,50,51,32,95,54,57,49,41,41,32,40,40,67,32,40,
+95,55,55,32,95,54,57,51,41,41,32,35,57,50,50,51,51,55,50,48,
+51,54,56,53,52,55,55,53,56,48,55,41,41,32,35,48,41,41,41,32,
+95,49,54,48,57,41,41,32,40,40,65,32,58,49,56,53,32,40,40,40,
+67,39,32,66,41,32,40,40,66,32,40,95,53,55,55,32,95,49,54,49,
+41,41,32,40,95,53,56,49,32,95,49,54,49,41,41,41,32,40,40,95,
+50,56,49,32,40,40,67,32,40,40,80,32,95,49,54,50,41,32,95,51,
+49,49,41,41,32,95,51,49,53,41,41,32,40,40,95,53,56,49,32,95,
+49,54,49,41,32,40,95,51,57,50,32,35,50,41,41,41,41,41,32,40,
+40,65,32,58,49,56,54,32,40,40,66,32,40,40,83,32,40,40,40,83,
+39,32,67,41,32,40,40,66,32,40,40,67,39,32,67,41,32,40,40,40,
+83,39,32,40,83,39,32,67,41,41,32,40,40,66,32,40,66,32,40,83,
+32,40,40,67,32,40,95,50,50,51,32,95,54,57,49,41,41,32,35,48,
+41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,67,41,41,32,40,
+40,66,32,40,66,32,40,83,32,40,40,67,32,40,95,50,50,51,32,95,
+54,57,49,41,41,32,35,50,53,53,41,41,41,41,32,40,40,40,67,39,
+32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,80,41,41,32,
+40,40,67,32,66,41,32,40,40,66,32,95,51,57,52,41,32,40,40,67,
+32,40,95,55,56,32,95,54,57,51,41,41,32,35,52,49,57,52,51,48,
+52,41,41,41,41,41,32,40,40,40,67,39,32,40,95,53,55,54,32,95,
+51,49,48,41,41,32,40,40,40,67,39,32,40,95,53,55,54,32,95,51,
+49,48,41,41,32,95,49,54,49,54,41,32,35,49,50,55,41,41,32,35,
+50,50,41,41,41,41,32,40,40,80,32,40,40,95,53,56,49,32,95,51,
+52,49,41,32,40,95,51,57,50,32,35,48,41,41,41,32,40,40,95,53,
+56,49,32,95,51,49,48,41,32,40,95,51,57,50,32,35,48,41,41,41,
+41,41,41,32,40,40,40,67,39,32,40,67,39,32,80,41,41,32,40,40,
+67,32,66,41,32,95,51,57,52,41,41,32,40,40,95,53,56,49,32,95,
+51,49,48,41,32,40,95,51,57,50,32,35,48,41,41,41,41,41,41,32,
+40,40,40,67,39,32,40,95,57,49,32,95,54,57,51,41,41,32,40,40,
+67,32,40,95,55,55,32,95,54,57,51,41,41,32,35,50,49,52,55,52,
+56,51,54,52,55,41,41,32,35,50,51,41,41,41,32,40,40,67,32,40,
+95,55,55,32,95,54,57,51,41,41,32,35,56,51,56,56,54,48,55,41,
+41,41,32,40,40,67,32,40,40,67,32,40,40,40,67,39,32,40,95,50,
+50,52,32,95,54,57,49,41,41,32,40,40,67,32,40,95,55,55,32,95,
+54,57,51,41,41,32,35,50,49,52,55,52,56,51,54,52,56,41,41,32,
+35,48,41,41,32,95,50,56,53,41,41,32,40,95,53,55,56,32,95,51,
+52,49,41,41,41,41,32,95,49,54,48,57,41,41,32,40,40,65,32,58,
+49,56,55,32,40,40,66,32,40,40,40,83,39,32,95,49,51,49,41,32,
+40,40,40,67,39,32,40,95,50,50,51,32,95,54,57,49,41,41,32,40,
+40,40,67,39,32,40,95,57,49,32,95,54,57,51,41,41,32,40,40,67,
+32,40,95,55,55,32,95,54,57,51,41,41,32,35,50,49,52,55,52,56,
+51,54,52,55,41,41,32,35,50,51,41,41,32,35,50,53,53,41,41,32,
+40,40,40,67,39,32,40,95,50,50,52,32,95,54,57,49,41,41,32,40,
+40,67,32,40,95,55,55,32,95,54,57,51,41,41,32,35,56,51,56,56,
+54,48,55,41,41,32,35,48,41,41,41,32,95,49,54,48,57,41,41,32,
+40,40,65,32,58,49,56,56,32,40,40,66,32,40,40,40,83,39,32,95,
+49,51,49,41,32,40,40,40,67,39,32,40,95,50,50,51,32,95,54,57,
+49,41,41,32,40,40,40,67,39,32,40,95,57,49,32,95,54,57,51,41,
+41,32,40,40,67,32,40,95,55,55,32,95,54,57,51,41,41,32,35,50,
+49,52,55,52,56,51,54,52,55,41,41,32,35,50,51,41,41,32,35,50,
+48,52,55,41,41,32,40,40,40,67,39,32,40,95,50,50,51,32,95,54,
+57,49,41,41,32,40,40,67,32,40,95,55,55,32,95,54,57,51,41,41,
+32,35,56,51,56,56,54,48,55,41,41,32,35,48,41,41,41,32,95,49,
+54,48,57,41,41,32,40,40,65,32,58,49,56,57,32,40,40,66,32,40,
+40,40,83,39,32,95,49,51,49,41,32,40,40,40,67,39,32,40,95,50,
+50,51,32,95,54,57,49,41,41,32,40,40,40,67,39,32,40,95,57,49,
+32,95,54,57,51,41,41,32,40,40,67,32,40,95,55,55,32,95,54,57,
+51,41,41,32,35,50,49,52,55,52,56,51,54,52,55,41,41,32,35,50,
+51,41,41,32,35,48,41,41,32,40,40,40,67,39,32,40,95,50,50,52,
+32,95,54,57,49,41,41,32,40,40,67,32,40,95,55,55,32,95,54,57,
+51,41,41,32,35,56,51,56,56,54,48,55,41,41,32,35,48,41,41,41,
+32,95,49,54,48,57,41,41,32,40,40,65,32,58,49,57,48,32,40,40,
+66,32,40,40,40,83,39,32,95,49,51,49,41,32,40,40,40,67,39,32,
+40,95,50,50,52,32,95,54,57,49,41,41,32,40,40,67,32,40,95,55,
+55,32,95,54,57,51,41,41,32,35,50,49,52,55,52,56,51,54,52,56,
+41,41,32,35,48,41,41,32,40,40,40,67,39,32,40,95,50,50,51,32,
+95,54,57,49,41,41,32,40,40,67,32,40,95,55,55,32,95,54,57,51,
+41,41,32,35,50,49,52,55,52,56,51,54,52,55,41,41,32,35,48,41,
+41,41,32,95,49,54,48,57,41,41,32,40,40,65,32,58,49,57,49,32,
+40,40,40,67,39,32,66,41,32,40,40,66,32,40,95,53,55,55,32,95,
+49,54,49,41,41,32,40,95,53,56,49,32,95,49,54,49,41,41,41,32,
+40,40,95,50,56,49,32,40,40,67,32,40,40,80,32,95,49,54,50,41,
+32,95,51,49,49,41,41,32,95,51,49,53,41,41,32,40,40,95,53,56,
+49,32,95,49,54,49,41,32,40,95,51,57,50,32,35,50,41,41,41,41,
+41,32,40,40,65,32,58,49,57,50,32,40,40,66,32,90,41,32,85,41,
+41,32,40,40,65,32,58,49,57,51,32,40,90,32,85,41,41,32,40,40,
+65,32,58,49,57,52,32,40,40,40,83,39,32,95,50,50,50,41,32,40,
+40,40,83,39,32,67,41,32,40,40,66,32,40,67,32,83,39,41,41,32,
+40,40,40,67,39,32,67,41,32,40,40,66,32,40,67,32,67,39,41,41,
+32,40,40,66,32,95,50,50,51,41,32,40,85,32,75,41,41,41,41,32,
+40,75,32,95,49,51,52,41,41,41,41,32,40,40,66,32,40,40,67,39,
+32,66,41,32,40,85,32,40,75,32,95,49,51,52,41,41,41,41,32,40,
+40,66,32,95,50,50,51,41,32,40,85,32,65,41,41,41,41,41,32,40,
+40,66,32,95,50,50,54,41,32,40,40,66,32,95,49,57,52,41,32,40,
+40,40,83,39,32,80,41,32,40,85,32,75,41,41,32,40,85,32,65,41,
+41,41,41,41,41,32,40,40,65,32,58,49,57,53,32,80,41,32,40,40,
+65,32,58,49,57,54,32,40,40,80,32,40,75,32,95,49,51,53,41,41,
+32,40,75,32,95,49,51,52,41,41,41,32,40,40,65,32,58,49,57,55,
+32,40,40,80,32,40,75,32,95,49,51,52,41,41,32,40,75,32,95,49,
+51,53,41,41,41,32,40,40,65,32,58,49,57,56,32,40,40,83,32,40,
+40,40,83,39,32,95,49,56,52,48,41,32,40,40,40,83,39,32,40,83,
+39,32,80,41,41,32,40,40,66,32,40,40,67,39,32,66,41,32,40,40,
+66,32,95,49,56,53,48,41,32,40,40,67,32,40,95,53,57,54,32,95,
+51,49,53,41,41,32,95,49,56,53,51,41,41,41,41,32,40,40,66,32,
+40,66,32,40,95,50,56,52,32,40,95,49,56,52,57,32,34,76,101,102,
+116,32,34,41,41,41,41,32,40,40,40,67,39,32,95,49,56,52,49,41,
+32,40,85,32,75,41,41,32,95,49,56,53,51,41,41,41,41,32,40,40,
+66,32,40,40,67,39,32,66,41,32,40,40,66,32,95,49,56,53,48,41,
+32,40,40,67,32,40,95,53,57,54,32,95,51,49,53,41,41,32,95,49,
+56,53,51,41,41,41,41,32,40,40,66,32,40,66,32,40,95,50,56,52,
+32,40,95,49,56,52,57,32,34,82,105,103,104,116,32,34,41,41,41,41,
+32,40,40,40,67,39,32,95,49,56,52,49,41,32,40,85,32,65,41,41,
+32,95,49,56,53,51,41,41,41,41,41,32,40,40,66,32,95,49,56,52,
+53,41,32,40,40,66,32,95,49,57,56,41,32,40,40,40,83,39,32,80,
+41,32,40,85,32,75,41,41,32,40,85,32,65,41,41,41,41,41,41,32,
+40,40,66,32,95,49,56,52,54,41,32,40,40,66,32,95,49,57,56,41,
+32,40,40,40,83,39,32,80,41,32,40,85,32,75,41,41,32,40,85,32,
+65,41,41,41,41,41,41,32,40,40,65,32,58,49,57,57,32,40,40,95,
+50,57,51,32,40,40,66,32,40,80,32,95,49,57,50,41,41,32,40,66,
+32,95,49,57,51,41,41,41,32,40,95,50,57,55,32,95,49,57,57,41,
+41,41,32,40,40,65,32,58,50,48,48,32,40,40,66,32,40,66,32,40,
+66,32,40,66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,41,
+41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
+66,32,67,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
+40,66,32,40,66,32,67,41,41,41,41,41,32,40,40,66,32,40,66,32,
+40,66,32,40,66,32,67,41,41,41,41,32,40,40,66,32,40,66,32,40,
+66,32,67,41,41,41,32,40,40,66,32,40,66,32,67,41,41,32,80,41,
+41,41,41,41,41,41,32,40,40,65,32,58,50,48,49,32,40,85,32,40,
+90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,75,41,41,
+41,41,41,41,41,41,32,40,40,65,32,58,50,48,50,32,40,85,32,40,
+75,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,75,41,41,
+41,41,41,41,41,41,32,40,40,65,32,58,50,48,51,32,40,85,32,40,
+75,50,32,40,90,32,40,90,32,40,90,32,40,90,32,75,41,41,41,41,
+41,41,41,32,40,40,65,32,58,50,48,52,32,40,85,32,40,75,51,32,
+40,90,32,40,90,32,40,90,32,75,41,41,41,41,41,41,32,40,40,65,
+32,58,50,48,53,32,40,85,32,40,75,52,32,40,90,32,40,90,32,75,
+41,41,41,41,41,32,40,40,65,32,58,50,48,54,32,40,85,32,40,75,
+32,40,75,52,32,40,90,32,75,41,41,41,41,41,32,40,40,65,32,58,
+50,48,55,32,40,85,32,40,75,50,32,40,75,52,32,75,41,41,41,41,
+32,40,40,65,32,58,50,48,56,32,40,85,32,40,75,50,32,40,75,52,
+32,65,41,41,41,41,32,40,40,65,32,58,50,48,57,32,40,40,40,83,
+39,32,95,50,56,52,41,32,95,50,48,51,41,32,40,40,66,32,40,95,
+50,56,52,32,40,40,67,32,40,95,53,55,53,32,95,51,49,48,41,41,
+32,40,40,95,53,56,49,32,95,51,49,48,41,32,40,95,51,57,50,32,
+35,49,41,41,41,41,41,32,95,50,48,52,41,41,41,32,40,40,65,32,
+58,50,49,48,32,40,40,40,83,39,32,95,50,56,52,41,32,95,50,48,
+51,41,32,40,40,66,32,40,95,50,56,52,32,40,40,95,53,56,57,32,
+95,51,49,48,41,32,40,40,95,53,56,49,32,95,51,49,48,41,32,40,
+95,51,57,50,32,35,49,41,41,41,41,41,32,95,50,48,52,41,41,41,
+32,40,40,65,32,58,50,49,49,32,40,75,32,40,110,111,68,101,102,97,
+117,108,116,32,34,69,110,117,109,46,116,111,69,110,117,109,34,41,41,41,
+32,40,40,65,32,58,50,49,50,32,40,75,32,40,110,111,68,101,102,97,
+117,108,116,32,34,69,110,117,109,46,102,114,111,109,69,110,117,109,34,41,
+41,41,32,40,40,65,32,58,50,49,51,32,40,40,40,83,39,32,66,41,
+32,40,40,66,32,95,52,51,49,41,32,95,50,48,51,41,41,32,40,40,
+66,32,40,66,32,40,95,50,48,53,32,95,50,49,57,41,41,41,32,95,
+50,48,52,41,41,41,32,40,40,65,32,58,50,49,52,32,40,40,40,83,
+39,32,66,41,32,40,66,39,32,40,40,66,32,95,52,51,49,41,32,95,
+50,48,51,41,41,41,32,40,40,40,83,39,32,40,67,39,32,66,41,41,
+32,40,40,66,32,40,66,32,40,95,50,48,54,32,95,50,49,57,41,41,
+41,32,95,50,48,52,41,41,32,95,50,48,52,41,41,41,32,40,40,65,
+32,58,50,49,53,32,40,40,40,83,39,32,66,41,32,40,66,39,32,40,
+40,66,32,95,52,51,49,41,32,95,50,48,51,41,41,41,32,40,40,40,
+83,39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,40,95,
+50,48,55,32,95,50,49,57,41,41,41,32,95,50,48,52,41,41,32,95,
+50,48,52,41,41,41,32,40,40,65,32,58,50,49,54,32,40,40,40,83,
+39,32,66,41,32,40,66,39,32,40,66,39,32,40,40,66,32,95,52,51,
+49,41,32,95,50,48,51,41,41,41,41,32,40,40,40,83,39,32,40,67,
+39,32,40,67,39,32,66,41,41,41,32,40,40,40,83,39,32,40,67,39,
+32,66,41,41,32,40,40,66,32,40,66,32,40,95,50,48,56,32,95,50,
+49,57,41,41,41,32,95,50,48,52,41,41,32,95,50,48,52,41,41,32,
+95,50,48,52,41,41,41,32,40,40,65,32,58,50,49,55,32,40,40,40,
+83,39,32,66,41,32,40,40,66,32,95,52,51,49,41,32,40,40,66,32,
+95,50,48,51,41,32,40,85,32,75,41,41,41,41,32,40,40,40,83,39,
+32,40,83,39,32,40,95,50,48,55,32,95,50,49,57,41,41,41,32,40,
+40,66,32,95,50,48,52,41,32,40,85,32,75,41,41,41,32,40,40,40,
+83,39,32,66,41,32,40,40,66,32,95,50,48,52,41,32,40,85,32,75,
+41,41,41,32,40,40,66,32,95,50,57,49,41,32,40,40,66,32,95,49,
+51,56,41,32,40,85,32,65,41,41,41,41,41,41,41,32,40,40,65,32,
+58,50,49,56,32,40,40,40,83,39,32,40,67,39,32,66,41,41,32,40,
+40,40,83,39,32,40,83,39,32,67,41,41,32,40,40,40,83,39,32,40,
+83,39,32,40,83,39,32,83,41,41,41,32,40,40,66,32,40,66,32,40,
+40,83,39,32,83,41,32,40,95,53,57,54,32,95,51,49,53,41,41,41,
+41,32,40,40,40,83,39,32,66,41,32,40,66,39,32,40,66,39,32,40,
+40,66,32,95,52,51,49,41,32,40,40,66,32,95,50,48,51,41,32,40,
+85,32,75,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,40,67,
+39,32,67,41,32,40,67,32,40,95,50,48,56,32,95,50,49,57,41,41,
+41,41,41,32,40,40,40,83,39,32,66,41,32,40,40,66,32,95,50,48,
+52,41,32,40,85,32,75,41,41,41,32,40,40,66,32,95,50,57,49,41,
+32,40,40,66,32,95,49,51,55,41,32,40,85,32,65,41,41,41,41,41,
+41,41,41,32,40,40,40,83,39,32,66,41,32,40,66,39,32,40,66,39,
+32,40,40,66,32,95,52,51,49,41,32,40,40,66,32,95,50,48,51,41,
+32,40,85,32,75,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,
+40,67,39,32,67,41,32,40,67,32,40,95,50,48,56,32,95,50,49,57,
+41,41,41,41,41,32,40,40,40,83,39,32,66,41,32,40,40,66,32,95,
+50,48,52,41,32,40,85,32,75,41,41,41,32,40,40,66,32,95,50,57,
+49,41,32,40,40,66,32,95,49,51,56,41,32,40,85,32,65,41,41,41,
+41,41,41,41,41,32,40,40,66,32,95,50,48,52,41,32,40,85,32,75,
+41,41,41,41,32,40,40,66,32,95,50,48,52,41,32,40,85,32,75,41,
+41,41,41,32,40,40,65,32,58,50,49,57,32,40,40,40,40,40,40,40,
+40,95,50,48,48,32,40,40,67,32,40,95,53,55,53,32,95,51,49,48,
+41,41,32,40,40,95,53,56,49,32,95,51,49,48,41,32,40,95,51,57,
+50,32,35,49,41,41,41,41,32,40,40,67,32,40,95,53,55,54,32,95,
+51,49,48,41,41,32,40,40,95,53,56,49,32,95,51,49,48,41,32,40,
+95,51,57,50,32,35,49,41,41,41,41,32,73,41,32,73,41,32,40,40,
+83,32,95,53,48,51,41,32,40,40,66,32,40,95,50,48,53,32,95,50,
+49,57,41,41,32,40,40,67,32,40,95,53,55,53,32,95,51,49,48,41,
+41,32,35,49,41,41,41,41,32,40,40,40,83,39,32,40,67,39,32,89,
+41,41,32,40,40,66,32,40,66,32,40,66,32,40,83,32,95,53,48,51,
+41,41,41,41,32,40,40,66,32,40,66,32,40,67,32,66,41,41,41,32,
+40,40,66,32,40,66,32,40,67,32,40,95,53,55,53,32,95,51,49,48,
+41,41,41,41,32,40,67,32,40,95,53,55,54,32,95,51,49,48,41,41,
+41,41,41,41,32,73,41,41,32,40,40,66,32,40,40,67,39,32,95,52,
+54,52,41,32,40,67,32,40,95,53,57,52,32,95,51,49,53,41,41,41,
+41,32,40,95,50,48,53,32,95,50,49,57,41,41,41,32,40,40,40,83,
+39,32,83,41,32,40,40,40,83,39,32,40,83,39,32,83,39,41,41,32,
+40,67,32,40,95,53,57,53,32,95,51,49,53,41,41,41,32,40,40,66,
+32,40,66,32,40,40,67,39,32,95,52,54,52,41,32,40,67,32,40,95,
+53,57,54,32,95,51,49,53,41,41,41,41,41,32,40,95,50,48,54,32,
+95,50,49,57,41,41,41,41,32,40,40,66,32,40,66,32,40,40,67,39,
+32,95,52,54,52,41,32,40,67,32,40,95,53,57,52,32,95,51,49,53,
+41,41,41,41,41,32,40,95,50,48,54,32,95,50,49,57,41,41,41,41,
+41,32,40,40,65,32,58,50,50,48,32,40,40,40,40,40,40,40,40,95,
+50,48,48,32,40,95,50,48,57,32,95,50,50,48,41,41,32,40,95,50,
+49,48,32,95,50,50,48,41,41,32,40,40,67,32,40,40,83,32,40,40,
+67,32,95,49,53,55,54,41,32,35,48,41,41,32,40,40,67,32,40,40,
+67,32,40,40,67,32,95,49,53,55,54,41,32,35,49,41,41,32,40,95,
+50,55,32,34,69,110,117,109,46,66,111,111,108,46,116,111,69,110,117,109,
+58,32,98,97,100,32,97,114,103,34,41,41,41,32,95,49,51,53,41,41,
+41,32,95,49,51,52,41,41,32,40,40,80,32,35,48,41,32,35,49,41,
+41,32,40,95,50,49,51,32,95,50,50,48,41,41,32,40,95,50,49,52,
+32,95,50,50,48,41,41,32,40,95,50,49,53,32,95,50,50,48,41,41,
+32,40,95,50,49,54,32,95,50,50,48,41,41,41,32,40,40,65,32,58,
+50,50,49,32,40,40,40,40,40,40,40,40,95,50,48,48,32,40,95,50,
+48,57,32,95,50,50,49,41,41,32,40,95,50,49,48,32,95,50,50,49,
+41,41,32,95,49,54,51,49,41,32,95,49,54,51,50,41,32,40,95,50,
+49,51,32,95,50,50,49,41,41,32,40,95,50,49,52,32,95,50,50,49,
+41,41,32,40,95,50,49,53,32,95,50,50,49,41,41,32,40,95,50,49,
+54,32,95,50,50,49,41,41,41,32,40,40,65,32,58,50,50,50,32,80,
+41,32,40,40,65,32,58,50,50,51,32,40,85,32,75,41,41,32,40,40,
+65,32,58,50,50,52,32,40,85,32,65,41,41,32,40,40,65,32,58,50,
+50,53,32,40,75,32,40,110,111,68,101,102,97,117,108,116,32,34,69,113,
+46,61,61,34,41,41,41,32,40,40,65,32,58,50,50,54,32,40,40,40,
+67,39,32,40,67,39,32,67,41,41,32,40,40,40,67,39,32,40,67,39,
+32,67,41,41,32,95,50,50,51,41,32,95,49,51,53,41,41,32,95,49,
+51,52,41,41,32,40,40,65,32,58,50,50,55,32,40,40,66,32,40,66,
+32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
+66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
+40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
+32,67,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
+32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
+66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
+40,66,32,40,66,32,40,66,32,67,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,
+66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
+40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
+32,40,66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,
+66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
+40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
+32,40,66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,
+32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
+66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
+40,66,32,40,66,32,40,66,32,67,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,
+66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
+40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
+32,67,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,
+40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
+66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
+40,66,32,40,66,32,40,66,32,67,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,
+40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
+32,40,66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
+40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
+32,40,66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,
+66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
+40,66,32,40,66,32,40,66,32,67,41,41,41,41,41,41,41,41,41,41,
+41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
+40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
+32,67,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,
+66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
+40,66,32,40,66,32,40,66,32,67,41,41,41,41,41,41,41,41,41,41,
+41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
+32,40,66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,41,41,
+41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
+32,40,66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,41,41,
+41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
+40,66,32,40,66,32,40,66,32,67,41,41,41,41,41,41,41,41,32,40,
+40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
+32,67,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
+40,66,32,40,66,32,40,66,32,67,41,41,41,41,41,41,32,40,40,66,
+32,40,66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,41,32,
+40,40,66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,32,40,
+40,66,32,40,66,32,40,66,32,67,41,41,41,32,40,40,66,32,40,66,
+32,67,41,41,32,80,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,32,40,40,65,32,58,50,50,56,32,40,85,
+32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,
+90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,
+40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,
+32,40,90,32,75,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,32,40,40,65,32,58,50,50,57,32,40,85,
+32,40,75,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,
+90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,
+40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,
+32,40,90,32,75,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,32,40,40,65,32,58,50,51,48,32,40,85,
+32,40,75,50,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,
+40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,
+32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,
+90,32,75,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,32,40,40,65,32,58,50,51,49,32,40,85,32,40,75,
+51,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,
+40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,
+32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,75,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,
+40,65,32,58,50,51,50,32,40,85,32,40,75,52,32,40,90,32,40,90,
+32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,
+90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,
+40,90,32,40,90,32,75,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,32,40,40,65,32,58,50,51,51,32,40,85,32,
+40,75,32,40,75,52,32,40,90,32,40,90,32,40,90,32,40,90,32,40,
+90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,
+40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,75,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,65,
+32,58,50,51,52,32,40,85,32,40,75,50,32,40,75,52,32,40,90,32,
+40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,
+32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,
+90,32,75,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,32,40,40,65,32,58,50,51,53,32,40,85,32,40,75,51,32,40,
+75,52,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,
+32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,
+90,32,40,90,32,75,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,32,40,40,65,32,58,50,51,54,32,40,85,32,40,75,52,
+32,40,75,52,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,
+40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,
+32,40,90,32,75,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,32,40,40,65,32,58,50,51,55,32,40,85,32,40,75,32,40,75,
+52,32,40,75,52,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,
+32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,
+90,32,75,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+32,40,40,65,32,58,50,51,56,32,40,85,32,40,75,50,32,40,75,52,
+32,40,75,52,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,
+40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,75,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,65,32,
+58,50,51,57,32,40,85,32,40,75,51,32,40,75,52,32,40,75,52,32,
+40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,
+32,40,90,32,40,90,32,40,90,32,75,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,32,40,40,65,32,58,50,52,48,32,40,85,32,40,
+75,52,32,40,75,52,32,40,75,52,32,40,90,32,40,90,32,40,90,32,
+40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,75,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,50,
+52,49,32,40,85,32,40,75,32,40,75,52,32,40,75,52,32,40,75,52,
+32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,
+90,32,40,90,32,75,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+32,40,40,65,32,58,50,52,50,32,40,85,32,40,75,50,32,40,75,52,
+32,40,75,52,32,40,75,52,32,40,90,32,40,90,32,40,90,32,40,90,
+32,40,90,32,40,90,32,40,90,32,75,41,41,41,41,41,41,41,41,41,
+41,41,41,41,32,40,40,65,32,58,50,52,51,32,40,85,32,40,75,51,
+32,40,75,52,32,40,75,52,32,40,75,52,32,40,90,32,40,90,32,40,
+90,32,40,90,32,40,90,32,40,90,32,75,41,41,41,41,41,41,41,41,
+41,41,41,41,32,40,40,65,32,58,50,52,52,32,40,85,32,40,75,52,
+32,40,75,52,32,40,75,52,32,40,75,52,32,40,90,32,40,90,32,40,
+90,32,40,90,32,40,90,32,75,41,41,41,41,41,41,41,41,41,41,41,
+32,40,40,65,32,58,50,52,53,32,40,85,32,40,75,32,40,75,52,32,
+40,75,52,32,40,75,52,32,40,75,52,32,40,90,32,40,90,32,40,90,
+32,40,90,32,75,41,41,41,41,41,41,41,41,41,41,41,32,40,40,65,
+32,58,50,52,54,32,40,85,32,40,75,50,32,40,75,52,32,40,75,52,
+32,40,75,52,32,40,75,52,32,40,90,32,40,90,32,40,90,32,75,41,
+41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,50,52,55,32,40,
+85,32,40,75,51,32,40,75,52,32,40,75,52,32,40,75,52,32,40,75,
+52,32,40,90,32,40,90,32,75,41,41,41,41,41,41,41,41,41,32,40,
+40,65,32,58,50,52,56,32,40,85,32,40,75,52,32,40,75,52,32,40,
+75,52,32,40,75,52,32,40,75,52,32,40,90,32,75,41,41,41,41,41,
+41,41,41,32,40,40,65,32,58,50,52,57,32,40,85,32,40,75,32,40,
+75,52,32,40,75,52,32,40,75,52,32,40,75,52,32,40,75,52,32,75,
+41,41,41,41,41,41,41,41,32,40,40,65,32,58,50,53,48,32,40,85,
+32,40,75,32,40,75,52,32,40,75,52,32,40,75,52,32,40,75,52,32,
+40,75,52,32,65,41,41,41,41,41,41,41,41,32,40,40,65,32,58,50,
+53,49,32,40,75,32,40,110,111,68,101,102,97,117,108,116,32,34,70,108,
+111,97,116,105,110,103,46,112,105,34,41,41,41,32,40,40,65,32,58,50,
+53,50,32,40,75,32,40,110,111,68,101,102,97,117,108,116,32,34,70,108,
+111,97,116,105,110,103,46,101,120,112,34,41,41,41,32,40,40,65,32,58,
+50,53,51,32,40,75,32,40,110,111,68,101,102,97,117,108,116,32,34,70,
+108,111,97,116,105,110,103,46,108,111,103,34,41,41,41,32,40,40,65,32,
+58,50,53,52,32,40,40,40,83,39,32,67,41,32,95,50,51,51,41,32,
+40,40,83,32,40,40,40,83,39,32,95,50,55,53,41,32,95,50,50,56,
+41,32,40,40,40,67,39,32,95,53,56,49,41,32,40,40,66,32,95,50,
+55,52,41,32,95,50,50,56,41,41,32,40,95,51,57,50,32,35,49,41,
+41,41,41,32,40,40,40,67,39,32,95,53,56,49,41,32,40,40,66,32,
+95,50,55,52,41,32,95,50,50,56,41,41,32,40,95,51,57,50,32,35,
+50,41,41,41,41,41,32,40,40,65,32,58,50,53,53,32,40,40,40,83,
+39,32,66,41,32,40,66,39,32,95,50,51,48,41,41,32,40,40,40,83,
+39,32,66,41,32,40,40,66,32,95,53,55,55,41,32,40,40,66,32,95,
+50,55,52,41,32,95,50,50,56,41,41,41,32,95,50,51,49,41,41,41,
+32,40,40,65,32,58,50,53,54,32,40,40,40,83,39,32,66,41,32,40,
+40,40,83,39,32,67,39,41,32,40,40,66,32,95,50,55,53,41,32,95,
+50,50,56,41,41,32,95,50,51,49,41,41,32,95,50,51,49,41,41,32,
+40,40,65,32,58,50,53,55,32,40,75,32,40,110,111,68,101,102,97,117,
+108,116,32,34,70,108,111,97,116,105,110,103,46,115,105,110,34,41,41,41,
+32,40,40,65,32,58,50,53,56,32,40,75,32,40,110,111,68,101,102,97,
+117,108,116,32,34,70,108,111,97,116,105,110,103,46,99,111,115,34,41,41,
+41,32,40,40,65,32,58,50,53,57,32,40,40,83,32,40,40,40,83,39,
+32,83,39,41,32,40,40,66,32,95,50,55,53,41,32,95,50,50,56,41,
+41,32,95,50,51,53,41,41,32,95,50,51,54,41,41,32,40,40,65,32,
+58,50,54,48,32,40,75,32,40,110,111,68,101,102,97,117,108,116,32,34,
+70,108,111,97,116,105,110,103,46,97,115,105,110,34,41,41,41,32,40,40,
+65,32,58,50,54,49,32,40,75,32,40,110,111,68,101,102,97,117,108,116,
+32,34,70,108,111,97,116,105,110,103,46,97,99,111,115,34,41,41,41,32,
+40,40,65,32,58,50,54,50,32,40,75,32,40,110,111,68,101,102,97,117,
+108,116,32,34,70,108,111,97,116,105,110,103,46,97,116,97,110,34,41,41,
+41,32,40,40,65,32,58,50,54,51,32,40,40,83,32,40,40,40,83,39,
+32,67,39,41,32,40,40,66,32,95,50,55,53,41,32,95,50,50,56,41,
+41,32,40,40,83,32,40,40,40,83,39,32,83,39,41,32,40,40,66,32,
+95,53,55,54,41,32,40,40,66,32,95,50,55,52,41,32,95,50,50,56,
+41,41,41,32,95,50,51,48,41,41,32,40,40,40,83,39,32,66,41,32,
+95,50,51,48,41,32,40,40,66,32,95,53,55,56,41,32,40,40,66,32,
+95,50,55,52,41,32,95,50,50,56,41,41,41,41,41,41,32,40,40,40,
+67,39,32,95,53,56,49,41,32,40,40,66,32,95,50,55,52,41,32,95,
+50,50,56,41,41,32,40,95,51,57,50,32,35,50,41,41,41,41,32,40,
+40,65,32,58,50,54,52,32,40,40,83,32,40,40,40,83,39,32,67,39,
+41,32,40,40,66,32,95,50,55,53,41,32,95,50,50,56,41,41,32,40,
+40,83,32,40,40,40,83,39,32,83,39,41,32,40,40,66,32,95,53,55,
+53,41,32,40,40,66,32,95,50,55,52,41,32,95,50,50,56,41,41,41,
+32,95,50,51,48,41,41,32,40,40,40,83,39,32,66,41,32,95,50,51,
+48,41,32,40,40,66,32,95,53,55,56,41,32,40,40,66,32,95,50,55,
+52,41,32,95,50,50,56,41,41,41,41,41,41,32,40,40,40,67,39,32,
+95,53,56,49,41,32,40,40,66,32,95,50,55,52,41,32,95,50,50,56,
+41,41,32,40,95,51,57,50,32,35,50,41,41,41,41,32,40,40,65,32,
+58,50,54,53,32,40,40,83,32,40,40,40,83,39,32,83,39,41,32,40,
+40,66,32,95,50,55,53,41,32,95,50,50,56,41,41,32,95,50,52,49,
+41,41,32,95,50,52,50,41,41,32,40,40,65,32,58,50,54,54,32,40,
+40,40,83,39,32,66,41,32,95,50,51,49,41,32,40,40,40,83,39,32,
+83,41,32,40,40,66,32,95,53,55,53,41,32,40,40,66,32,95,50,55,
+52,41,32,95,50,50,56,41,41,41,32,40,40,40,83,39,32,66,41,32,
+95,50,51,50,41,32,40,40,83,32,40,40,40,83,39,32,67,39,41,32,
+40,40,66,32,95,53,55,53,41,32,40,40,66,32,95,50,55,52,41,32,
+95,50,50,56,41,41,41,32,40,40,40,67,39,32,83,41,32,40,40,66,
+32,95,53,55,55,41,32,40,40,66,32,95,50,55,52,41,32,95,50,50,
+56,41,41,41,32,73,41,41,41,32,40,40,40,67,39,32,95,53,56,49,
+41,32,40,40,66,32,95,50,55,52,41,32,95,50,50,56,41,41,32,40,
+95,51,57,50,32,35,49,41,41,41,41,41,41,41,32,40,40,65,32,58,
+50,54,55,32,40,40,40,83,39,32,66,41,32,95,50,51,49,41,32,40,
+40,40,83,39,32,83,41,32,40,40,66,32,95,53,55,53,41,32,40,40,
+66,32,95,50,55,52,41,32,95,50,50,56,41,41,41,32,40,40,40,83,
+39,32,66,41,32,95,50,51,50,41,32,40,40,83,32,40,40,40,83,39,
+32,67,39,41,32,40,40,66,32,95,53,55,54,41,32,40,40,66,32,95,
+50,55,52,41,32,95,50,50,56,41,41,41,32,40,40,40,67,39,32,83,
+41,32,40,40,66,32,95,53,55,55,41,32,40,40,66,32,95,50,55,52,
+41,32,95,50,50,56,41,41,41,32,73,41,41,41,32,40,40,40,67,39,
+32,95,53,56,49,41,32,40,40,66,32,95,50,55,52,41,32,95,50,50,
+56,41,41,32,40,95,51,57,50,32,35,49,41,41,41,41,41,41,41,32,
+40,40,65,32,58,50,54,56,32,40,40,83,32,40,40,40,83,39,32,67,
+39,41,32,40,40,66,32,95,50,55,53,41,32,95,50,50,56,41,41,32,
+40,40,40,83,39,32,66,41,32,95,50,51,49,41,32,40,40,83,32,40,
+40,40,83,39,32,83,39,41,32,40,40,66,32,95,50,55,53,41,32,95,
+50,50,56,41,41,32,40,40,40,83,39,32,67,41,32,40,40,66,32,95,
+53,55,53,41,32,40,40,66,32,95,50,55,52,41,32,95,50,50,56,41,
+41,41,32,40,40,40,67,39,32,95,53,56,49,41,32,40,40,66,32,95,
+50,55,52,41,32,95,50,50,56,41,41,32,40,95,51,57,50,32,35,49,
+41,41,41,41,41,32,40,40,40,83,39,32,67,41,32,40,40,66,32,95,
+53,55,54,41,32,40,40,66,32,95,50,55,52,41,32,95,50,50,56,41,
+41,41,32,40,40,40,67,39,32,95,53,56,49,41,32,40,40,66,32,95,
+50,55,52,41,32,95,50,50,56,41,41,32,40,95,51,57,50,32,35,49,
+41,41,41,41,41,41,41,32,40,40,40,67,39,32,95,53,56,49,41,32,
+40,40,66,32,95,50,55,52,41,32,95,50,50,56,41,41,32,40,95,51,
+57,50,32,35,50,41,41,41,41,32,40,40,65,32,58,50,54,57,32,40,
+40,40,83,39,32,66,41,32,95,50,51,49,41,32,40,40,40,83,39,32,
+95,53,55,53,41,32,40,40,66,32,95,50,55,52,41,32,95,50,50,56,
+41,41,32,40,40,40,67,39,32,95,53,56,49,41,32,40,40,66,32,95,
+50,55,52,41,32,95,50,50,56,41,41,32,40,95,51,57,50,32,35,49,
+41,41,41,41,41,32,40,40,65,32,58,50,55,48,32,40,40,83,32,40,
+40,40,83,39,32,67,39,41,32,40,40,66,32,95,53,55,54,41,32,40,
+40,66,32,95,50,55,52,41,32,95,50,50,56,41,41,41,32,95,50,51,
+48,41,41,32,40,40,40,67,39,32,95,53,56,49,41,32,40,40,66,32,
+95,50,55,52,41,32,95,50,50,56,41,41,32,40,95,51,57,50,32,35,
+49,41,41,41,41,32,40,40,65,32,58,50,55,49,32,40,40,40,83,39,
+32,66,41,32,95,50,52,55,41,32,95,50,51,48,41,41,32,40,40,65,
+32,58,50,55,50,32,40,40,40,83,39,32,66,41,32,95,50,52,55,41,
+32,40,40,40,83,39,32,66,41,32,40,40,66,32,95,53,55,56,41,32,
+40,40,66,32,95,50,55,52,41,32,95,50,50,56,41,41,41,32,95,50,
+51,48,41,41,41,32,40,40,65,32,58,50,55,51,32,40,40,66,32,40,
+66,32,40,66,32,67,41,41,41,32,40,40,66,32,40,66,32,67,41,41,
+32,80,41,41,41,32,40,40,65,32,58,50,55,52,32,40,85,32,40,90,
+32,40,90,32,75,41,41,41,41,32,40,40,65,32,58,50,55,53,32,40,
+85,32,40,75,32,40,90,32,75,41,41,41,41,32,40,40,65,32,58,50,
+55,54,32,40,85,32,40,75,50,32,75,41,41,41,32,40,40,65,32,58,
+50,55,55,32,40,85,32,40,75,50,32,65,41,41,41,32,40,40,65,32,
+58,50,55,56,32,40,75,32,40,110,111,68,101,102,97,117,108,116,32,34,
+70,114,97,99,116,105,111,110,97,108,46,47,34,41,41,41,32,40,40,65,
+32,58,50,55,57,32,40,40,83,32,95,50,55,53,41,32,40,40,40,67,
+39,32,95,53,56,49,41,32,95,50,55,52,41,32,40,95,51,57,50,32,
+35,49,41,41,41,41,32,40,40,65,32,58,50,56,48,32,40,75,32,40,
+110,111,68,101,102,97,117,108,116,32,34,70,114,97,99,116,105,111,110,97,
+108,46,102,114,111,109,82,97,116,105,111,110,97,108,34,41,41,41,32,40,
+40,65,32,58,50,56,49,32,40,40,40,83,39,32,40,83,39,32,83,41,
+41,32,40,40,40,83,39,32,66,41,32,40,40,66,32,83,41,32,40,40,
+40,83,39,32,67,41,32,40,40,66,32,95,53,57,54,41,32,40,85,32,
+40,75,32,65,41,41,41,41,32,40,40,40,67,39,32,95,53,56,49,41,
+32,40,40,66,32,40,85,32,65,41,41,32,40,40,66,32,95,51,57,56,
+41,32,40,85,32,40,75,32,75,41,41,41,41,41,32,40,95,51,57,50,
+32,35,48,41,41,41,41,41,32,40,40,40,83,39,32,66,41,32,40,66,
+39,32,40,40,66,32,95,50,55,54,41,32,40,85,32,40,90,32,75,41,
+41,41,41,41,32,40,40,40,83,39,32,40,67,39,32,66,41,41,32,40,
+40,66,32,95,52,49,55,41,32,40,40,40,83,39,32,67,41,32,40,40,
+40,83,39,32,80,41,32,40,40,66,32,95,50,55,52,41,32,40,85,32,
+40,90,32,75,41,41,41,41,32,40,85,32,40,75,32,75,41,41,41,41,
+32,40,85,32,40,75,32,65,41,41,41,41,41,32,40,40,66,32,95,53,
+55,56,41,32,40,40,66,32,40,85,32,65,41,41,32,40,40,66,32,95,
+51,57,56,41,32,40,85,32,40,75,32,75,41,41,41,41,41,41,41,41,
+41,32,40,40,66,32,95,52,49,55,41,32,40,40,40,83,39,32,67,41,
+32,40,40,40,83,39,32,80,41,32,40,40,66,32,95,50,55,52,41,32,
+40,85,32,40,90,32,75,41,41,41,41,32,40,85,32,40,75,32,75,41,
+41,41,41,32,40,85,32,40,75,32,65,41,41,41,41,41,41,32,40,40,
+65,32,58,50,56,50,32,73,41,32,40,40,65,32,58,50,56,51,32,40,
+83,32,95,49,54,50,54,41,41,32,40,40,65,32,58,50,56,52,32,66,
+41,32,40,40,65,32,58,50,56,53,32,73,41,32,40,40,65,32,58,50,
+56,54,32,75,41,32,40,40,65,32,58,50,56,55,32,67,41,32,40,40,
+65,32,58,50,56,56,32,95,49,54,50,53,41,32,40,40,65,32,58,50,
+56,57,32,85,41,32,40,40,65,32,58,50,57,48,32,40,40,40,67,39,
+32,40,83,39,32,40,67,39,32,66,41,41,41,32,66,41,32,73,41,41,
+32,40,40,65,32,58,50,57,49,32,95,50,56,54,41,32,40,40,65,32,
+58,50,57,50,32,95,49,54,50,54,41,32,40,40,65,32,58,50,57,51,
+32,80,41,32,40,40,65,32,58,50,57,52,32,40,85,32,75,41,41,32,
+40,40,65,32,58,50,57,53,32,40,85,32,65,41,41,32,40,40,65,32,
+58,50,57,54,32,40,75,32,40,110,111,68,101,102,97,117,108,116,32,34,
+70,117,110,99,116,111,114,46,102,109,97,112,34,41,41,41,32,40,40,65,
+32,58,50,57,55,32,40,40,40,67,39,32,95,50,56,52,41,32,95,50,
+57,52,41,32,95,50,56,54,41,41,32,40,40,65,32,58,50,57,56,32,
+95,50,57,52,41,32,40,40,65,32,58,50,57,57,32,73,41,32,40,40,
+65,32,58,51,48,48,32,40,40,95,50,57,51,32,40,66,32,95,50,57,
+57,41,41,32,40,95,50,57,55,32,95,51,48,48,41,41,41,32,40,40,
+65,32,58,51,48,49,32,40,40,40,40,40,95,49,50,32,95,51,48,48,
+41,32,95,50,57,57,41,32,40,66,32,95,50,57,57,41,41,32,40,95,
+50,48,32,95,51,48,49,41,41,32,40,95,50,49,32,95,51,48,49,41,
+41,41,32,40,40,65,32,58,51,48,50,32,40,40,40,40,95,51,51,32,
+95,51,48,49,41,32,85,41,32,40,95,51,57,32,95,51,48,50,41,41,
+32,40,95,52,48,32,95,51,48,50,41,41,41,32,40,40,65,32,58,51,
+48,51,32,40,40,83,32,40,40,40,83,39,32,95,49,56,52,48,41,32,
+40,40,66,32,40,40,67,39,32,66,41,32,40,40,66,32,95,49,56,53,
+48,41,32,40,40,67,32,40,95,53,57,54,32,95,51,49,53,41,41,32,
+35,49,49,41,41,41,41,32,40,40,66,32,40,66,32,40,95,50,56,52,
+32,40,95,49,56,52,57,32,34,73,100,101,110,116,105,116,121,32,34,41,
+41,41,41,32,40,40,67,32,95,49,56,52,49,41,32,35,49,49,41,41,
+41,41,32,40,40,66,32,95,49,56,52,53,41,32,95,51,48,51,41,41,
+41,32,40,40,66,32,95,49,56,52,54,41,32,95,51,48,51,41,41,41,
+32,40,40,65,32,58,51,48,52,32,73,41,32,40,40,65,32,58,51,48,
+53,32,40,40,95,50,50,50,32,95,49,54,54,49,41,32,40,95,50,50,
+54,32,95,51,48,53,41,41,41,32,40,40,65,32,58,51,48,54,32,40,
+40,40,67,39,32,95,49,54,51,52,41,32,40,95,49,54,53,55,32,35,
+49,41,41,32,40,40,66,32,95,49,54,51,54,41,32,95,51,48,52,41,
+41,41,32,40,40,65,32,58,51,48,55,32,40,40,67,32,95,49,54,53,
+57,41,32,35,48,41,41,32,40,40,65,32,58,51,48,56,32,40,40,67,
+32,95,49,54,54,48,41,32,35,48,41,41,32,40,40,65,32,58,51,48,
+57,32,40,40,67,39,32,40,40,83,39,32,95,49,54,51,52,41,32,40,
+40,67,32,95,49,54,53,57,41,32,35,48,41,41,41,32,40,40,67,39,
+32,66,41,32,40,40,67,32,95,49,54,54,48,41,32,35,48,41,41,41,
+41,32,40,40,65,32,58,51,49,48,32,40,40,40,40,40,40,40,95,53,
+55,52,32,95,49,53,54,57,41,32,95,49,53,55,48,41,32,95,49,53,
+55,49,41,32,95,49,53,55,53,41,32,40,40,83,32,40,40,83,32,40,
+40,67,32,40,95,53,57,51,32,95,51,49,53,41,41,32,35,48,41,41,
+32,73,41,41,32,40,95,53,55,56,32,95,51,49,48,41,41,41,32,40,
+40,67,32,40,40,67,32,40,40,67,32,40,40,67,32,40,95,53,57,50,
+32,95,51,49,53,41,41,32,35,48,41,41,32,40,40,95,53,55,56,32,
+95,51,49,48,41,32,40,40,95,53,56,49,32,95,51,49,48,41,32,40,
+95,51,57,50,32,35,49,41,41,41,41,41,32,35,48,41,41,32,35,49,
+41,41,32,95,51,57,51,41,41,32,40,40,65,32,58,51,49,49,32,40,
+40,40,40,40,40,40,40,95,51,57,55,32,40,40,80,32,95,51,49,52,
+41,32,95,51,49,48,41,41,32,95,49,53,55,50,41,32,95,49,53,55,
+51,41,32,40,95,52,48,56,32,95,51,49,49,41,41,32,40,95,52,48,
+57,32,95,51,49,49,41,41,32,40,95,52,49,48,32,95,51,49,49,41,
+41,32,40,95,52,49,49,32,95,51,49,49,41,41,32,95,51,57,50,41,
+41,32,40,40,65,32,58,51,49,50,32,40,40,95,49,51,54,32,40,40,
+40,95,53,55,53,32,95,51,49,48,41,32,40,95,49,54,49,54,32,40,
+40,95,49,53,57,57,32,40,95,49,54,48,55,32,35,48,41,41,32,35,
+50,41,41,41,32,35,49,41,41,32,40,95,49,54,49,54,32,40,40,95,
+49,53,57,57,32,40,95,49,54,48,55,32,35,48,41,41,32,35,50,41,
+41,41,41,32,40,40,65,32,58,51,49,51,32,40,95,54,50,55,32,40,
+40,66,32,95,54,50,53,41,32,95,51,57,50,41,41,41,32,40,40,65,
+32,58,51,49,52,32,40,40,95,50,50,50,32,95,49,53,55,54,41,32,
+95,49,53,55,55,41,41,32,40,40,65,32,58,51,49,53,32,40,40,40,
+40,40,40,40,40,95,53,57,48,32,95,51,49,52,41,32,95,49,54,50,
+56,41,32,95,49,53,55,56,41,32,95,49,53,55,57,41,32,95,49,53,
+56,48,41,32,95,49,53,56,49,41,32,40,95,54,48,52,32,95,51,49,
+53,41,41,32,40,95,54,48,53,32,95,51,49,53,41,41,41,32,40,40,
+65,32,58,51,49,54,32,40,40,40,95,49,56,52,48,32,40,95,49,56,
+52,52,32,95,51,49,54,41,41,32,95,51,49,55,41,32,40,95,49,56,
+52,54,32,95,51,49,54,41,41,41,32,40,40,65,32,58,51,49,55,32,
+40,40,83,32,40,40,83,32,40,40,67,32,40,95,53,57,51,32,95,51,
+49,53,41,41,32,35,48,41,41,32,40,40,66,32,95,51,49,56,41,32,
+40,95,53,55,56,32,95,51,49,48,41,41,41,41,32,40,40,66,32,40,
+95,53,48,51,32,35,52,53,41,41,32,95,51,49,56,41,41,41,32,40,
+40,65,32,58,51,49,56,32,40,40,83,32,40,40,67,32,40,40,40,83,
+39,32,83,39,41,32,40,40,67,32,40,95,53,57,53,32,95,51,49,53,
+41,41,32,40,40,95,53,55,56,32,95,51,49,48,41,32,40,40,95,53,
+56,49,32,95,51,49,48,41,32,40,95,51,57,50,32,35,49,48,41,41,
+41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,95,53,48,
+52,41,32,40,40,66,32,95,51,49,56,41,32,40,40,67,32,40,95,51,
+57,57,32,95,51,49,49,41,41,32,35,49,48,41,41,41,41,32,40,40,
+67,32,79,41,32,75,41,41,41,41,32,40,40,67,32,79,41,32,75,41,
+41,41,32,40,40,66,32,95,49,54,51,49,41,32,40,40,66,32,40,40,
+95,53,55,54,32,95,51,49,48,41,32,40,95,49,54,51,50,32,35,52,
+56,41,41,41,32,40,40,67,32,40,95,52,48,48,32,95,51,49,49,41,
+41,32,35,49,48,41,41,41,41,41,32,40,40,65,32,58,51,49,57,32,
+40,90,32,75,41,41,32,40,40,65,32,58,51,50,48,32,40,40,66,32,
+90,41,32,40,40,66,32,40,66,32,90,41,41,32,80,41,41,41,32,40,
+40,65,32,58,51,50,49,32,40,40,66,32,40,66,32,40,66,32,90,41,
+41,41,32,40,40,66,32,40,66,32,40,66,32,90,41,41,41,32,40,40,
+66,32,40,66,32,40,66,32,67,41,41,41,32,40,40,66,32,40,66,32,
+67,41,41,32,80,41,41,41,41,41,32,40,40,65,32,58,51,50,50,32,
+40,40,40,83,39,32,83,41,32,40,40,40,83,39,32,40,83,39,32,67,
+41,41,32,40,40,40,67,39,32,40,67,39,32,83,41,41,32,40,40,40,
+67,39,32,66,41,32,40,40,66,32,40,83,39,32,83,39,41,41,32,40,
+40,40,67,39,32,66,41,32,40,40,66,32,95,49,51,48,41,32,40,40,
+67,32,40,95,53,57,54,32,95,51,49,53,41,41,32,35,48,41,41,41,
+32,40,40,67,32,40,95,50,50,51,32,95,51,49,52,41,41,32,35,48,
+41,41,41,41,32,40,40,66,32,40,66,32,40,40,67,39,32,80,41,32,
+40,40,67,32,40,95,53,55,54,32,95,51,49,48,41,41,32,35,49,41,
+41,41,41,32,40,67,32,40,95,53,55,53,32,95,51,49,48,41,41,41,
+41,41,32,40,67,32,80,41,41,41,32,40,95,51,57,57,32,95,51,49,
+49,41,41,41,32,40,95,52,48,48,32,95,51,49,49,41,41,41,32,40,
+40,65,32,58,51,50,51,32,95,51,49,57,41,32,40,40,65,32,58,51,
+50,52,32,40,40,40,83,39,32,67,41,32,40,40,66,32,40,80,32,95,
+53,50,49,41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,
+40,40,40,67,39,32,67,41,32,40,95,50,50,51,32,95,51,49,52,41,
+41,32,95,53,50,49,41,41,32,95,53,50,50,41,41,41,32,40,40,66,
+32,40,40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,41,32,40,
+40,40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,41,32,40,40,
+40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,83,39,41,41,
+41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,
+41,32,40,40,66,32,40,40,67,39,32,40,67,39,32,40,67,39,32,67,
+41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,40,83,39,32,83,
+39,41,32,40,40,67,32,40,95,50,50,51,32,95,51,49,52,41,41,32,
+35,48,41,41,41,41,41,32,40,40,66,32,40,40,67,39,32,40,67,39,
+32,67,41,41,32,40,40,66,32,40,66,32,40,40,83,39,32,83,39,41,
+32,40,40,67,32,40,95,50,50,51,32,95,51,49,52,41,41,32,35,49,
+41,41,41,41,32,40,40,66,32,40,40,67,39,32,67,41,32,40,40,66,
+32,40,40,67,39,32,83,39,41,32,40,40,67,32,40,95,50,50,51,32,
+95,51,49,52,41,41,32,35,50,41,41,41,32,40,67,32,95,51,50,52,
+41,41,41,41,32,40,67,32,95,51,50,52,41,41,41,41,41,32,40,67,
+32,95,51,50,52,41,41,41,41,41,32,40,67,32,95,51,50,52,41,41,
+41,41,32,40,85,32,75,41,41,41,32,40,85,32,65,41,41,41,41,32,
+40,40,67,32,95,51,50,50,41,32,35,52,41,41,41,41,32,40,40,65,
+32,58,51,50,53,32,40,95,51,51,49,32,95,50,56,54,41,41,32,40,
+40,65,32,58,51,50,54,32,40,40,95,52,51,51,32,40,95,50,56,57,
+32,95,51,50,53,41,41,32,95,51,50,51,41,41,32,40,40,65,32,58,
+51,50,55,32,40,40,67,32,40,40,40,67,39,32,66,41,32,40,40,80,
+32,95,53,48,50,41,32,40,40,40,67,39,32,40,67,39,32,79,41,41,
+32,80,41,32,75,41,41,41,32,40,40,40,83,39,32,40,67,39,32,40,
+67,39,32,40,67,39,32,66,41,41,41,41,32,40,40,66,32,40,66,32,
+40,66,32,40,66,32,95,51,50,56,41,41,41,41,32,40,40,40,83,39,
+32,40,67,39,32,40,67,39,32,66,41,41,41,32,40,40,66,32,40,66,
+32,40,66,32,95,51,50,56,41,41,41,32,40,40,40,83,39,32,40,67,
+39,32,66,41,41,32,40,40,66,32,40,66,32,95,51,50,56,41,41,32,
+40,40,40,67,39,32,66,41,32,40,40,66,32,95,52,51,49,41,32,40,
+85,32,40,40,95,53,56,49,32,95,51,49,48,41,32,40,95,51,57,50,
+32,35,48,41,41,41,41,41,32,95,51,50,55,41,41,41,32,40,40,40,
+67,39,32,66,41,32,40,40,66,32,95,52,51,49,41,32,40,85,32,35,
+49,41,41,41,32,95,51,50,55,41,41,41,41,32,40,40,40,67,39,32,
+66,41,32,40,40,66,32,95,52,51,49,41,32,40,85,32,35,50,41,41,
+41,32,95,51,50,55,41,41,41,41,32,40,40,40,67,39,32,66,41,32,
+40,40,66,32,95,52,51,49,41,32,40,85,32,35,51,41,41,41,32,95,
+51,50,55,41,41,41,41,32,40,40,66,32,85,41,32,40,40,66,32,40,
+66,32,80,41,41,32,40,40,67,39,32,40,95,53,55,53,32,95,51,49,
+48,41,41,32,40,40,67,32,40,95,53,55,55,32,95,51,49,48,41,41,
+32,40,40,95,53,56,49,32,95,51,49,48,41,32,40,95,51,57,50,32,
+35,52,41,41,41,41,41,41,41,41,32,40,40,65,32,58,51,50,56,32,
+40,40,66,32,89,41,32,40,40,40,83,39,32,66,41,32,83,41,32,40,
+40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,90,41,41,
+32,40,40,40,83,39,32,66,41,32,40,40,66,32,83,41,32,85,41,41,
+32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,90,
+41,41,32,40,40,67,32,40,40,40,67,39,32,67,39,41,32,40,40,66,
+32,67,39,41,32,83,41,41,32,40,40,66,32,40,66,32,40,66,32,40,
+83,32,66,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,
+32,40,66,32,90,41,41,41,41,41,32,40,40,66,32,40,40,83,39,32,
+40,67,39,32,66,41,41,32,40,40,66,32,66,39,41,32,66,39,41,41,
+41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,83,
+32,66,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,
+66,32,40,66,32,40,66,32,40,66,32,90,41,41,41,41,41,41,41,32,
+40,40,40,67,39,32,66,41,32,40,66,39,32,40,66,39,32,40,40,66,
+32,40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,41,41,32,40,
+40,66,32,40,40,67,39,32,66,41,32,40,66,39,32,40,40,66,32,67,
+41,32,40,95,53,57,51,32,95,51,49,53,41,41,41,41,41,32,40,40,
+67,39,32,66,41,32,95,53,48,51,41,41,41,41,41,41,32,40,40,66,
+32,40,40,67,39,32,66,41,32,95,53,48,51,41,41,32,40,67,32,95,
+51,50,56,41,41,41,41,41,41,41,41,41,41,32,40,40,40,110,111,77,
+97,116,99,104,32,34,46,47,108,105,98,47,68,97,116,97,47,73,110,116,
+77,97,112,46,104,115,34,41,32,35,54,53,41,32,35,49,41,41,41,41,
+41,41,41,41,41,41,32,40,40,65,32,58,51,50,57,32,40,40,95,50,
+56,52,32,40,95,52,51,49,32,95,54,54,52,41,41,32,95,51,50,55,
+41,41,32,40,40,65,32,58,51,51,48,32,40,40,40,67,39,32,67,41,
+32,40,40,40,67,39,32,67,41,32,40,67,32,95,51,50,52,41,41,32,
+40,95,50,55,32,34,68,97,116,97,46,73,110,116,77,97,112,46,33,34,
+41,41,41,32,73,41,41,32,40,40,65,32,58,51,51,49,32,40,40,66,
+32,40,67,39,32,89,41,41,32,40,40,40,67,39,32,40,67,39,32,40,
+83,39,32,40,83,39,32,67,41,41,41,41,32,40,40,66,32,40,40,83,
+39,32,66,41,32,40,40,66,32,40,83,39,32,80,41,41,32,40,67,32,
+95,51,50,48,41,41,41,41,32,40,40,66,32,40,66,32,40,40,67,39,
+32,40,83,39,32,67,41,41,32,40,40,66,32,40,40,83,39,32,40,83,
+39,32,83,39,41,41,32,40,95,50,50,51,32,95,51,49,52,41,41,41,
+32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,66,32,66,
+39,41,32,40,66,32,95,50,56,50,41,41,41,32,40,40,40,67,39,32,
+40,67,39,32,95,50,56,50,41,41,32,95,51,50,53,41,32,40,40,40,
+40,95,51,50,49,32,95,51,49,57,41,32,95,51,49,57,41,32,95,51,
+49,57,41,32,95,51,49,57,41,41,41,41,41,41,41,32,40,66,32,40,
+40,67,39,32,66,41,32,95,51,50,48,41,41,41,41,41,32,40,40,40,
+67,39,32,66,41,32,40,40,66,32,40,67,39,32,40,67,39,32,40,67,
+39,32,67,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,
+39,32,40,67,39,32,67,41,41,41,41,32,40,40,40,67,39,32,40,67,
+39,32,40,67,39,32,40,67,39,32,40,67,39,32,83,39,41,41,41,41,
+41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,67,41,
+41,41,41,41,32,40,40,40,83,39,32,40,83,39,32,40,83,39,32,40,
+83,39,32,40,83,39,32,67,41,41,41,41,41,32,40,40,66,32,40,66,
+32,40,66,32,40,66,32,40,66,32,40,40,83,39,32,83,39,41,32,40,
+40,67,32,40,95,50,50,51,32,95,51,49,52,41,41,32,35,48,41,41,
+41,41,41,41,41,32,40,40,40,83,39,32,40,83,39,32,40,83,39,32,
+40,83,39,32,40,83,39,32,67,41,41,41,41,41,32,40,40,66,32,40,
+66,32,40,66,32,40,66,32,40,66,32,40,40,83,39,32,83,39,41,32,
+40,40,67,32,40,95,50,50,51,32,95,51,49,52,41,41,32,35,49,41,
+41,41,41,41,41,41,32,40,40,40,83,39,32,40,83,39,32,40,83,39,
+32,40,83,39,32,40,83,39,32,67,41,41,41,41,41,32,40,40,66,32,
+40,66,32,40,66,32,40,66,32,40,66,32,40,40,67,39,32,83,39,41,
+32,40,40,67,32,40,95,50,50,51,32,95,51,49,52,41,41,32,35,50,
+41,41,41,41,41,41,41,32,40,40,66,32,40,40,67,39,32,40,67,39,
+32,40,67,39,32,66,41,41,41,32,40,40,66,32,40,66,32,66,39,41,
+41,32,95,51,50,49,41,41,41,32,67,41,41,41,32,40,40,66,32,40,
+40,67,39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,67,
+39,41,41,32,95,51,50,49,41,41,41,32,67,41,41,41,41,32,40,40,
+66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,32,40,40,66,
+32,40,40,67,39,32,66,41,32,40,40,66,32,67,39,41,32,95,51,50,
+49,41,41,41,32,67,41,41,41,41,41,32,40,40,66,32,40,66,32,40,
+66,32,40,66,32,67,41,41,41,41,32,40,40,66,32,40,66,32,40,66,
+32,67,41,41,41,32,40,40,66,32,40,66,32,40,67,39,32,95,51,50,
+49,41,41,41,32,67,41,41,41,41,41,41,32,40,85,32,75,41,41,41,
+32,40,85,32,65,41,41,41,41,32,40,40,67,32,95,51,50,50,41,32,
+35,52,41,41,41,41,41,32,40,40,65,32,58,51,51,50,32,73,41,32,
+40,40,65,32,58,51,51,51,32,40,95,51,51,50,32,95,51,50,51,41,
+41,32,40,40,65,32,58,51,51,52,32,40,40,40,67,39,32,67,41,32,
+40,40,40,67,39,32,67,41,32,95,51,50,52,41,32,95,49,51,52,41,
+41,32,40,75,32,95,49,51,53,41,41,41,32,40,40,65,32,58,51,51,
+53,32,40,40,66,32,40,66,32,95,51,51,50,41,41,32,40,40,67,32,
+95,51,50,53,41,32,95,49,53,54,56,41,41,41,32,40,40,65,32,58,
+51,51,54,32,40,40,66,32,95,51,51,50,41,32,40,40,66,32,95,51,
+50,54,41,32,40,40,67,32,95,52,53,48,41,32,40,95,52,56,55,32,
+95,49,53,54,56,41,41,41,41,41,32,40,40,65,32,58,51,51,55,32,
+40,40,66,32,40,95,52,51,49,32,95,54,54,52,41,41,32,95,51,50,
+55,41,41,32,40,40,65,32,58,51,51,56,32,40,40,95,50,50,50,32,
+95,51,56,48,41,32,95,51,56,49,41,41,32,40,40,65,32,58,51,51,
+57,32,40,40,40,40,40,40,40,40,95,53,57,48,32,95,51,51,56,41,
+32,40,95,53,57,57,32,95,51,51,57,41,41,32,95,51,56,50,41,32,
+95,51,56,51,41,32,95,51,56,52,41,32,95,51,56,53,41,32,40,95,
+54,48,52,32,95,51,51,57,41,41,32,40,95,54,48,53,32,95,51,51,
+57,41,41,41,32,40,40,65,32,58,51,52,48,32,40,40,40,95,49,56,
+52,48,32,40,95,49,56,52,52,32,95,51,52,48,41,41,32,95,51,55,
+54,41,32,40,95,49,56,52,54,32,95,51,52,48,41,41,41,32,40,40,
+65,32,58,51,52,49,32,40,40,40,40,40,40,40,95,53,55,52,32,95,
+51,52,57,41,32,95,51,53,50,41,32,95,51,54,49,41,32,95,51,53,
+48,41,32,95,51,53,49,41,32,40,40,67,32,40,40,67,32,40,40,67,
+32,40,40,67,32,40,95,53,57,50,32,95,51,51,57,41,41,32,95,51,
+55,49,41,41,32,95,51,55,53,41,41,32,95,51,55,49,41,41,32,95,
+51,55,50,41,41,32,73,41,41,32,40,40,65,32,58,51,52,50,32,40,
+40,40,40,40,40,40,40,95,51,57,55,32,40,40,80,32,95,51,51,56,
+41,32,95,51,52,49,41,41,32,40,95,52,48,54,32,95,51,52,50,41,
+41,32,40,95,52,48,55,32,95,51,52,50,41,41,32,40,95,52,48,56,
+32,95,51,52,50,41,41,32,40,95,52,48,57,32,95,51,52,50,41,41,
+32,95,51,54,53,41,32,40,95,52,49,49,32,95,51,52,50,41,41,32,
+73,41,41,32,40,40,65,32,58,51,52,51,32,40,95,54,50,55,32,95,
+54,50,53,41,41,32,40,40,65,32,58,51,52,52,32,40,40,40,40,40,
+40,40,40,95,50,48,48,32,40,40,67,32,40,95,53,55,53,32,95,51,
+52,49,41,41,32,40,40,95,53,56,49,32,95,51,52,49,41,32,40,95,
+51,57,50,32,35,49,41,41,41,41,32,40,40,67,32,40,95,53,55,54,
+32,95,51,52,49,41,41,32,40,40,95,53,56,49,32,95,51,52,49,41,
+32,40,95,51,57,50,32,35,49,41,41,41,41,32,95,51,57,50,41,32,
+95,51,57,51,41,32,40,40,83,32,95,53,48,51,41,32,40,40,66,32,
+40,95,50,48,53,32,95,51,52,52,41,41,32,40,40,67,32,40,95,53,
+55,53,32,95,51,52,49,41,41,32,40,95,51,57,50,32,35,49,41,41,
+41,41,41,32,40,40,40,83,39,32,40,67,39,32,89,41,41,32,40,40,
+66,32,40,66,32,40,66,32,40,83,32,95,53,48,51,41,41,41,41,32,
+40,40,66,32,40,66,32,40,67,32,66,41,41,41,32,40,40,66,32,40,
+66,32,40,67,32,40,95,53,55,53,32,95,51,52,49,41,41,41,41,32,
+40,67,32,40,95,53,55,54,32,95,51,52,49,41,41,41,41,41,41,32,
+73,41,41,32,40,40,66,32,40,40,67,39,32,95,52,54,52,41,32,40,
+67,32,40,95,53,57,52,32,95,51,51,57,41,41,41,41,32,40,95,50,
+48,53,32,95,51,52,52,41,41,41,32,40,40,40,83,39,32,83,41,32,
+40,40,40,83,39,32,40,83,39,32,83,39,41,41,32,40,67,32,40,95,
+53,57,53,32,95,51,51,57,41,41,41,32,40,40,66,32,40,66,32,40,
+40,67,39,32,95,52,54,52,41,32,40,67,32,40,95,53,57,54,32,95,
+51,51,57,41,41,41,41,41,32,40,95,50,48,54,32,95,51,52,52,41,
+41,41,41,32,40,40,66,32,40,66,32,40,40,67,39,32,95,52,54,52,
+41,32,40,67,32,40,95,53,57,52,32,95,51,51,57,41,41,41,41,41,
+32,40,95,50,48,54,32,95,51,52,52,41,41,41,41,41,32,40,40,65,
+32,58,51,52,53,32,40,85,32,40,75,32,95,52,50,56,41,41,41,32,
+40,40,65,32,58,51,52,54,32,40,40,95,50,50,50,32,40,40,67,32,
+40,40,67,32,83,39,41,32,40,40,80,32,95,49,51,53,41,32,95,49,
+51,52,41,41,41,32,40,40,80,32,95,49,51,52,41,32,95,49,51,53,
+41,41,41,32,40,95,50,50,54,32,95,51,52,54,41,41,41,32,40,40,
+65,32,58,51,52,55,32,40,40,40,67,39,32,66,41,32,40,40,66,32,
+40,83,32,40,85,32,40,40,95,51,56,56,32,95,51,56,57,41,32,95,
+53,48,50,41,41,41,41,32,40,40,66,32,90,41,32,40,40,66,32,90,
+41,32,95,51,56,56,41,41,41,41,32,95,51,53,57,41,41,32,40,40,
+65,32,58,51,52,56,32,35,48,41,32,40,40,65,32,58,51,52,57,32,
+40,40,67,32,40,40,40,67,39,32,67,39,41,32,66,41,32,40,40,40,
+83,39,32,40,83,39,32,67,41,41,32,40,40,66,32,40,66,32,40,67,
+32,83,39,41,41,41,32,40,40,40,67,39,32,66,41,32,66,41,32,40,
+40,66,32,40,40,83,39,32,67,41,32,40,40,66,32,40,67,32,83,39,
+41,41,32,40,40,66,32,40,66,32,40,95,51,56,56,32,95,51,56,57,
+41,41,41,32,95,51,53,51,41,41,41,41,32,40,40,40,67,39,32,40,
+83,39,32,83,41,41,32,40,40,66,32,40,40,83,39,32,83,41,32,95,
+51,54,48,41,41,32,40,40,40,67,39,32,66,41,32,40,66,39,32,95,
+49,51,53,41,41,32,40,40,66,32,40,66,32,40,95,51,52,55,32,95,
+51,56,57,41,41,41,32,95,51,53,54,41,41,41,41,32,40,40,66,32,
+40,66,32,40,95,51,52,55,32,95,51,57,48,41,41,41,32,40,67,32,
+95,51,53,54,41,41,41,41,41,41,41,32,40,40,40,67,39,32,66,41,
+32,66,41,32,40,40,40,67,39,32,40,83,39,32,67,41,41,32,40,40,
+66,32,40,66,32,40,67,32,83,39,41,41,41,32,40,40,40,67,39,32,
+40,83,39,32,83,41,41,32,40,40,66,32,40,40,83,39,32,83,41,32,
+40,67,32,95,51,54,48,41,41,41,32,40,40,40,67,39,32,66,41,32,
+40,66,39,32,95,49,51,53,41,41,32,40,40,66,32,40,66,32,40,95,
+51,52,55,32,95,51,56,57,41,41,41,32,40,67,32,95,51,53,54,41,
+41,41,41,41,32,40,40,66,32,40,66,32,40,95,51,52,55,32,95,51,
+57,48,41,41,41,32,95,51,53,54,41,41,41,41,32,40,40,66,32,40,
+66,32,40,95,51,56,56,32,95,51,57,48,41,41,41,32,95,51,53,51,
+41,41,41,41,41,41,32,40,40,40,110,111,77,97,116,99,104,32,34,46,
+47,108,105,98,47,68,97,116,97,47,73,110,116,101,103,101,114,46,104,115,
+34,41,32,35,49,50,50,41,32,35,49,41,41,41,32,40,40,65,32,58,
+51,53,48,32,40,40,83,32,73,41,32,40,40,40,67,39,32,66,41,32,
+40,40,66,32,83,41,32,85,41,41,32,40,40,66,32,90,41,32,40,40,
+66,32,90,41,32,40,40,67,32,40,40,67,32,83,39,41,32,40,95,51,
+56,56,32,95,51,57,48,41,41,41,32,40,95,51,56,56,32,95,51,56,
+57,41,41,41,41,41,41,41,32,40,40,65,32,58,51,53,49,32,40,85,
+32,40,75,32,40,95,51,56,56,32,95,51,56,57,41,41,41,41,32,40,
+40,65,32,58,51,53,50,32,40,40,40,67,39,32,66,41,32,95,51,52,
+57,41,32,95,51,53,48,41,41,32,40,40,65,32,58,51,53,51,32,40,
+95,51,53,52,32,95,51,52,56,41,41,32,40,40,65,32,58,51,53,52,
+32,40,40,40,83,39,32,67,41,32,40,40,66,32,40,67,32,83,39,41,
+41,32,40,40,40,83,39,32,80,41,32,40,40,67,32,40,40,83,32,40,
+40,67,32,40,95,50,50,51,32,95,51,49,52,41,41,32,95,51,52,56,
+41,41,32,40,40,67,32,79,41,32,75,41,41,41,32,95,53,48,50,41,
+41,32,40,40,66,32,40,66,32,40,40,67,39,32,40,40,83,39,32,95,
+53,48,51,41,32,40,85,32,65,41,41,41,32,40,67,32,40,40,40,67,
+39,32,95,51,53,52,41,32,40,85,32,75,41,41,32,95,53,48,50,41,
+41,41,41,41,32,40,40,67,32,95,51,53,53,41,32,95,51,52,56,41,
+41,41,41,41,32,40,40,40,83,39,32,67,41,32,40,40,66,32,40,40,
+67,39,32,83,39,41,32,83,39,41,41,32,40,40,66,32,40,66,32,40,
+40,67,39,32,40,40,83,39,32,95,53,48,51,41,32,40,85,32,65,41,
+41,41,32,40,40,40,67,39,32,67,41,32,40,40,67,39,32,95,51,53,
+52,41,32,40,85,32,75,41,41,41,32,95,53,48,50,41,41,41,41,32,
+40,40,40,67,39,32,67,41,32,95,51,53,53,41,32,95,51,52,56,41,
+41,41,41,32,40,40,66,32,40,66,32,40,40,67,39,32,66,41,32,40,
+40,66,32,40,67,39,32,40,40,83,39,32,95,53,48,51,41,32,40,85,
+32,65,41,41,41,41,32,40,40,66,32,67,41,32,40,40,67,39,32,95,
+51,53,52,41,32,40,85,32,75,41,41,41,41,41,41,41,32,95,51,53,
+53,41,41,41,41,32,40,40,65,32,58,51,53,53,32,40,40,66,32,40,
+66,32,40,66,32,40,40,40,83,39,32,80,41,32,40,40,67,32,40,95,
+51,57,57,32,95,51,49,49,41,41,32,95,51,57,49,41,41,32,40,40,
+67,32,40,95,52,48,48,32,95,51,49,49,41,41,32,95,51,57,49,41,
+41,41,41,41,32,40,40,66,32,40,66,32,40,95,53,55,53,32,95,51,
+49,48,41,41,41,32,40,95,53,55,53,32,95,51,49,48,41,41,41,41,
+32,40,40,65,32,58,51,53,54,32,40,95,51,53,55,32,95,51,52,56,
+41,41,32,40,40,65,32,58,51,53,55,32,40,40,40,83,39,32,67,41,
+32,40,40,66,32,40,83,32,83,39,41,41,32,40,40,67,32,40,40,40,
+67,39,32,83,39,41,32,40,40,66,32,67,39,41,32,40,40,66,32,83,
+41,32,40,40,95,50,50,51,32,95,51,49,52,41,32,40,40,95,53,56,
+49,32,95,51,49,48,41,32,40,95,51,57,50,32,35,48,41,41,41,41,
+41,41,32,40,40,67,32,40,40,40,67,39,32,67,39,41,32,83,39,41,
+32,40,40,40,67,39,32,66,41,32,40,85,32,95,53,48,50,41,41,32,
+40,90,32,75,41,41,41,41,32,40,90,32,75,41,41,41,41,32,40,40,
+80,32,95,50,56,41,32,40,75,50,32,40,40,40,110,111,77,97,116,99,
+104,32,34,46,47,108,105,98,47,68,97,116,97,47,73,110,116,101,103,101,
+114,46,104,115,34,41,32,35,49,53,56,41,32,35,54,41,41,41,41,41,
+41,32,40,40,40,83,39,32,67,41,32,40,40,66,32,40,40,67,39,32,
+83,39,41,32,83,39,41,41,32,40,40,66,32,40,66,32,40,40,67,39,
+32,40,40,83,39,32,95,53,48,51,41,32,40,85,32,65,41,41,41,32,
+40,40,40,67,39,32,67,41,32,40,40,67,39,32,95,51,53,55,41,32,
+40,85,32,75,41,41,41,32,95,53,48,50,41,41,41,41,32,40,40,40,
+67,39,32,67,41,32,95,51,53,56,41,32,95,51,52,56,41,41,41,41,
+32,40,40,66,32,40,66,32,40,40,67,39,32,66,41,32,40,40,66,32,
+40,67,39,32,40,40,83,39,32,95,53,48,51,41,32,40,85,32,65,41,
+41,41,41,32,40,40,66,32,67,41,32,40,40,67,39,32,95,51,53,55,
+41,32,40,85,32,75,41,41,41,41,41,41,41,32,95,51,53,56,41,41,
+41,41,32,40,40,65,32,58,51,53,56,32,40,40,66,32,40,66,32,40,
+66,32,40,40,83,32,40,40,83,32,40,40,67,32,40,95,53,57,51,32,
+95,51,49,53,41,41,32,35,48,41,41,32,40,40,40,83,39,32,80,41,
+32,40,40,67,32,40,95,51,57,57,32,95,51,49,49,41,41,32,95,51,
+57,49,41,41,32,40,40,67,32,40,95,52,48,48,32,95,51,49,49,41,
+41,32,95,51,57,49,41,41,41,41,32,40,40,40,83,39,32,80,41,32,
+40,40,40,67,39,32,40,95,53,55,54,32,95,51,49,48,41,41,32,40,
+40,67,32,40,95,51,57,57,32,95,51,49,49,41,41,32,95,51,57,49,
+41,41,32,35,49,41,41,32,40,40,40,67,39,32,40,95,53,55,53,32,
+95,51,49,48,41,41,32,40,40,67,32,40,95,52,48,48,32,95,51,49,
+49,41,41,32,95,51,57,49,41,41,32,95,51,57,49,41,41,41,41,41,
+41,32,40,40,67,39,32,40,67,39,32,40,95,53,55,53,32,95,51,49,
+48,41,41,41,32,40,95,53,55,54,32,95,51,49,48,41,41,41,41,32,
+40,40,65,32,58,51,53,57,32,40,40,95,50,56,52,32,95,52,54,51,
+41,32,40,40,95,50,56,52,32,40,95,52,54,53,32,40,40,67,32,40,
+95,50,50,51,32,95,51,49,52,41,41,32,35,48,41,41,41,32,95,52,
+54,51,41,41,41,32,40,40,65,32,58,51,54,48,32,40,40,40,67,39,
+32,83,41,32,40,40,40,83,39,32,40,67,39,32,67,41,41,32,40,40,
+66,32,40,66,32,40,40,83,39,32,40,83,39,32,95,49,51,48,41,41,
+32,40,67,32,40,95,53,57,51,32,95,51,49,53,41,41,41,41,41,32,
+40,40,66,32,40,66,32,40,40,67,39,32,40,67,39,32,95,49,51,49,
+41,41,32,40,67,32,40,95,50,50,51,32,95,51,49,52,41,41,41,41,
+41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,89,32,40,40,
+40,67,39,32,40,67,39,32,67,41,41,32,40,40,66,32,40,67,32,40,
+40,40,67,39,32,83,39,41,32,83,39,41,32,40,40,40,67,39,32,66,
+41,32,40,85,32,95,49,51,52,41,41,32,40,90,32,75,41,41,41,41,
+41,32,40,40,66,32,40,40,67,39,32,40,67,39,32,66,41,41,32,66,
+39,41,41,32,40,40,66,32,40,40,83,39,32,66,41,32,40,40,66,32,
+40,83,39,32,66,41,41,32,40,40,66,32,40,66,32,95,49,51,48,41,
+41,32,40,95,53,57,51,32,95,51,49,53,41,41,41,41,41,32,40,40,
+67,39,32,66,41,32,40,40,66,32,40,67,39,32,66,41,41,32,40,40,
+66,32,40,66,32,95,49,51,49,41,41,32,40,95,50,50,51,32,95,51,
+49,52,41,41,41,41,41,41,41,41,32,40,95,50,55,32,34,108,116,87,
+46,99,109,112,34,41,41,41,41,32,95,52,54,51,41,41,32,95,52,54,
+51,41,41,41,41,32,95,52,52,57,41,41,32,95,52,52,57,41,41,32,
+40,40,65,32,58,51,54,49,32,40,40,83,32,66,41,32,40,40,66,32,
+90,41,32,40,40,66,32,40,66,32,40,80,32,40,40,95,51,56,56,32,
+95,51,56,57,41,32,95,53,48,50,41,41,41,41,32,40,40,66,32,90,
+41,32,40,40,66,32,90,41,32,40,40,66,32,40,83,32,73,41,41,32,
+40,40,66,32,90,41,32,40,40,66,32,40,66,32,40,80,32,40,40,95,
+51,56,56,32,95,51,56,57,41,32,95,53,48,50,41,41,41,41,32,40,
+40,66,32,90,41,32,40,40,66,32,90,41,32,40,40,67,32,66,41,32,
+40,40,40,83,39,32,40,83,39,32,83,41,41,32,40,40,66,32,40,66,
+32,40,67,32,83,41,41,41,32,40,40,40,67,39,32,40,67,39,32,66,
+41,41,32,40,40,66,32,40,66,32,40,67,39,32,80,41,41,41,32,40,
+40,40,67,39,32,66,41,32,66,41,32,40,40,40,67,39,32,66,41,32,
+40,40,66,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,95,
+51,56,56,41,41,32,95,51,54,50,41,41,41,32,40,67,32,40,95,51,
+54,51,32,95,51,52,56,41,41,41,41,41,41,32,40,90,32,75,41,41,
+41,41,32,40,40,40,67,39,32,66,41,32,66,41,32,40,40,40,83,39,
+32,40,83,39,32,40,83,39,32,83,41,41,41,32,40,40,66,32,40,66,
+32,40,66,32,40,67,32,83,41,41,41,41,32,40,40,40,67,39,32,40,
+67,39,32,40,67,39,32,66,41,41,41,32,40,40,66,32,40,66,32,40,
+66,32,40,67,39,32,80,41,41,41,41,32,40,40,40,67,39,32,66,41,
+32,40,40,66,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,
+95,51,56,56,41,41,32,95,51,54,50,41,41,41,32,40,95,51,54,51,
+32,95,51,52,56,41,41,41,41,32,40,90,32,75,41,41,41,41,32,40,
+40,40,67,39,32,66,41,32,40,40,66,32,40,67,39,32,66,41,41,32,
+40,40,66,32,40,66,32,95,51,56,56,41,41,32,95,51,54,50,41,41,
+41,32,95,51,54,52,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,32,40,40,65,32,58,51,54,50,32,40,40,40,67,39,32,67,41,
+32,40,40,40,67,39,32,67,41,32,40,95,50,50,51,32,95,51,52,54,
+41,41,32,95,51,57,48,41,41,32,95,51,56,57,41,41,32,40,40,65,
+32,58,51,54,51,32,40,40,40,83,39,32,40,67,39,32,66,41,41,32,
+40,40,66,32,85,41,32,40,40,67,32,40,40,83,32,40,40,67,32,40,
+95,50,50,51,32,95,51,49,52,41,41,32,35,48,41,41,32,40,40,67,
+32,79,41,32,75,41,41,41,32,95,53,48,50,41,41,41,32,40,40,66,
+32,40,40,83,39,32,66,41,32,40,40,66,32,40,67,39,32,40,40,83,
+39,32,95,53,48,51,41,32,40,40,67,32,40,95,52,48,48,32,95,51,
+49,49,41,41,32,95,51,57,49,41,41,41,41,32,40,40,67,39,32,67,
+41,32,40,40,67,39,32,95,51,54,51,41,32,40,40,67,32,40,95,51,
+57,57,32,95,51,49,49,41,41,32,95,51,57,49,41,41,41,41,41,41,
+32,40,40,67,39,32,40,67,39,32,40,95,53,55,53,32,95,51,49,48,
+41,41,41,32,40,67,32,40,95,53,55,55,32,95,51,49,48,41,41,41,
+41,41,41,32,40,40,65,32,58,51,54,52,32,40,40,66,32,40,66,32,
+40,95,52,51,56,32,95,51,53,51,41,41,41,32,40,40,66,32,40,66,
+32,40,40,95,52,53,50,32,95,53,48,52,41,32,40,40,95,52,51,49,
+32,40,40,67,32,95,52,56,54,41,32,35,48,41,41,32,40,40,95,50,
+48,53,32,95,50,49,57,41,32,35,48,41,41,41,41,41,32,40,40,66,
+32,95,52,51,49,41,32,40,95,51,54,51,32,95,51,52,56,41,41,41,
+41,41,32,40,40,65,32,58,51,54,53,32,40,40,66,32,40,83,32,73,
+41,41,32,40,40,66,32,90,41,32,40,40,66,32,40,66,32,40,80,32,
+40,95,50,55,32,34,73,110,116,101,103,101,114,58,32,100,105,118,105,115,
+105,111,110,32,98,121,32,48,34,41,41,41,41,32,40,40,66,32,90,41,
+32,40,40,66,32,90,41,32,40,40,67,32,66,41,32,40,40,66,32,40,
+66,32,40,83,32,40,85,32,40,40,80,32,40,40,95,51,56,56,32,95,
+51,56,57,41,32,95,53,48,50,41,41,32,40,40,95,51,56,56,32,95,
+51,56,57,41,32,95,53,48,50,41,41,41,41,41,41,32,40,40,66,32,
+40,66,32,90,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,
+40,67,39,32,66,41,32,66,41,32,40,40,40,67,39,32,40,67,39,32,
+40,67,39,32,83,41,41,41,32,40,40,40,67,39,32,40,83,39,32,40,
+67,39,32,40,67,39,32,83,41,41,41,41,32,40,40,40,83,39,32,40,
+67,39,32,40,83,39,32,40,83,39,32,40,67,39,32,66,41,41,41,41,
+41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,67,32,40,95,
+52,52,54,32,40,40,67,32,40,95,50,50,51,32,95,51,49,52,41,41,
+32,35,48,41,41,41,41,41,41,41,32,40,40,40,67,39,32,66,41,32,
+40,40,66,32,40,67,39,32,66,41,41,32,95,51,54,54,41,41,32,95,
+51,54,57,41,41,41,32,40,40,66,32,40,66,32,40,40,67,39,32,83,
+41,32,40,40,66,32,40,40,67,39,32,95,51,54,56,41,32,40,85,32,
+65,41,41,41,32,95,52,57,54,41,41,41,41,32,40,40,40,67,39,32,
+40,67,39,32,66,41,41,32,40,40,66,32,66,39,41,32,40,40,66,32,
+66,39,41,32,95,51,54,54,41,41,41,32,40,40,66,32,40,40,67,39,
+32,66,41,32,80,41,41,32,40,40,66,32,95,53,48,52,41,32,40,85,
+32,75,41,41,41,41,41,41,41,32,40,40,67,39,32,95,52,54,50,41,
+32,95,52,52,57,41,41,41,32,95,52,57,55,41,41,41,41,41,41,41,
+41,41,41,41,41,32,40,40,65,32,58,51,54,54,32,40,40,66,32,40,
+66,32,85,41,41,32,40,40,40,83,39,32,40,67,39,32,40,67,39,32,
+66,41,41,41,32,40,40,66,32,40,66,32,40,66,32,80,41,41,41,32,
+40,40,66,32,40,66,32,95,51,52,55,41,41,32,95,51,54,50,41,41,
+41,32,95,51,52,55,41,41,41,32,40,40,65,32,58,51,54,55,32,40,
+40,40,67,39,32,67,41,32,95,51,54,53,41,32,75,41,41,32,40,40,
+65,32,58,51,54,56,32,40,40,40,67,39,32,67,41,32,40,40,66,32,
+40,67,32,40,40,40,67,39,32,89,41,32,40,40,66,32,40,66,32,40,
+40,83,39,32,67,41,32,40,40,66,32,40,67,32,83,39,41,41,32,40,
+40,66,32,40,67,32,80,41,41,32,40,40,67,32,79,41,32,75,41,41,
+41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,40,
+40,66,32,40,66,32,40,67,39,32,66,41,41,41,32,40,40,66,32,40,
+66,32,40,66,32,67,41,41,41,32,40,40,40,83,39,32,40,67,39,32,
+66,41,41,32,40,40,66,32,40,66,32,40,67,39,32,83,41,41,41,32,
+40,40,66,32,40,67,32,67,39,41,41,32,40,67,32,40,95,52,48,48,
+32,95,51,49,49,41,41,41,41,41,32,40,40,66,32,40,67,39,32,95,
+53,48,51,41,41,32,40,67,32,40,95,51,57,57,32,95,51,49,49,41,
+41,41,41,41,41,41,32,40,40,66,32,40,95,53,55,53,32,95,51,49,
+48,41,41,32,40,40,67,32,40,95,53,55,55,32,95,51,49,48,41,41,
+32,95,51,57,49,41,41,41,41,41,32,95,51,52,56,41,41,41,32,95,
+52,54,51,41,41,32,95,53,48,50,41,41,32,40,40,65,32,58,51,54,
+57,32,40,40,66,32,40,67,32,40,40,40,83,39,32,67,41,32,40,40,
+66,32,40,40,67,39,32,67,41,32,40,40,40,83,39,32,40,83,39,32,
+66,41,41,32,40,40,66,32,40,40,83,39,32,83,41,32,40,40,66,32,
+40,40,83,39,32,83,41,32,40,40,66,32,40,83,32,40,40,67,32,95,
+51,56,50,41,32,95,51,55,49,41,41,41,32,40,40,40,67,39,32,66,
+41,32,40,40,66,32,80,41,32,95,51,55,48,41,41,32,95,51,55,48,
+41,41,41,41,32,40,40,66,32,40,40,67,39,32,66,41,32,40,40,66,
+32,80,41,32,40,40,66,32,95,51,55,48,41,32,40,40,67,32,95,51,
+53,50,41,32,95,51,55,50,41,41,41,41,41,32,40,40,66,32,40,66,
+32,95,51,55,48,41,41,32,40,67,32,95,51,52,57,41,41,41,41,41,
+41,32,40,40,40,67,39,32,66,41,32,40,66,39,32,95,51,53,50,41,
+41,32,40,67,32,95,51,54,49,41,41,41,41,32,40,40,40,67,39,32,
+40,83,39,32,67,41,41,32,40,40,40,83,39,32,40,67,39,32,40,83,
+39,32,89,41,41,41,32,40,40,66,32,40,40,83,39,32,66,41,32,40,
+66,39,32,40,40,66,32,40,83,39,32,67,41,41,32,40,40,66,32,67,
+41,32,40,40,67,39,32,95,51,56,53,41,32,95,51,53,49,41,41,41,
+41,41,41,32,40,40,66,32,40,66,32,40,40,67,39,32,40,67,39,32,
+83,41,41,32,40,40,40,67,39,32,67,41,32,40,40,66,32,40,40,67,
+39,32,67,39,41,32,83,39,41,41,32,40,40,40,67,39,32,40,67,39,
+32,40,67,39,32,95,51,54,55,41,41,41,32,40,40,66,32,40,40,83,
+39,32,66,41,32,95,51,52,57,41,41,32,40,40,66,32,40,40,67,39,
+32,66,41,32,95,51,52,57,41,41,32,40,67,32,95,51,54,55,41,41,
+41,41,32,95,51,55,51,41,41,41,32,73,41,41,41,41,32,40,40,40,
+67,39,32,66,41,32,40,66,39,32,95,51,53,50,41,41,32,40,67,32,
+95,51,54,49,41,41,41,41,41,32,95,51,54,55,41,41,32,40,40,67,
+32,95,51,52,57,41,32,95,51,55,50,41,41,41,41,41,32,40,40,66,
+32,40,95,50,56,50,32,40,95,51,56,56,32,95,51,56,57,41,41,41,
+32,40,40,40,83,39,32,95,53,48,52,41,32,40,40,40,67,39,32,95,
+52,56,54,41,32,40,40,40,67,39,32,40,95,53,55,54,32,95,51,49,
+48,41,41,32,95,52,52,57,41,32,35,49,41,41,32,35,48,41,41,32,
+40,40,40,67,39,32,79,41,32,95,52,57,54,41,32,75,41,41,41,41,
+41,32,40,95,51,56,56,32,95,51,56,57,41,41,41,41,32,40,95,51,
+56,56,32,95,51,56,57,41,41,41,32,40,40,65,32,58,51,55,48,32,
+40,85,32,65,41,41,32,40,40,65,32,58,51,55,49,32,40,40,95,51,
+56,56,32,95,51,56,57,41,32,95,53,48,50,41,41,32,40,40,65,32,
+58,51,55,50,32,40,40,95,51,56,56,32,95,51,56,57,41,32,40,40,
+79,32,35,49,41,32,75,41,41,41,32,40,40,65,32,58,51,55,51,32,
+40,40,95,51,56,56,32,95,51,56,57,41,32,40,40,79,32,35,50,41,
+32,75,41,41,41,32,40,40,65,32,58,51,55,52,32,40,40,95,51,56,
+56,32,95,51,56,57,41,32,40,40,79,32,35,49,48,41,32,75,41,41,
+41,32,40,40,65,32,58,51,55,53,32,40,40,95,51,56,56,32,95,51,
+57,48,41,32,40,40,79,32,35,49,41,32,75,41,41,41,32,40,40,65,
+32,58,51,55,54,32,40,85,32,40,40,66,32,40,83,32,40,85,32,40,
+40,79,32,35,52,56,41,32,75,41,41,41,41,32,40,40,66,32,90,41,
+32,40,40,66,32,90,41,32,40,40,67,32,40,40,67,32,83,39,41,32,
+95,51,55,55,41,41,32,40,40,66,32,40,95,53,48,51,32,35,52,53,
+41,41,32,95,51,55,55,41,41,41,41,41,41,41,32,40,40,65,32,58,
+51,55,55,32,40,40,83,32,40,85,32,75,41,41,32,40,90,32,40,90,
+32,40,40,66,32,40,40,40,83,39,32,95,53,48,52,41,32,40,40,66,
+32,95,51,55,55,41,32,40,40,66,32,95,51,53,57,41,32,40,40,67,
+32,40,40,67,32,66,41,32,40,40,40,83,39,32,66,41,32,80,41,32,
+40,40,66,32,90,41,32,40,40,66,32,40,67,32,80,41,41,32,40,90,
+32,75,41,41,41,41,41,41,32,40,40,40,110,111,77,97,116,99,104,32,
+75,41,32,35,48,41,32,35,48,41,41,41,41,41,32,40,40,40,67,39,
+32,79,41,32,40,40,66,32,95,49,52,54,41,32,40,40,66,32,40,40,
+95,53,55,53,32,95,51,49,48,41,32,40,95,49,52,55,32,35,52,56,
+41,41,41,32,40,40,67,32,40,40,67,32,66,41,32,40,90,32,40,40,
+83,32,80,41,32,40,40,66,32,40,67,32,80,41,41,32,40,90,32,75,
+41,41,41,41,41,41,32,40,40,40,110,111,77,97,116,99,104,32,75,41,
+32,35,48,41,32,35,48,41,41,41,41,41,32,75,41,41,41,32,40,40,
+67,32,95,51,54,56,41,32,35,49,48,41,41,41,41,41,41,32,40,40,
+65,32,58,51,55,56,32,40,40,83,32,40,40,67,32,83,41,32,40,40,
+40,67,39,32,40,67,39,32,66,41,41,32,40,67,32,40,40,95,50,50,
+51,32,95,49,52,49,41,32,35,52,53,41,41,41,32,40,40,66,32,40,
+95,53,55,56,32,95,51,52,49,41,41,32,95,51,55,57,41,41,41,41,
+32,95,51,55,57,41,41,32,40,40,65,32,58,51,55,57,32,40,40,95,
+52,51,54,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,95,53,
+55,53,32,95,51,52,49,41,41,32,40,40,67,32,40,95,53,55,55,32,
+95,51,52,49,41,41,32,95,51,55,52,41,41,41,32,40,40,66,32,95,
+51,57,50,41,32,40,40,40,67,39,32,40,95,53,55,54,32,95,51,49,
+48,41,41,32,95,49,52,55,41,32,40,95,49,52,55,32,35,52,56,41,
+41,41,41,41,32,95,51,55,49,41,41,32,40,40,65,32,58,51,56,48,
+32,40,40,67,32,66,41,32,40,40,40,67,39,32,66,41,32,66,41,32,
+40,40,40,67,39,32,66,41,32,40,40,66,32,40,67,39,32,66,41,41,
+32,40,40,66,32,40,66,32,95,49,51,49,41,41,32,40,95,50,50,51,
+32,95,51,52,54,41,41,41,41,32,40,95,50,50,51,32,40,95,52,49,
+57,32,95,51,49,52,41,41,41,41,41,41,32,40,40,65,32,58,51,56,
+49,32,40,40,66,32,40,66,32,95,49,51,50,41,41,32,95,51,56,48,
+41,41,32,40,40,65,32,58,51,56,50,32,40,40,67,32,66,41,32,40,
+40,40,83,39,32,67,41,32,40,40,66,32,40,67,32,83,39,41,41,32,
+40,40,67,32,66,41,32,40,40,40,67,39,32,67,41,32,40,40,66,32,
+40,67,32,67,39,41,41,32,95,51,54,48,41,41,32,95,49,51,52,41,
+41,41,41,32,40,40,67,32,66,41,32,40,40,66,32,40,40,67,39,32,
+66,41,32,40,85,32,95,49,51,53,41,41,41,32,40,67,32,95,51,54,
+48,41,41,41,41,41,41,32,40,40,65,32,58,51,56,51,32,40,40,66,
+32,40,66,32,95,49,51,50,41,41,32,40,67,32,95,51,56,50,41,41,
+41,32,40,40,65,32,58,51,56,52,32,40,67,32,95,51,56,50,41,41,
+32,40,40,65,32,58,51,56,53,32,40,40,66,32,40,66,32,95,49,51,
+50,41,41,32,95,51,56,50,41,41,32,40,40,65,32,58,51,56,54,32,
+40,85,32,40,40,67,32,83,41,32,40,95,53,48,51,32,40,40,95,53,
+55,56,32,95,51,49,48,41,32,35,49,41,41,41,41,41,32,40,40,65,
+32,58,51,56,55,32,40,40,83,32,40,85,32,40,40,40,110,111,77,97,
+116,99,104,32,34,46,47,108,105,98,47,68,97,116,97,47,73,110,116,101,
+103,101,114,46,104,115,34,41,32,35,51,52,50,41,32,35,49,41,41,41,
+32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,
+67,32,40,40,67,32,40,95,50,50,51,32,95,51,49,52,41,41,32,40,
+40,95,53,55,56,32,95,51,49,48,41,32,40,40,95,53,56,49,32,95,
+51,49,48,41,32,40,95,51,57,50,32,35,49,41,41,41,41,41,41,32,
+40,95,51,56,56,32,95,51,56,57,41,41,41,32,40,95,51,56,56,32,
+95,51,57,48,41,41,41,41,32,40,40,65,32,58,51,56,56,32,80,41,
+32,40,40,65,32,58,51,56,57,32,75,41,32,40,40,65,32,58,51,57,
+48,32,65,41,32,40,40,65,32,58,51,57,49,32,40,40,40,40,95,49,
+53,55,54,32,95,49,54,52,57,41,32,35,54,52,41,32,35,51,50,55,
+54,56,41,32,35,50,49,52,55,52,56,51,54,52,56,41,41,32,40,40,
+65,32,58,51,57,50,32,40,40,83,32,40,40,40,67,39,32,67,41,32,
+40,40,83,32,40,40,40,83,39,32,67,39,41,32,40,40,66,32,83,39,
+41,32,40,40,67,32,95,49,53,56,49,41,32,35,48,41,41,41,32,40,
+40,40,67,39,32,67,41,32,40,40,40,67,39,32,40,83,39,32,67,39,
+41,41,32,95,49,53,55,54,41,32,40,40,66,32,40,66,32,40,95,49,
+51,53,32,40,40,40,110,111,77,97,116,99,104,32,34,46,47,108,105,98,
+47,68,97,116,97,47,73,110,116,101,103,101,114,95,84,121,112,101,46,104,
+115,34,41,32,35,50,52,41,32,35,49,41,41,41,41,32,40,40,66,32,
+40,66,32,40,95,51,56,56,32,95,51,57,48,41,41,41,32,85,41,41,
+41,41,32,40,40,95,51,56,56,32,95,51,57,48,41,32,40,40,79,32,
+35,48,41,32,40,40,79,32,35,48,41,32,40,40,79,32,35,50,41,32,
+75,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,95,51,56,
+56,32,95,51,56,57,41,41,41,32,85,41,41,41,32,40,89,32,40,40,
+40,67,39,32,67,41,32,40,40,66,32,40,83,32,40,40,67,32,95,49,
+53,55,54,41,32,35,48,41,41,41,32,40,40,66,32,40,40,83,39,32,
+95,53,48,51,41,32,40,40,67,32,95,49,53,55,51,41,32,95,51,57,
+49,41,41,41,32,40,40,67,32,66,41,32,40,40,67,32,95,49,53,55,
+50,41,32,95,51,57,49,41,41,41,41,41,32,95,53,48,50,41,41,41,
+41,32,40,95,49,53,55,48,32,35,48,41,41,41,32,40,40,65,32,58,
+51,57,51,32,40,85,32,40,40,40,67,39,32,66,41,32,40,40,66,32,
+95,49,53,55,49,41,32,40,40,80,32,35,49,41,32,40,40,95,49,53,
+55,48,32,35,48,41,32,35,49,41,41,41,41,32,40,40,80,32,35,48,
+41,32,40,40,83,32,80,41,32,40,40,40,83,39,32,40,83,39,32,80,
+41,41,32,40,40,40,67,39,32,66,41,32,95,49,53,54,57,41,32,40,
+95,49,53,55,49,32,95,51,57,49,41,41,41,32,40,40,66,32,40,66,
+32,90,41,41,32,40,40,40,67,39,32,66,41,32,40,66,39,32,95,49,
+53,54,57,41,41,32,40,40,66,32,40,66,32,40,95,49,53,55,49,32,
+95,51,57,49,41,41,41,32,40,40,40,67,39,32,66,41,32,95,49,53,
+54,57,41,32,40,95,49,53,55,49,32,95,51,57,49,41,41,41,41,41,
+41,41,41,41,41,41,32,40,40,65,32,58,51,57,52,32,40,40,66,32,
+40,95,51,56,56,32,95,51,56,57,41,41,32,40,89,32,40,40,40,67,
+39,32,67,41,32,40,40,66,32,40,83,32,40,40,67,32,95,49,54,49,
+48,41,32,35,48,41,41,41,32,40,40,66,32,40,40,83,39,32,95,53,
+48,51,41,32,40,40,66,32,95,49,54,49,54,41,32,40,40,67,32,95,
+49,54,48,48,41,32,40,95,49,54,49,55,32,95,51,57,49,41,41,41,
+41,41,32,40,40,67,32,66,41,32,40,40,67,32,95,49,53,57,57,41,
+32,40,95,49,54,49,55,32,95,51,57,49,41,41,41,41,41,41,32,95,
+53,48,50,41,41,41,41,32,40,40,65,32,58,51,57,53,32,40,40,66,
+32,95,49,54,49,55,41,32,95,51,57,51,41,41,32,40,40,65,32,58,
+51,57,54,32,40,85,32,40,40,40,67,39,32,66,41,32,40,40,66,32,
+95,49,53,56,52,41,32,40,40,80,32,38,49,46,48,41,32,40,40,95,
+49,53,56,51,32,38,48,46,48,41,32,38,49,46,48,41,41,41,41,32,
+40,89,32,40,40,66,32,40,80,32,38,48,46,48,41,41,32,40,40,66,
+32,40,40,67,39,32,66,41,32,40,40,66,32,95,49,53,56,50,41,32,
+95,49,53,57,53,41,41,41,32,40,66,32,40,95,49,53,56,52,32,40,
+95,49,53,57,53,32,95,51,57,49,41,41,41,41,41,41,41,41,41,32,
+40,40,65,32,58,51,57,55,32,40,40,66,32,40,66,32,40,66,32,40,
+66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,41,41,41,32,
+40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,67,
+41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,
+40,66,32,67,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
+40,66,32,67,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,67,
+41,41,41,32,40,40,66,32,40,66,32,67,41,41,32,80,41,41,41,41,
+41,41,41,32,40,40,65,32,58,51,57,56,32,40,85,32,40,90,32,40,
+90,32,40,90,32,40,90,32,40,90,32,40,90,32,75,41,41,41,41,41,
+41,41,41,32,40,40,65,32,58,51,57,57,32,40,85,32,40,75,32,40,
+90,32,40,90,32,40,90,32,40,90,32,40,90,32,75,41,41,41,41,41,
+41,41,41,32,40,40,65,32,58,52,48,48,32,40,85,32,40,75,50,32,
+40,90,32,40,90,32,40,90,32,40,90,32,75,41,41,41,41,41,41,41,
+32,40,40,65,32,58,52,48,49,32,40,85,32,40,75,51,32,40,90,32,
+40,90,32,40,90,32,75,41,41,41,41,41,41,32,40,40,65,32,58,52,
+48,50,32,40,85,32,40,75,52,32,40,90,32,40,90,32,75,41,41,41,
+41,41,32,40,40,65,32,58,52,48,51,32,40,85,32,40,75,32,40,75,
+52,32,40,90,32,75,41,41,41,41,41,32,40,40,65,32,58,52,48,52,
+32,40,85,32,40,75,50,32,40,75,52,32,75,41,41,41,41,32,40,40,
+65,32,58,52,48,53,32,40,85,32,40,75,50,32,40,75,52,32,65,41,
+41,41,41,32,40,40,65,32,58,52,48,54,32,40,40,40,67,39,32,40,
+67,39,32,67,41,41,32,95,52,48,51,41,32,75,41,41,32,40,40,65,
+32,58,52,48,55,32,40,40,40,67,39,32,40,67,39,32,67,41,41,32,
+95,52,48,51,41,32,65,41,41,32,40,40,65,32,58,52,48,56,32,40,
+40,40,67,39,32,40,67,39,32,67,41,41,32,95,52,48,52,41,32,75,
+41,41,32,40,40,65,32,58,52,48,57,32,40,40,40,67,39,32,40,67,
+39,32,67,41,41,32,95,52,48,52,41,32,65,41,41,32,40,40,65,32,
+58,52,49,48,32,40,40,40,83,39,32,40,83,39,32,40,83,39,32,80,
+41,41,41,32,95,51,57,57,41,32,95,52,48,48,41,41,32,40,40,65,
+32,58,52,49,49,32,40,40,40,83,39,32,66,41,32,40,40,66,32,83,
+41,32,40,40,40,67,39,32,40,67,39,32,83,41,41,32,40,40,40,83,
+39,32,40,83,39,32,40,83,39,32,83,41,41,41,32,40,40,40,67,39,
+32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,67,41,41,32,
+40,40,40,83,39,32,66,41,32,40,40,40,83,39,32,67,39,41,32,40,
+40,66,32,95,50,50,51,41,32,40,40,66,32,40,85,32,75,41,41,32,
+95,51,57,56,41,41,41,32,40,40,66,32,95,53,56,48,41,32,40,40,
+66,32,40,85,32,65,41,41,32,95,51,57,56,41,41,41,41,32,40,40,
+40,83,39,32,66,41,32,40,40,66,32,95,53,55,56,41,32,40,40,66,
+32,40,85,32,65,41,41,32,95,51,57,56,41,41,41,32,40,40,66,32,
+95,53,56,48,41,32,40,40,66,32,40,85,32,65,41,41,32,95,51,57,
+56,41,41,41,41,41,41,32,40,40,83,32,73,41,32,40,90,32,75,41,
+41,41,41,32,40,40,40,83,39,32,66,41,32,40,40,66,32,40,67,39,
+32,66,41,41,32,40,40,66,32,40,66,32,80,41,41,32,40,40,83,32,
+40,40,40,67,39,32,67,39,41,32,40,40,66,32,95,53,55,54,41,32,
+40,40,66,32,40,85,32,65,41,41,32,95,51,57,56,41,41,41,32,40,
+85,32,75,41,41,41,32,40,40,40,67,39,32,95,53,56,49,41,32,40,
+40,66,32,40,85,32,65,41,41,32,95,51,57,56,41,41,32,40,95,51,
+57,50,32,35,49,41,41,41,41,41,41,32,40,40,66,32,67,41,32,40,
+40,66,32,95,53,55,53,41,32,40,40,66,32,40,85,32,65,41,41,32,
+95,51,57,56,41,41,41,41,41,41,32,40,85,32,65,41,41,41,41,32,
+95,52,48,51,41,41,32,40,40,65,32,58,52,49,50,32,40,75,32,40,
+110,111,68,101,102,97,117,108,116,32,34,73,110,116,101,103,114,97,108,46,
+116,111,73,110,116,101,103,101,114,34,41,41,41,32,40,40,65,32,58,52,
+49,51,32,40,40,40,83,39,32,40,67,39,32,66,41,41,32,40,40,40,
+83,39,32,66,41,32,40,40,66,32,89,41,32,40,40,40,67,39,32,40,
+67,39,32,40,83,39,32,67,41,41,41,32,40,40,40,83,39,32,66,41,
+32,40,66,39,32,40,40,66,32,83,41,32,40,40,40,83,39,32,67,41,
+32,40,40,66,32,95,50,50,51,41,32,40,40,66,32,40,85,32,75,41,
+41,32,95,51,57,56,41,41,41,32,40,40,40,67,39,32,95,53,56,49,
+41,32,40,40,66,32,40,85,32,65,41,41,32,95,51,57,56,41,41,32,
+40,95,51,57,50,32,35,48,41,41,41,41,41,41,32,40,40,66,32,40,
+40,67,39,32,66,41,32,83,41,41,32,95,52,48,48,41,41,41,32,73,
+41,41,41,32,40,40,66,32,95,53,55,57,41,32,40,40,66,32,40,85,
+32,65,41,41,32,95,51,57,56,41,41,41,41,32,40,40,66,32,95,53,
+55,57,41,32,40,40,66,32,40,85,32,65,41,41,32,95,51,57,56,41,
+41,41,41,32,40,40,65,32,58,52,49,52,32,40,40,40,83,39,32,40,
+67,39,32,67,41,41,32,40,40,40,83,39,32,83,41,32,40,40,40,83,
+39,32,40,67,39,32,83,39,41,41,32,40,40,66,32,40,66,32,95,49,
+51,48,41,41,32,40,40,40,83,39,32,67,41,32,40,40,66,32,95,50,
+50,51,41,32,40,40,66,32,40,85,32,75,41,41,32,95,51,57,56,41,
+41,41,32,40,40,40,67,39,32,95,53,56,49,41,32,40,40,66,32,40,
+85,32,65,41,41,32,95,51,57,56,41,41,32,40,95,51,57,50,32,35,
+48,41,41,41,41,41,32,40,40,40,83,39,32,67,41,32,40,40,66,32,
+95,50,50,51,41,32,40,40,66,32,40,85,32,75,41,41,32,95,51,57,
+56,41,41,41,32,40,40,40,67,39,32,95,53,56,49,41,32,40,40,66,
+32,40,85,32,65,41,41,32,95,51,57,56,41,41,32,40,95,51,57,50,
+32,35,48,41,41,41,41,41,32,40,40,40,83,39,32,66,41,32,40,66,
+39,32,40,40,66,32,95,53,55,57,41,32,40,40,66,32,40,85,32,65,
+41,41,32,95,51,57,56,41,41,41,41,32,40,40,67,32,40,40,40,83,
+39,32,67,39,41,32,40,40,66,32,83,39,41,32,40,40,66,32,95,53,
+55,55,41,32,40,40,66,32,40,85,32,65,41,41,32,95,51,57,56,41,
+41,41,41,32,40,40,40,83,39,32,40,83,39,32,66,41,41,32,95,51,
+57,57,41,32,95,52,49,51,41,41,41,32,73,41,41,41,41,32,40,40,
+40,67,39,32,95,53,56,49,41,32,40,40,66,32,40,85,32,65,41,41,
+32,95,51,57,56,41,41,32,40,95,51,57,50,32,35,48,41,41,41,41,
+32,40,40,65,32,58,52,49,53,32,40,40,83,32,40,40,40,83,39,32,
+67,39,41,32,40,40,66,32,95,50,50,51,41,32,40,40,66,32,40,85,
+32,75,41,41,32,95,51,57,56,41,41,41,32,40,40,40,83,39,32,67,
+41,32,95,52,48,48,41,32,40,40,40,67,39,32,95,53,56,49,41,32,
+40,40,66,32,40,85,32,65,41,41,32,95,51,57,56,41,41,32,40,95,
+51,57,50,32,35,50,41,41,41,41,41,32,40,40,40,67,39,32,95,53,
+56,49,41,32,40,40,66,32,40,85,32,65,41,41,32,95,51,57,56,41,
+41,32,40,95,51,57,50,32,35,48,41,41,41,41,32,40,40,65,32,58,
+52,49,54,32,40,40,66,32,40,66,32,95,49,51,50,41,41,32,95,52,
+49,53,41,41,32,40,40,65,32,58,52,49,55,32,40,40,40,67,39,32,
+40,67,39,32,67,41,41,32,40,40,40,83,39,32,66,41,32,40,40,66,
+32,83,41,32,40,40,40,83,39,32,67,41,32,40,40,66,32,95,53,57,
+51,41,32,40,85,32,40,75,32,65,41,41,41,41,32,40,40,40,67,39,
+32,95,53,56,49,41,32,40,40,66,32,40,85,32,65,41,41,32,40,40,
+66,32,95,51,57,56,41,32,40,85,32,40,75,32,75,41,41,41,41,41,
+32,40,95,51,57,50,32,35,48,41,41,41,41,41,32,40,40,66,32,89,
+41,32,40,40,40,83,39,32,40,67,39,32,40,67,39,32,67,41,41,41,
+32,40,40,40,83,39,32,66,41,32,40,66,39,32,40,40,66,32,83,41,
+32,40,40,40,83,39,32,67,41,32,40,40,66,32,95,50,50,51,41,32,
+40,40,66,32,40,85,32,75,41,41,32,40,40,66,32,95,51,57,56,41,
+32,40,85,32,40,75,32,75,41,41,41,41,41,41,32,40,40,40,67,39,
+32,95,53,56,49,41,32,40,40,66,32,40,85,32,65,41,41,32,40,40,
+66,32,95,51,57,56,41,32,40,85,32,40,75,32,75,41,41,41,41,41,
+32,40,95,51,57,50,32,35,48,41,41,41,41,41,41,32,40,40,40,83,
+39,32,40,83,39,32,40,83,39,32,83,41,41,41,32,40,40,40,83,39,
+32,66,41,32,40,66,39,32,40,40,66,32,83,41,32,40,40,66,32,95,
+52,49,53,41,32,40,85,32,40,75,32,75,41,41,41,41,41,41,32,40,
+40,40,83,39,32,66,41,32,40,40,66,32,40,83,39,32,66,41,41,32,
+40,40,66,32,95,53,55,55,41,32,40,85,32,40,90,32,75,41,41,41,
+41,41,32,40,40,40,83,39,32,40,67,39,32,40,67,39,32,66,41,41,
+41,32,40,40,66,32,40,67,32,66,41,41,32,40,40,40,67,39,32,83,
+41,32,40,40,66,32,95,53,55,55,41,32,40,85,32,40,90,32,75,41,
+41,41,41,32,73,41,41,41,32,40,40,40,83,39,32,67,41,32,40,40,
+66,32,95,51,57,57,41,32,40,85,32,40,75,32,75,41,41,41,41,32,
+40,40,40,67,39,32,95,53,56,49,41,32,40,40,66,32,40,85,32,65,
+41,41,32,40,40,66,32,95,51,57,56,41,32,40,85,32,40,75,32,75,
+41,41,41,41,41,32,40,95,51,57,50,32,35,50,41,41,41,41,41,41,
+41,32,40,40,40,83,39,32,40,67,39,32,40,67,39,32,66,41,41,41,
+32,40,40,66,32,40,67,32,66,41,41,32,40,40,40,67,39,32,83,41,
+32,40,40,66,32,95,53,55,55,41,32,40,85,32,40,90,32,75,41,41,
+41,41,32,73,41,41,41,32,40,40,40,83,39,32,67,41,32,40,40,66,
+32,95,51,57,57,41,32,40,85,32,40,75,32,75,41,41,41,41,32,40,
+40,40,67,39,32,95,53,56,49,41,32,40,40,66,32,40,85,32,65,41,
+41,32,40,40,66,32,95,51,57,56,41,32,40,85,32,40,75,32,75,41,
+41,41,41,41,32,40,95,51,57,50,32,35,50,41,41,41,41,41,41,41,
+32,40,40,40,67,39,32,95,53,56,49,41,32,40,85,32,40,90,32,75,
+41,41,41,32,40,95,51,57,50,32,35,49,41,41,41,41,41,41,32,40,
+95,50,55,32,34,68,97,116,97,46,73,110,116,101,103,114,97,108,46,94,
+58,32,110,101,103,97,116,105,118,101,32,101,120,112,111,110,101,110,116,34,
+41,41,41,32,40,40,65,32,58,52,49,56,32,40,40,40,83,39,32,66,
+41,32,40,40,66,32,95,53,56,49,41,32,40,85,32,65,41,41,41,32,
+40,40,66,32,95,52,48,53,41,32,40,85,32,75,41,41,41,41,32,40,
+40,65,32,58,52,49,57,32,40,40,40,83,39,32,95,50,50,50,41,32,
+40,40,66,32,40,67,32,40,40,67,32,83,39,41,32,40,40,80,32,95,
+49,51,53,41,32,40,75,50,32,95,49,51,52,41,41,41,41,41,32,40,
+40,66,32,40,40,67,39,32,66,41,32,40,66,39,32,40,85,32,95,49,
+51,52,41,41,41,41,32,40,40,40,83,39,32,40,67,39,32,66,41,41,
+32,40,40,66,32,40,66,32,40,67,39,32,66,41,41,41,32,40,40,66,
+32,40,66,32,40,66,32,95,49,51,49,41,41,41,32,95,50,50,51,41,
+41,41,32,40,40,66,32,95,50,50,51,41,32,95,52,49,57,41,41,41,
+41,41,32,40,40,66,32,95,50,50,54,41,32,95,52,49,57,41,41,41,
+32,40,40,65,32,58,52,50,48,32,40,40,95,50,57,51,32,95,52,51,
+49,41,32,40,95,50,57,55,32,95,52,50,48,41,41,41,32,40,40,65,
+32,58,52,50,49,32,40,40,40,40,40,95,49,50,32,95,52,50,48,41,
+32,40,40,67,32,79,41,32,75,41,41,32,40,95,52,49,32,95,52,50,
+50,41,41,32,40,95,50,48,32,95,52,50,49,41,41,32,40,95,50,49,
+32,95,52,50,49,41,41,41,32,40,40,65,32,58,52,50,50,32,40,40,
+40,40,95,51,51,32,95,52,50,49,41,32,40,95,50,56,55,32,95,52,
+51,48,41,41,32,40,95,51,57,32,95,52,50,50,41,41,32,40,95,52,
+48,32,95,52,50,50,41,41,41,32,40,40,65,32,58,52,50,51,32,40,
+40,95,52,50,32,95,52,50,50,41,32,40,75,32,95,53,48,50,41,41,
+41,32,40,40,65,32,58,52,50,52,32,40,40,83,32,40,40,40,83,39,
+32,95,49,56,52,48,41,32,40,90,32,95,49,56,52,51,41,41,32,40,
+40,66,32,95,49,56,52,53,41,32,95,52,50,52,41,41,41,32,40,40,
+66,32,95,49,56,52,54,41,32,95,52,50,52,41,41,41,32,40,40,65,
+32,58,52,50,53,32,40,40,40,40,40,95,48,32,95,52,50,49,41,32,
+95,53,48,50,41,32,95,53,48,52,41,32,40,95,56,32,95,52,50,53,
+41,41,32,40,95,57,32,95,52,50,53,41,41,41,32,40,40,65,32,58,
+52,50,54,32,40,95,54,54,49,32,95,53,48,52,41,41,32,40,40,65,
+32,58,52,50,55,32,40,40,40,40,95,53,50,51,32,95,52,50,54,41,
+32,95,53,48,50,41,32,40,95,53,50,57,32,95,52,50,55,41,41,32,
+95,52,50,57,41,41,32,40,40,65,32,58,52,50,56,32,40,40,80,32,
+95,49,51,53,41,32,40,75,50,32,95,49,51,52,41,41,41,32,40,40,
+65,32,58,52,50,57,32,40,40,95,52,51,51,32,95,53,48,52,41,32,
+95,53,48,50,41,41,32,40,40,65,32,58,52,51,48,32,40,40,66,32,
+40,95,50,56,52,32,95,52,50,57,41,41,32,95,52,51,49,41,41,32,
+40,40,65,32,58,52,51,49,32,40,40,66,32,89,41,32,40,40,66,32,
+40,66,32,40,80,32,95,53,48,50,41,41,41,32,40,40,66,32,40,67,
+39,32,66,41,41,32,40,66,32,95,53,48,51,41,41,41,41,41,32,40,
+40,65,32,58,52,51,50,32,40,40,66,32,89,41,32,40,40,66,32,40,
+66,32,40,80,32,95,53,48,50,41,41,41,32,40,40,40,67,39,32,40,
+83,39,32,83,41,41,32,40,67,39,32,83,39,41,41,32,40,40,67,39,
+32,66,41,32,95,53,48,51,41,41,41,41,41,32,40,40,65,32,58,52,
+51,51,32,40,40,66,32,40,66,32,89,41,41,32,40,40,66,32,40,40,
+67,39,32,66,41,32,80,41,41,32,40,67,39,32,66,41,41,41,41,32,
+40,40,65,32,58,52,51,52,32,40,40,66,32,40,83,32,80,41,41,32,
+40,40,40,83,39,32,66,41,32,40,40,66,32,40,67,39,32,66,41,41,
+32,40,66,32,40,83,32,95,50,57,50,41,41,41,41,32,95,52,51,51,
+41,41,41,32,40,40,65,32,58,52,51,53,32,40,40,66,32,40,80,32,
+40,95,50,55,32,34,102,111,108,100,114,49,34,41,41,41,32,95,52,51,
+51,41,41,32,40,40,65,32,58,52,51,54,32,40,40,66,32,89,41,32,
+40,40,66,32,40,66,32,40,83,32,80,41,41,41,32,40,40,67,39,32,
+66,41,32,66,41,41,41,41,32,40,40,65,32,58,52,51,55,32,40,40,
+66,32,40,83,32,80,41,41,32,40,40,40,83,39,32,66,41,32,40,66,
+39,32,40,40,66,32,40,67,39,32,40,83,32,95,50,57,50,41,41,41,
+32,40,40,66,32,67,41,32,95,52,51,54,41,41,41,41,32,73,41,41,
+41,32,40,40,65,32,58,52,51,56,32,40,40,66,32,40,80,32,40,95,
+50,55,32,34,102,111,108,100,108,49,34,41,41,41,32,95,52,51,54,41,
+41,32,40,40,65,32,58,52,51,57,32,40,40,66,32,40,80,32,40,95,
+50,55,32,34,109,105,110,105,109,117,109,34,41,41,41,32,40,40,66,32,
+95,52,51,51,41,32,40,40,40,67,39,32,40,83,39,32,67,41,41,32,
+40,40,40,67,39,32,40,67,39,32,83,41,41,32,95,53,57,51,41,32,
+73,41,41,32,73,41,41,41,41,32,40,40,65,32,58,52,52,48,32,40,
+40,66,32,40,80,32,40,95,50,55,32,34,109,97,120,105,109,117,109,34,
+41,41,41,32,40,40,66,32,95,52,51,51,41,32,40,40,40,67,39,32,
+40,83,39,32,67,41,41,32,40,40,40,67,39,32,40,67,39,32,83,41,
+41,32,95,53,57,53,41,32,73,41,41,32,73,41,41,41,41,32,40,40,
+65,32,58,52,52,49,32,40,40,40,83,39,32,95,52,51,51,41,32,95,
+53,55,53,41,32,40,40,67,32,95,53,56,49,41,32,40,95,51,57,50,
+32,35,48,41,41,41,41,32,40,40,65,32,58,52,52,50,32,40,40,40,
+83,39,32,95,52,51,51,41,32,95,53,55,55,41,32,40,40,67,32,95,
+53,56,49,41,32,40,95,51,57,50,32,35,49,41,41,41,41,32,40,40,
+65,32,58,52,52,51,32,40,40,95,52,51,51,32,95,49,51,49,41,32,
+95,49,51,53,41,41,32,40,40,65,32,58,52,52,52,32,40,40,95,52,
+51,51,32,95,49,51,48,41,32,95,49,51,52,41,41,32,40,40,65,32,
+58,52,52,53,32,40,40,66,32,40,95,50,56,52,32,95,52,52,52,41,
+41,32,95,52,51,49,41,41,32,40,40,65,32,58,52,52,54,32,40,40,
+66,32,40,95,50,56,52,32,95,52,52,51,41,41,32,95,52,51,49,41,
+41,32,40,40,65,32,58,52,52,55,32,40,40,67,32,40,40,40,83,39,
+32,67,39,41,32,40,40,67,32,40,95,53,57,52,32,95,51,49,53,41,
+41,32,35,48,41,41,32,40,40,66,32,40,80,32,95,53,48,50,41,41,
+32,40,40,66,32,40,40,67,39,32,66,41,32,95,53,48,51,41,41,32,
+40,40,66,32,95,52,52,55,41,32,40,40,67,32,40,95,53,55,54,32,
+95,51,49,48,41,41,32,35,49,41,41,41,41,41,41,32,95,53,48,50,
+41,41,32,40,40,65,32,58,52,52,56,32,40,40,67,32,40,40,40,83,
+39,32,83,39,41,32,40,40,67,32,40,95,53,57,52,32,95,51,49,53,
+41,41,32,35,48,41,41,32,40,40,66,32,40,80,32,95,53,48,50,41,
+41,32,40,90,32,40,40,66,32,95,52,52,56,41,32,40,40,67,32,40,
+95,53,55,54,32,95,51,49,48,41,41,32,35,49,41,41,41,41,41,41,
+32,73,41,41,32,40,40,65,32,58,52,52,57,32,40,40,89,32,40,40,
+66,32,40,83,32,80,41,41,32,40,40,66,32,90,41,32,40,40,40,67,
+39,32,66,41,32,40,40,66,32,40,67,39,32,40,83,32,95,49,54,50,
+54,41,41,41,32,67,41,41,32,40,40,67,32,40,95,53,55,53,32,95,
+51,49,48,41,41,32,35,49,41,41,41,41,41,32,35,48,41,41,32,40,
+40,65,32,58,52,53,48,32,40,95,52,53,50,32,80,41,41,32,40,40,
+65,32,58,52,53,49,32,40,95,52,53,51,32,40,40,66,32,40,66,32,
+67,41,41,32,80,41,41,41,32,40,40,65,32,58,52,53,50,32,40,40,
+66,32,89,41,32,40,40,66,32,40,66,32,40,40,67,39,32,66,41,32,
+40,85,32,95,53,48,50,41,41,41,41,32,40,40,66,32,40,66,32,40,
+40,67,39,32,66,41,32,40,66,39,32,40,85,32,95,53,48,50,41,41,
+41,41,41,32,40,40,66,32,40,67,39,32,66,41,41,32,40,40,66,32,
+40,66,32,40,67,39,32,66,41,41,41,32,40,66,32,40,66,32,95,53,
+48,51,41,41,41,41,41,41,41,41,32,40,40,65,32,58,52,53,51,32,
+40,40,66,32,89,41,32,40,40,66,32,40,66,32,40,40,67,39,32,66,
+41,32,40,66,39,32,40,85,32,95,53,48,50,41,41,41,41,41,32,40,
+40,66,32,40,66,32,40,40,67,39,32,66,41,32,40,66,39,32,40,66,
+39,32,40,85,32,95,53,48,50,41,41,41,41,41,41,32,40,40,66,32,
+40,66,32,40,40,67,39,32,66,41,32,40,66,39,32,40,66,39,32,40,
+66,39,32,40,85,32,95,53,48,50,41,41,41,41,41,41,41,32,40,40,
+66,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,40,67,39,
+32,66,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,67,39,32,
+66,41,41,41,41,32,40,66,32,40,66,32,40,66,32,95,53,48,51,41,
+41,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,52,53,52,32,
+40,40,80,32,40,40,80,32,95,53,48,50,41,32,95,53,48,50,41,41,
+32,40,40,67,32,66,41,32,40,40,40,67,39,32,66,41,32,40,66,39,
+32,95,52,53,52,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,
+32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,80,41,41,32,
+95,53,48,51,41,41,41,32,95,53,48,51,41,41,41,41,41,32,40,40,
+65,32,58,52,53,53,32,40,40,80,32,40,40,67,32,40,40,80,32,95,
+53,48,50,41,32,95,53,48,50,41,41,32,95,53,48,50,41,41,32,40,
+40,67,32,66,41,32,40,40,40,67,39,32,66,41,32,40,66,39,32,40,
+66,39,32,95,52,53,53,41,41,41,32,40,40,40,67,39,32,40,67,39,
+32,66,41,41,32,40,40,66,32,40,66,32,40,67,39,32,40,67,39,32,
+66,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,67,
+41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,67,
+39,32,66,41,41,32,40,40,66,32,40,66,32,80,41,41,32,95,53,48,
+51,41,41,41,32,95,53,48,51,41,41,41,41,32,95,53,48,51,41,41,
+41,41,41,32,40,40,65,32,58,52,53,54,32,40,40,66,32,95,52,53,
+55,41,32,95,50,50,51,41,41,32,40,40,65,32,58,52,53,55,32,40,
+40,66,32,89,41,32,40,40,66,32,40,66,32,40,67,32,40,40,67,32,
+83,39,41,32,95,53,50,50,41,41,41,41,32,40,40,66,32,40,66,32,
+40,40,67,39,32,66,41,32,40,66,39,32,40,85,32,95,53,50,49,41,
+41,41,41,41,32,40,40,66,32,40,67,39,32,66,41,41,32,40,40,66,
+32,40,66,32,40,67,39,32,66,41,41,41,32,40,40,67,32,40,67,39,
+32,67,41,41,32,95,53,50,49,41,41,41,41,41,41,41,32,40,40,65,
+32,58,52,53,56,32,40,40,66,32,95,52,53,57,41,32,95,50,50,51,
+41,41,32,40,40,65,32,58,52,53,57,32,40,40,66,32,89,41,32,40,
+40,66,32,40,66,32,40,40,67,39,32,66,41,32,40,85,32,95,49,51,
+53,41,41,41,41,32,40,40,66,32,40,66,32,40,40,67,39,32,66,41,
+32,40,66,39,32,40,85,32,95,49,51,52,41,41,41,41,41,32,40,40,
+66,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,40,67,39,
+32,66,41,41,41,32,40,66,32,40,66,32,95,49,51,49,41,41,41,41,
+41,41,41,41,32,40,40,65,32,58,52,54,48,32,40,40,66,32,95,52,
+54,49,41,32,95,50,50,51,41,41,32,40,40,65,32,58,52,54,49,32,
+40,40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,40,67,39,32,
+66,41,32,95,52,53,57,41,32,95,52,54,51,41,41,32,95,52,54,51,
+41,41,32,40,40,65,32,58,52,54,50,32,40,40,40,83,39,32,40,83,
+39,32,80,41,41,32,95,52,52,55,41,32,95,52,52,56,41,41,32,40,
+40,65,32,58,52,54,51,32,40,40,89,32,40,40,66,32,40,83,32,80,
+41,41,32,40,40,40,67,39,32,66,41,32,66,41,32,40,67,32,95,53,
+48,51,41,41,41,41,32,95,53,48,50,41,41,32,40,40,65,32,58,52,
+54,52,32,40,40,66,32,89,41,32,40,40,66,32,40,66,32,40,80,32,
+95,53,48,50,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,
+32,40,83,39,32,66,41,41,32,40,82,32,95,53,48,50,41,41,41,32,
+40,40,67,39,32,66,41,32,95,53,48,51,41,41,41,41,41,32,40,40,
+65,32,58,52,54,53,32,40,40,66,32,89,41,32,40,40,66,32,40,66,
+32,40,80,32,95,53,48,50,41,41,41,32,40,40,66,32,67,41,32,40,
+40,67,32,40,83,39,32,83,39,41,41,32,95,53,48,51,41,41,41,41,
+41,32,40,40,65,32,58,52,54,54,32,40,40,40,67,39,32,89,41,32,
+40,40,66,32,40,66,32,40,40,83,39,32,80,41,32,40,40,40,67,39,
+32,80,41,32,95,52,54,51,41,32,95,53,48,50,41,41,41,41,32,40,
+40,40,67,39,32,66,41,32,40,40,66,32,40,83,39,32,83,41,41,32,
+40,40,40,67,39,32,66,41,32,40,83,39,32,83,39,41,41,32,40,40,
+40,67,39,32,66,41,32,40,66,39,32,40,40,66,32,80,41,32,95,52,
+54,51,41,41,41,32,95,53,48,51,41,41,41,41,32,40,40,40,67,39,
+32,66,41,32,66,41,32,40,67,32,95,53,48,51,41,41,41,41,41,32,
+95,53,48,50,41,41,32,40,40,65,32,58,52,54,55,32,40,40,40,67,
+39,32,89,41,32,40,40,66,32,40,66,32,40,40,83,39,32,80,41,32,
+40,40,40,67,39,32,80,41,32,95,52,54,51,41,32,95,53,48,50,41,
+41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,83,39,
+32,83,41,41,32,40,40,40,67,39,32,66,41,32,40,83,39,32,83,39,
+41,41,32,40,40,66,32,40,66,32,80,41,41,32,40,40,66,32,40,66,
+32,95,52,54,51,41,41,32,40,67,32,95,53,48,51,41,41,41,41,41,
+41,32,40,40,40,67,39,32,66,41,32,66,41,32,40,67,32,95,53,48,
+51,41,41,41,41,41,32,95,53,48,50,41,41,32,40,40,65,32,58,52,
+54,56,32,40,40,80,32,40,95,50,55,32,34,104,101,97,100,34,41,41,
+32,75,41,41,32,40,40,65,32,58,52,54,57,32,40,40,80,32,40,95,
+50,55,32,34,116,97,105,108,34,41,41,32,65,41,41,32,40,40,65,32,
+58,52,55,48,32,40,40,66,32,40,80,32,95,53,48,50,41,41,32,40,
+40,66,32,40,40,67,39,32,66,41,32,95,53,48,51,41,41,32,40,40,
+66,32,89,41,32,40,40,66,32,40,66,32,40,80,32,95,53,48,50,41,
+41,41,32,40,40,40,67,39,32,66,41,32,40,66,39,32,40,66,39,32,
+95,53,48,51,41,41,41,32,40,40,67,39,32,66,41,32,95,53,48,51,
+41,41,41,41,41,41,41,32,40,40,65,32,58,52,55,49,32,40,40,66,
+32,40,66,32,95,52,50,57,41,41,32,95,52,55,48,41,41,32,40,40,
+65,32,58,52,55,50,32,40,40,66,32,95,52,55,52,41,32,95,50,50,
+51,41,41,32,40,40,65,32,58,52,55,51,32,40,40,66,32,40,66,32,
+40,66,32,95,49,51,50,41,41,41,32,95,52,55,50,41,41,32,40,40,
+65,32,58,52,55,52,32,40,66,32,95,52,52,53,41,41,32,40,40,65,
+32,58,52,55,53,32,40,40,66,32,89,41,32,40,40,66,32,40,66,32,
+40,80,32,95,53,50,49,41,41,41,32,40,40,40,67,39,32,40,67,39,
+32,83,41,41,32,40,67,39,32,67,39,41,41,32,95,53,50,50,41,41,
+41,41,32,40,40,65,32,58,52,55,54,32,40,40,66,32,95,52,55,55,
+41,32,95,50,50,51,41,41,32,40,40,65,32,58,52,55,55,32,40,40,
+40,67,39,32,40,67,39,32,67,41,41,32,40,40,40,67,39,32,40,67,
+39,32,67,41,41,32,40,40,66,32,40,66,32,95,52,55,53,41,41,32,
+40,40,67,32,40,67,39,32,95,50,56,52,41,41,32,95,54,54,52,41,
+41,41,32,95,53,50,49,41,41,32,40,85,32,40,75,32,95,53,50,50,
+41,41,41,41,32,40,40,65,32,58,52,55,56,32,40,40,66,32,95,52,
+55,57,41,32,95,50,50,51,41,41,32,40,40,65,32,58,52,55,57,32,
+40,40,66,32,40,40,83,39,32,66,41,32,95,53,48,52,41,41,32,40,
+40,40,83,39,32,67,39,41,32,40,40,66,32,95,52,51,54,41,32,40,
+40,66,32,95,50,56,55,41,32,95,52,56,50,41,41,41,32,95,52,56,
+53,41,41,41,32,40,40,65,32,58,52,56,48,32,40,40,66,32,95,52,
+56,49,41,32,95,50,50,51,41,41,32,40,40,65,32,58,52,56,49,32,
+40,40,66,32,40,67,39,32,95,52,51,50,41,41,32,40,40,66,32,40,
+66,32,40,66,32,95,49,51,50,41,41,41,32,40,40,66,32,67,41,32,
+95,52,55,52,41,41,41,41,32,40,40,65,32,58,52,56,50,32,40,40,
+66,32,89,41,32,40,40,66,32,40,66,32,40,66,32,40,80,32,95,53,
+48,50,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,
+32,67,41,41,41,32,40,40,40,67,39,32,66,41,32,40,83,39,32,40,
+83,39,32,83,39,41,41,41,32,40,66,32,40,40,67,39,32,66,41,32,
+95,53,48,51,41,41,41,41,32,73,41,41,41,41,32,40,40,65,32,58,
+52,56,51,32,40,40,66,32,89,41,32,40,40,66,32,40,66,32,40,66,
+32,40,80,32,95,53,48,50,41,41,41,41,32,40,40,40,67,39,32,40,
+83,39,32,40,83,39,32,67,41,41,41,32,40,40,40,67,39,32,66,41,
+32,40,83,39,32,40,83,39,32,83,39,41,41,41,32,40,66,32,40,40,
+67,39,32,66,41,32,95,53,48,51,41,41,41,41,32,73,41,41,41,41,
+32,40,40,65,32,58,52,56,52,32,40,40,66,32,95,52,56,53,41,32,
+95,50,50,51,41,41,32,40,40,65,32,58,52,56,53,32,40,40,66,32,
+89,41,32,40,40,66,32,40,66,32,40,80,32,95,53,48,50,41,41,41,
+32,40,40,66,32,40,66,32,40,40,83,39,32,66,41,32,95,53,48,51,
+41,41,41,32,40,40,66,32,40,40,67,39,32,66,41,32,66,41,41,32,
+40,40,66,32,40,66,32,95,52,51,50,41,41,32,40,66,32,40,66,32,
+95,49,51,50,41,41,41,41,41,41,41,41,32,40,40,65,32,58,52,56,
+54,32,40,40,40,67,39,32,66,41,32,95,52,52,55,41,32,95,52,56,
+55,41,41,32,40,40,65,32,58,52,56,55,32,40,40,66,32,89,41,32,
+95,53,48,51,41,41,32,40,40,65,32,58,52,56,56,32,40,40,66,32,
+95,52,56,57,41,32,95,50,50,51,41,41,32,40,40,65,32,58,52,56,
+57,32,40,40,66,32,95,52,51,54,41,32,40,40,66,32,95,50,56,55,
+41,32,95,52,56,50,41,41,41,32,40,40,65,32,58,52,57,48,32,40,
+40,66,32,95,52,51,54,41,32,40,40,66,32,95,50,56,55,41,32,95,
+52,56,51,41,41,41,32,40,40,65,32,58,52,57,49,32,40,40,40,67,
+39,32,67,41,32,40,40,66,32,40,83,32,40,40,67,32,40,95,53,57,
+51,32,95,51,49,53,41,41,32,35,48,41,41,41,32,40,67,32,40,89,
+32,40,40,66,32,40,66,32,40,80,32,40,95,50,55,32,34,33,33,58,
+32,101,109,112,116,121,34,41,41,41,41,32,40,40,66,32,40,40,83,39,
+32,67,39,41,32,40,40,67,32,40,95,50,50,51,32,95,51,49,52,41,
+41,32,35,48,41,41,41,32,40,40,67,32,66,41,32,40,40,67,32,40,
+95,53,55,54,32,95,51,49,48,41,41,32,35,49,41,41,41,41,41,41,
+41,41,32,40,95,50,55,32,34,33,33,58,32,60,48,34,41,41,41,32,
+40,40,65,32,58,52,57,50,32,40,40,40,83,39,32,40,83,39,32,80,
+41,41,32,95,52,51,50,41,32,40,40,66,32,95,52,51,50,41,32,40,
+95,50,56,52,32,95,49,51,50,41,41,41,41,32,40,40,65,32,58,52,
+57,51,32,40,40,66,32,95,52,57,53,41,32,95,53,57,52,41,41,32,
+40,40,65,32,58,52,57,52,32,40,40,66,32,95,52,57,53,41,32,40,
+40,67,32,40,67,39,32,40,67,39,32,40,95,50,50,52,32,95,54,48,
+54,41,41,41,41,32,95,54,49,50,41,41,41,32,40,40,65,32,58,52,
+57,53,32,40,40,66,32,89,41,32,40,40,66,32,40,66,32,40,80,32,
+95,53,48,50,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,
+32,40,83,39,32,67,41,41,32,40,66,32,95,52,57,50,41,41,41,32,
+40,40,40,83,39,32,66,41,32,40,66,39,32,40,67,39,32,95,53,48,
+52,41,41,41,32,40,40,67,39,32,66,41,32,95,53,48,51,41,41,41,
+41,41,41,32,40,40,65,32,58,52,57,54,32,40,40,80,32,40,95,50,
+55,32,34,108,97,115,116,58,32,91,93,34,41,41,32,40,40,40,67,39,
+32,83,41,32,85,41,32,40,90,32,40,90,32,95,52,57,54,41,41,41,
+41,41,32,40,40,65,32,58,52,57,55,32,40,40,80,32,40,95,50,55,
+32,34,105,110,105,116,58,32,91,93,34,41,41,32,40,40,66,32,40,83,
+32,40,85,32,95,53,48,50,41,41,41,32,40,40,66,32,90,41,32,40,
+40,66,32,90,41,32,40,40,40,67,39,32,66,41,32,95,53,48,51,41,
+32,95,52,57,55,41,41,41,41,41,41,32,40,40,65,32,58,52,57,56,
+32,40,40,66,32,95,52,57,57,41,32,95,50,50,51,41,41,32,40,40,
+65,32,58,52,57,57,32,40,40,66,32,89,41,32,40,40,66,32,40,66,
+32,40,80,32,95,49,51,52,41,41,41,32,40,40,66,32,40,67,39,32,
+40,83,39,32,95,49,51,48,41,41,41,32,95,52,55,52,41,41,41,41,
+32,40,40,65,32,58,53,48,48,32,40,40,66,32,89,41,32,40,40,66,
+32,40,66,32,40,83,32,95,53,48,51,41,41,41,32,40,67,32,66,41,
+41,41,41,32,40,40,65,32,58,53,48,49,32,40,40,66,32,89,41,32,
+40,40,66,32,40,66,32,40,66,32,40,66,32,40,83,32,40,85,32,95,
+53,48,50,41,41,41,41,41,41,32,40,40,40,67,39,32,40,83,39,32,
+40,83,39,32,40,83,39,32,67,41,41,41,41,32,40,40,40,67,39,32,
+66,41,32,40,40,66,32,40,83,39,32,66,41,41,32,40,40,66,32,40,
+66,32,40,67,39,32,67,39,41,41,41,32,40,40,66,32,40,66,32,40,
+66,32,67,39,41,41,41,32,95,52,53,54,41,41,41,41,32,40,66,32,
+40,66,32,40,40,67,39,32,66,41,32,95,53,48,51,41,41,41,41,41,
+32,40,66,32,40,40,83,39,32,66,41,32,95,53,48,52,41,41,41,41,
+41,41,32,40,40,65,32,58,53,48,50,32,75,41,32,40,40,65,32,58,
+53,48,51,32,79,41,32,40,40,65,32,58,53,48,52,32,40,40,67,32,
+83,41,32,40,40,66,32,40,40,67,39,32,66,41,32,95,53,48,51,41,
+41,32,40,67,32,95,53,48,52,41,41,41,41,32,40,40,65,32,58,53,
+48,53,32,40,40,40,83,39,32,95,50,50,50,41,32,40,40,66,32,40,
+67,32,40,40,67,32,83,39,41,32,40,40,80,32,95,49,51,53,41,32,
+40,75,32,95,49,51,52,41,41,41,41,41,32,40,40,66,32,40,40,67,
+39,32,66,41,32,40,85,32,95,49,51,52,41,41,41,32,95,50,50,51,
+41,41,41,32,40,40,66,32,95,50,50,54,41,32,95,53,48,53,41,41,
+41,32,40,40,65,32,58,53,48,54,32,40,40,83,32,40,40,83,32,40,
+40,83,32,40,40,83,32,40,40,83,32,40,40,83,32,40,40,40,83,39,
+32,95,53,57,48,41,32,40,40,66,32,95,53,48,53,41,32,95,53,57,
+49,41,41,32,40,40,66,32,40,67,32,40,40,67,32,83,39,41,32,40,
+40,80,32,95,54,49,49,41,32,40,75,32,95,54,49,48,41,41,41,41,
+41,32,40,40,66,32,40,40,67,39,32,66,41,32,40,85,32,95,54,49,
+50,41,41,41,32,95,53,57,50,41,41,41,41,32,40,40,66,32,95,54,
+48,48,41,32,95,53,48,54,41,41,41,32,40,40,66,32,95,54,48,49,
+41,32,95,53,48,54,41,41,41,32,40,40,66,32,95,54,48,50,41,32,
+95,53,48,54,41,41,41,32,40,40,66,32,95,54,48,51,41,32,95,53,
+48,54,41,41,41,32,40,40,66,32,95,54,48,52,41,32,95,53,48,54,
+41,41,41,32,40,40,66,32,95,54,48,53,41,32,95,53,48,54,41,41,
+41,32,40,40,65,32,58,53,48,55,32,40,40,83,32,40,40,40,83,39,
+32,95,49,56,52,48,41,32,40,40,66,32,40,66,32,40,80,32,40,95,
+49,56,52,57,32,34,78,111,116,104,105,110,103,34,41,41,41,41,32,40,
+40,66,32,40,40,67,39,32,66,41,32,40,40,66,32,95,49,56,53,48,
+41,32,40,40,67,32,40,95,53,57,54,32,95,51,49,53,41,41,32,35,
+49,49,41,41,41,41,32,40,40,66,32,40,66,32,40,95,50,56,52,32,
+40,95,49,56,52,57,32,34,74,117,115,116,32,34,41,41,41,41,32,40,
+40,67,32,95,49,56,52,49,41,32,35,49,49,41,41,41,41,41,32,40,
+40,66,32,95,49,56,52,53,41,32,95,53,48,55,41,41,41,32,40,40,
+66,32,95,49,56,52,54,41,32,95,53,48,55,41,41,41,32,40,40,65,
+32,58,53,48,56,32,40,40,95,50,57,51,32,40,40,66,32,40,80,32,
+95,53,50,49,41,41,32,40,66,32,95,53,50,50,41,41,41,32,40,95,
+50,57,55,32,95,53,48,56,41,41,41,32,40,40,65,32,58,53,48,57,
+32,40,40,40,40,40,95,49,50,32,95,53,48,56,41,32,95,53,50,50,
+41,32,40,40,40,67,39,32,66,41,32,40,85,32,95,53,50,49,41,41,
+32,40,40,40,67,39,32,66,41,32,40,85,32,95,53,50,49,41,41,32,
+40,66,32,95,53,50,50,41,41,41,41,32,40,95,50,48,32,95,53,48,
+57,41,41,32,40,95,50,49,32,95,53,48,57,41,41,41,32,40,40,65,
+32,58,53,49,48,32,40,40,40,40,95,51,51,32,95,53,48,57,41,32,
+40,85,32,95,53,50,49,41,41,32,40,95,51,57,32,95,53,49,48,41,
+41,32,40,95,49,52,32,95,53,48,57,41,41,41,32,40,40,65,32,58,
+53,49,49,32,40,40,95,52,50,32,95,53,49,48,41,32,40,75,32,95,
+53,50,49,41,41,41,32,40,40,65,32,58,53,49,50,32,40,40,40,40,
+40,95,48,32,95,53,48,57,41,32,95,53,50,49,41,32,40,40,83,32,
+67,41,32,75,41,41,32,40,95,56,32,95,53,49,50,41,41,32,40,95,
+57,32,95,53,49,50,41,41,41,32,40,40,65,32,58,53,49,51,32,40,
+40,66,32,95,54,54,49,41,32,40,40,66,32,40,83,32,83,41,41,32,
+40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,40,83,39,32,
+83,41,32,85,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,
+40,67,39,32,67,41,32,40,40,66,32,40,40,67,39,32,67,39,41,32,
+83,41,41,32,40,40,66,32,40,67,32,40,67,39,32,66,41,41,41,32,
+40,40,66,32,40,66,32,40,66,32,95,53,50,50,41,41,41,32,95,54,
+54,50,41,41,41,41,32,40,40,40,110,111,77,97,116,99,104,32,34,46,
+47,108,105,98,47,68,97,116,97,47,77,97,121,98,101,46,104,115,34,41,
+32,35,53,57,41,32,35,53,41,41,41,41,41,41,41,41,32,40,40,65,
+32,58,53,49,52,32,40,40,83,32,40,40,83,32,40,40,40,67,39,32,
+95,53,50,51,41,32,95,53,49,51,41,32,95,53,50,49,41,41,32,40,
+40,66,32,95,53,50,57,41,32,95,53,49,52,41,41,41,32,40,40,66,
+32,95,53,51,48,41,32,95,53,49,52,41,41,41,32,40,40,65,32,58,
+53,49,53,32,80,41,32,40,40,65,32,58,53,49,54,32,40,40,67,32,
+80,41,32,73,41,41,32,40,40,65,32,58,53,49,55,32,40,95,52,51,
+48,32,40,40,80,32,75,41,32,40,40,67,32,79,41,32,75,41,41,41,
+41,32,40,40,65,32,58,53,49,56,32,40,40,80,32,95,49,51,52,41,
+32,40,75,32,95,49,51,53,41,41,41,32,40,40,65,32,58,53,49,57,
+32,40,40,66,32,89,41,32,40,40,66,32,40,66,32,40,80,32,95,53,
+48,50,41,41,41,32,40,40,40,67,39,32,40,83,39,32,67,41,41,32,
+40,67,39,32,83,39,41,41,32,40,66,32,40,67,32,95,53,48,51,41,
+41,41,41,41,41,32,40,40,65,32,58,53,50,48,32,40,40,80,32,95,
+53,48,50,41,32,40,40,67,32,79,41,32,75,41,41,41,32,40,40,65,
+32,58,53,50,49,32,75,41,32,40,40,65,32,58,53,50,50,32,40,90,
+32,85,41,41,32,40,40,65,32,58,53,50,51,32,40,40,66,32,40,66,
+32,40,66,32,67,41,41,41,32,40,40,66,32,40,66,32,67,41,41,32,
+80,41,41,41,32,40,40,65,32,58,53,50,52,32,40,85,32,40,90,32,
+40,90,32,75,41,41,41,41,32,40,40,65,32,58,53,50,53,32,40,85,
+32,40,75,32,40,90,32,75,41,41,41,41,32,40,40,65,32,58,53,50,
+54,32,40,85,32,40,75,50,32,75,41,41,41,32,40,40,65,32,58,53,
+50,55,32,40,85,32,40,75,50,32,65,41,41,41,32,40,40,65,32,58,
+53,50,56,32,40,75,32,40,110,111,68,101,102,97,117,108,116,32,34,77,
+111,110,111,105,100,46,109,101,109,112,116,121,34,41,41,41,32,40,40,65,
+32,58,53,50,57,32,40,40,66,32,95,54,54,50,41,32,95,53,50,52,
+41,41,32,40,40,65,32,58,53,51,48,32,40,40,40,83,39,32,80,41,
+32,95,53,50,53,41,32,40,40,40,83,39,32,40,67,39,32,66,41,41,
+32,40,40,66,32,95,54,54,50,41,32,95,53,50,52,41,41,32,95,53,
+50,55,41,41,41,32,40,40,65,32,58,53,51,49,32,73,41,32,40,40,
+65,32,58,53,51,50,32,73,41,32,40,40,65,32,58,53,51,51,32,40,
+95,54,54,49,32,40,40,66,32,40,66,32,95,53,51,49,41,41,32,95,
+50,56,52,41,41,41,32,40,40,65,32,58,53,51,52,32,40,40,40,40,
+95,53,50,51,32,95,53,51,51,41,32,40,95,53,51,49,32,95,50,56,
+53,41,41,32,40,95,53,50,57,32,95,53,51,52,41,41,32,40,95,53,
+51,48,32,95,53,51,52,41,41,41,32,40,40,65,32,58,53,51,53,32,
+73,41,32,40,40,65,32,58,53,51,54,32,73,41,32,40,40,65,32,58,
+53,51,55,32,40,40,66,32,95,54,54,49,41,32,40,40,66,32,40,66,
+32,40,66,32,95,53,51,53,41,41,41,32,40,40,66,32,67,41,32,95,
+54,54,50,41,41,41,41,32,40,40,65,32,58,53,51,56,32,40,40,83,
+32,40,40,83,32,40,40,40,83,39,32,95,53,50,51,41,32,40,40,66,
+32,95,53,51,55,41,32,95,53,50,52,41,41,32,40,40,66,32,95,53,
+51,53,41,32,95,53,50,53,41,41,41,32,40,40,66,32,95,53,50,57,
+41,32,95,53,51,56,41,41,41,32,40,40,66,32,95,53,51,48,41,32,
+95,53,51,56,41,41,41,32,40,40,65,32,58,53,51,57,32,40,40,95,
+50,57,51,32,40,66,32,95,53,51,53,41,41,32,40,95,50,57,55,32,
+95,53,51,57,41,41,41,32,40,40,65,32,58,53,52,48,32,40,40,40,
+40,40,95,49,50,32,95,53,51,57,41,32,95,53,51,53,41,32,40,66,
+32,95,53,51,53,41,41,32,40,95,50,48,32,95,53,52,48,41,41,32,
+40,95,50,49,32,95,53,52,48,41,41,41,32,40,40,65,32,58,53,52,
+49,32,40,40,40,40,95,51,51,32,95,53,52,48,41,32,40,40,66,32,
+85,41,32,95,53,51,54,41,41,32,40,95,51,57,32,95,53,52,49,41,
+41,32,40,95,52,48,32,95,53,52,49,41,41,41,32,40,40,65,32,58,
+53,52,50,32,73,41,32,40,40,65,32,58,53,52,51,32,73,41,32,40,
+40,65,32,58,53,52,52,32,40,40,66,32,95,54,54,49,41,32,40,40,
+66,32,40,66,32,40,66,32,95,53,52,50,41,41,41,32,95,53,57,55,
+41,41,41,32,40,40,65,32,58,53,52,53,32,40,40,83,32,40,40,83,
+32,40,40,40,83,39,32,95,53,50,51,41,32,40,40,66,32,95,53,52,
+52,41,32,40,85,32,75,41,41,41,32,40,40,66,32,95,53,52,50,41,
+32,40,40,66,32,95,49,51,55,41,32,40,85,32,65,41,41,41,41,41,
+32,40,40,66,32,95,53,50,57,41,32,40,40,66,32,95,53,52,53,41,
+32,40,40,40,83,39,32,80,41,32,40,85,32,75,41,41,32,40,85,32,
+65,41,41,41,41,41,41,32,40,40,66,32,95,53,51,48,41,32,40,40,
+66,32,95,53,52,53,41,32,40,40,40,83,39,32,80,41,32,40,85,32,
+75,41,41,32,40,85,32,65,41,41,41,41,41,41,32,40,40,65,32,58,
+53,52,54,32,73,41,32,40,40,65,32,58,53,52,55,32,73,41,32,40,
+40,65,32,58,53,52,56,32,40,40,66,32,95,54,54,49,41,32,40,40,
+66,32,40,66,32,40,66,32,95,53,52,54,41,41,41,32,95,53,57,56,
+41,41,41,32,40,40,65,32,58,53,52,57,32,40,40,83,32,40,40,83,
+32,40,40,40,83,39,32,95,53,50,51,41,32,40,40,66,32,95,53,52,
+56,41,32,40,85,32,75,41,41,41,32,40,40,66,32,95,53,52,54,41,
+32,40,40,66,32,95,49,51,56,41,32,40,85,32,65,41,41,41,41,41,
+32,40,40,66,32,95,53,50,57,41,32,40,40,66,32,95,53,52,57,41,
+32,40,40,40,83,39,32,80,41,32,40,85,32,75,41,41,32,40,85,32,
+65,41,41,41,41,41,41,32,40,40,66,32,95,53,51,48,41,32,40,40,
+66,32,95,53,52,57,41,32,40,40,40,83,39,32,80,41,32,40,85,32,
+75,41,41,32,40,85,32,65,41,41,41,41,41,41,32,40,40,65,32,58,
+53,53,48,32,73,41,32,40,40,65,32,58,53,53,49,32,73,41,32,40,
+40,65,32,58,53,53,50,32,40,40,66,32,95,54,54,49,41,32,40,40,
+66,32,40,66,32,40,66,32,95,53,53,48,41,41,41,32,95,53,55,53,
+41,41,41,32,40,40,65,32,58,53,53,51,32,40,40,83,32,40,40,83,
+32,40,40,40,83,39,32,95,53,50,51,41,32,95,53,53,50,41,32,40,
+40,66,32,95,53,53,48,41,32,40,40,67,32,95,53,56,49,41,32,40,
+95,51,57,50,32,35,48,41,41,41,41,41,32,40,40,66,32,95,53,50,
+57,41,32,95,53,53,51,41,41,41,32,40,40,66,32,95,53,51,48,41,
+32,95,53,53,51,41,41,41,32,40,40,65,32,58,53,53,52,32,73,41,
+32,40,40,65,32,58,53,53,53,32,73,41,32,40,40,65,32,58,53,53,
+54,32,40,40,66,32,95,54,54,49,41,32,40,40,66,32,40,66,32,40,
+66,32,95,53,53,52,41,41,41,32,95,53,55,55,41,41,41,32,40,40,
+65,32,58,53,53,55,32,40,40,83,32,40,40,83,32,40,40,40,83,39,
+32,95,53,50,51,41,32,95,53,53,54,41,32,40,40,66,32,95,53,53,
+52,41,32,40,40,67,32,95,53,56,49,41,32,40,95,51,57,50,32,35,
+49,41,41,41,41,41,32,40,40,66,32,95,53,50,57,41,32,95,53,53,
+55,41,41,41,32,40,40,66,32,95,53,51,48,41,32,95,53,53,55,41,
+41,41,32,40,40,65,32,58,53,53,56,32,73,41,32,40,40,65,32,58,
+53,53,57,32,73,41,32,40,40,65,32,58,53,54,48,32,40,95,54,54,
+49,32,40,40,66,32,40,66,32,95,53,53,56,41,41,32,95,49,51,49,
+41,41,41,32,40,40,65,32,58,53,54,49,32,40,40,40,40,95,53,50,
+51,32,95,53,54,48,41,32,40,95,53,53,56,32,95,49,51,53,41,41,
+32,40,95,53,50,57,32,95,53,54,49,41,41,32,40,95,53,51,48,32,
+95,53,54,49,41,41,41,32,40,40,65,32,58,53,54,50,32,73,41,32,
+40,40,65,32,58,53,54,51,32,73,41,32,40,40,65,32,58,53,54,52,
+32,40,95,54,54,49,32,40,40,66,32,40,66,32,95,53,54,50,41,41,
+32,95,49,51,48,41,41,41,32,40,40,65,32,58,53,54,53,32,40,40,
+40,40,95,53,50,51,32,95,53,54,52,41,32,40,95,53,54,50,32,95,
+49,51,52,41,41,32,40,95,53,50,57,32,95,53,54,53,41,41,32,40,
+95,53,51,48,32,95,53,54,53,41,41,41,32,40,40,65,32,58,53,54,
+54,32,73,41,32,40,40,65,32,58,53,54,55,32,73,41,32,40,40,65,
+32,58,53,54,56,32,40,95,54,54,49,32,40,40,83,32,67,41,32,75,
+41,41,41,32,40,40,65,32,58,53,54,57,32,40,40,40,40,95,53,50,
+51,32,95,53,54,56,41,32,40,95,53,54,54,32,95,53,50,49,41,41,
+32,40,95,53,50,57,32,95,53,54,57,41,41,32,40,95,53,51,48,32,
+95,53,54,57,41,41,41,32,40,40,65,32,58,53,55,48,32,73,41,32,
+40,40,65,32,58,53,55,49,32,73,41,32,40,40,65,32,58,53,55,50,
+32,40,95,54,54,49,32,40,40,40,67,39,32,83,41,32,85,41,32,75,
+41,41,41,32,40,40,65,32,58,53,55,51,32,40,40,40,40,95,53,50,
+51,32,95,53,55,50,41,32,40,95,53,55,48,32,95,53,50,49,41,41,
+32,40,95,53,50,57,32,95,53,55,51,41,41,32,40,95,53,51,48,32,
+95,53,55,51,41,41,41,32,40,40,65,32,58,53,55,52,32,40,40,66,
+32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,
+41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
+67,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,
+67,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,67,41,41,41,
+32,40,40,66,32,40,66,32,67,41,41,32,80,41,41,41,41,41,41,32,
+40,40,65,32,58,53,55,53,32,40,85,32,40,90,32,40,90,32,40,90,
+32,40,90,32,40,90,32,75,41,41,41,41,41,41,41,32,40,40,65,32,
+58,53,55,54,32,40,85,32,40,75,32,40,90,32,40,90,32,40,90,32,
+40,90,32,75,41,41,41,41,41,41,41,32,40,40,65,32,58,53,55,55,
+32,40,85,32,40,75,50,32,40,90,32,40,90,32,40,90,32,75,41,41,
+41,41,41,41,32,40,40,65,32,58,53,55,56,32,40,85,32,40,75,51,
+32,40,90,32,40,90,32,75,41,41,41,41,41,32,40,40,65,32,58,53,
+55,57,32,40,85,32,40,75,52,32,40,90,32,75,41,41,41,41,32,40,
+40,65,32,58,53,56,48,32,40,85,32,40,75,32,40,75,52,32,75,41,
+41,41,41,32,40,40,65,32,58,53,56,49,32,40,85,32,40,75,32,40,
+75,52,32,65,41,41,41,41,32,40,40,65,32,58,53,56,50,32,40,75,
+32,40,110,111,68,101,102,97,117,108,116,32,34,78,117,109,46,43,34,41,
+41,41,32,40,40,65,32,58,53,56,51,32,40,75,32,40,110,111,68,101,
+102,97,117,108,116,32,34,78,117,109,46,45,34,41,41,41,32,40,40,65,
+32,58,53,56,52,32,40,75,32,40,110,111,68,101,102,97,117,108,116,32,
+34,78,117,109,46,42,34,41,41,41,32,40,40,65,32,58,53,56,53,32,
+40,40,83,32,95,53,55,54,41,32,40,40,67,32,95,53,56,49,41,32,
+40,95,51,57,50,32,35,48,41,41,41,41,32,40,40,65,32,58,53,56,
+54,32,40,75,32,40,110,111,68,101,102,97,117,108,116,32,34,78,117,109,
+46,97,98,115,34,41,41,41,32,40,40,65,32,58,53,56,55,32,40,75,
+32,40,110,111,68,101,102,97,117,108,116,32,34,78,117,109,46,115,105,103,
+110,117,109,34,41,41,41,32,40,40,65,32,58,53,56,56,32,40,75,32,
+40,110,111,68,101,102,97,117,108,116,32,34,78,117,109,46,102,114,111,109,
+73,110,116,101,103,101,114,34,41,41,41,32,40,40,65,32,58,53,56,57,
+32,40,40,66,32,67,41,32,95,53,55,54,41,41,32,40,40,65,32,58,
+53,57,48,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
+40,66,32,40,66,32,67,41,41,41,41,41,41,41,32,40,40,66,32,40,
+66,32,40,66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,41,
+41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,67,41,
+41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,67,41,
+41,41,41,32,40,40,66,32,40,66,32,40,66,32,67,41,41,41,32,40,
+40,66,32,40,66,32,67,41,41,32,80,41,41,41,41,41,41,41,32,40,
+40,65,32,58,53,57,49,32,40,85,32,40,90,32,40,90,32,40,90,32,
+40,90,32,40,90,32,40,90,32,75,41,41,41,41,41,41,41,41,32,40,
+40,65,32,58,53,57,50,32,40,85,32,40,75,32,40,90,32,40,90,32,
+40,90,32,40,90,32,40,90,32,75,41,41,41,41,41,41,41,41,32,40,
+40,65,32,58,53,57,51,32,40,85,32,40,75,50,32,40,90,32,40,90,
+32,40,90,32,40,90,32,75,41,41,41,41,41,41,41,32,40,40,65,32,
+58,53,57,52,32,40,85,32,40,75,51,32,40,90,32,40,90,32,40,90,
+32,75,41,41,41,41,41,41,32,40,40,65,32,58,53,57,53,32,40,85,
+32,40,75,52,32,40,90,32,40,90,32,75,41,41,41,41,41,32,40,40,
+65,32,58,53,57,54,32,40,85,32,40,75,32,40,75,52,32,40,90,32,
+75,41,41,41,41,41,32,40,40,65,32,58,53,57,55,32,40,85,32,40,
+75,50,32,40,75,52,32,75,41,41,41,41,32,40,40,65,32,58,53,57,
+56,32,40,85,32,40,75,50,32,40,75,52,32,65,41,41,41,41,32,40,
+40,65,32,58,53,57,57,32,40,40,40,83,39,32,40,83,39,32,83,41,
+41,32,40,40,40,67,39,32,40,67,39,32,67,41,41,32,95,53,57,52,
+41,32,95,54,49,50,41,41,32,40,40,40,67,39,32,40,67,39,32,67,
+41,41,32,40,40,40,67,39,32,40,67,39,32,67,41,41,32,40,40,66,
+32,67,41,32,95,53,57,52,41,41,32,95,54,49,48,41,41,32,95,54,
+49,49,41,41,41,32,40,40,65,32,58,54,48,48,32,40,40,40,67,39,
+32,40,67,39,32,67,41,41,32,40,40,40,67,39,32,40,67,39,32,67,
+41,41,32,40,40,66,32,67,41,32,95,53,57,52,41,41,32,95,49,51,
+53,41,41,32,95,49,51,52,41,41,32,40,40,65,32,58,54,48,49,32,
+40,75,32,40,110,111,68,101,102,97,117,108,116,32,34,79,114,100,46,60,
+61,34,41,41,41,32,40,40,65,32,58,54,48,50,32,40,40,40,67,39,
+32,40,67,39,32,67,41,41,32,40,40,40,67,39,32,40,67,39,32,67,
+41,41,32,95,53,57,52,41,32,95,49,51,53,41,41,32,95,49,51,52,
+41,41,32,40,40,65,32,58,54,48,51,32,95,53,57,52,41,32,40,40,
+65,32,58,54,48,52,32,40,40,40,67,39,32,40,67,39,32,83,41,41,
+32,40,40,40,67,39,32,40,83,39,32,67,41,41,32,95,53,57,52,41,
+32,73,41,41,32,73,41,41,32,40,40,65,32,58,54,48,53,32,40,40,
+40,67,39,32,40,83,39,32,67,41,41,32,40,40,40,67,39,32,40,67,
+39,32,83,41,41,32,95,53,57,52,41,32,73,41,41,32,73,41,41,32,
+40,40,65,32,58,54,48,54,32,40,40,95,50,50,50,32,40,40,40,67,
+39,32,83,41,32,40,40,67,32,40,40,67,32,83,39,41,32,40,40,67,
+32,40,40,80,32,95,49,51,53,41,32,95,49,51,52,41,41,32,95,49,
+51,52,41,41,41,32,40,40,67,32,40,40,80,32,95,49,51,52,41,32,
+95,49,51,53,41,41,32,95,49,51,52,41,41,41,32,40,40,67,32,40,
+40,80,32,95,49,51,52,41,32,95,49,51,52,41,41,32,95,49,51,53,
+41,41,41,32,40,95,50,50,54,32,95,54,48,54,41,41,41,32,40,40,
+65,32,58,54,48,55,32,40,40,67,32,40,40,80,32,95,49,51,52,41,
+32,95,49,51,53,41,41,32,95,49,51,52,41,41,32,40,40,65,32,58,
+54,48,56,32,40,40,40,95,49,56,52,48,32,40,75,32,40,40,67,32,
+40,40,80,32,40,95,49,56,52,57,32,34,76,84,34,41,41,32,40,95,
+49,56,52,57,32,34,69,81,34,41,41,41,32,40,95,49,56,52,57,32,
+34,71,84,34,41,41,41,41,32,40,95,49,56,52,53,32,95,54,48,56,
+41,41,32,40,95,49,56,52,54,32,95,54,48,56,41,41,41,32,40,40,
+65,32,58,54,48,57,32,40,40,95,49,51,54,32,95,54,49,48,41,32,
+95,54,49,50,41,41,32,40,40,65,32,58,54,49,48,32,40,90,32,75,
+41,41,32,40,40,65,32,58,54,49,49,32,40,75,32,75,41,41,32,40,
+40,65,32,58,54,49,50,32,40,75,32,65,41,41,32,40,40,65,32,58,
+54,49,51,32,40,40,40,83,39,32,95,50,50,50,41,32,40,40,66,32,
+40,67,32,66,41,41,32,40,40,66,32,40,40,67,39,32,66,41,32,66,
+41,41,32,40,40,40,83,39,32,40,67,39,32,66,41,41,32,40,40,66,
+32,40,66,32,40,67,39,32,66,41,41,41,32,40,40,66,32,40,66,32,
+40,66,32,95,49,51,49,41,41,41,32,95,50,50,51,41,41,41,32,95,
+50,50,51,41,41,41,41,32,40,40,66,32,95,50,50,54,41,32,95,54,
+49,51,41,41,41,32,40,40,65,32,58,54,49,52,32,40,40,83,32,40,
+40,83,32,40,40,83,32,40,40,83,32,40,40,83,32,40,40,83,32,40,
+40,40,83,39,32,95,53,57,48,41,32,40,40,66,32,95,54,49,51,41,
+32,40,40,66,32,40,85,32,75,41,41,32,40,40,66,32,95,51,57,56,
+41,32,40,85,32,75,41,41,41,41,41,32,40,40,66,32,95,53,57,57,
+41,32,40,40,66,32,95,54,49,52,41,32,40,40,40,83,39,32,80,41,
+32,40,85,32,75,41,41,32,40,85,32,65,41,41,41,41,41,41,32,40,
+40,66,32,40,67,32,66,41,41,32,40,40,66,32,40,40,67,39,32,66,
+41,32,66,41,41,32,40,40,40,83,39,32,40,67,39,32,66,41,41,32,
+40,40,66,32,66,39,41,32,40,40,40,83,39,32,66,41,32,40,40,66,
+32,67,39,41,32,40,40,66,32,95,53,57,51,41,32,40,85,32,65,41,
+41,41,41,32,40,40,66,32,95,53,55,55,41,32,40,40,66,32,40,85,
+32,65,41,41,32,40,40,66,32,95,51,57,56,41,32,40,85,32,75,41,
+41,41,41,41,41,41,32,40,40,66,32,67,41,32,40,40,66,32,95,53,
+55,55,41,32,40,40,66,32,40,85,32,65,41,41,32,40,40,66,32,95,
+51,57,56,41,32,40,85,32,75,41,41,41,41,41,41,41,41,41,41,32,
+40,40,66,32,40,67,32,66,41,41,32,40,40,66,32,40,40,67,39,32,
+66,41,32,66,41,41,32,40,40,40,83,39,32,40,67,39,32,66,41,41,
+32,40,40,66,32,66,39,41,32,40,40,40,83,39,32,66,41,32,40,40,
+66,32,67,39,41,32,40,40,66,32,95,53,57,52,41,32,40,85,32,65,
+41,41,41,41,32,40,40,66,32,95,53,55,55,41,32,40,40,66,32,40,
+85,32,65,41,41,32,40,40,66,32,95,51,57,56,41,32,40,85,32,75,
+41,41,41,41,41,41,41,32,40,40,66,32,67,41,32,40,40,66,32,95,
+53,55,55,41,32,40,40,66,32,40,85,32,65,41,41,32,40,40,66,32,
+95,51,57,56,41,32,40,85,32,75,41,41,41,41,41,41,41,41,41,41,
+32,40,40,66,32,40,67,32,66,41,41,32,40,40,66,32,40,40,67,39,
+32,66,41,32,66,41,41,32,40,40,40,83,39,32,40,67,39,32,66,41,
+41,32,40,40,66,32,66,39,41,32,40,40,40,83,39,32,66,41,32,40,
+40,66,32,67,39,41,32,40,40,66,32,95,53,57,53,41,32,40,85,32,
+65,41,41,41,41,32,40,40,66,32,95,53,55,55,41,32,40,40,66,32,
+40,85,32,65,41,41,32,40,40,66,32,95,51,57,56,41,32,40,85,32,
+75,41,41,41,41,41,41,41,32,40,40,66,32,67,41,32,40,40,66,32,
+95,53,55,55,41,32,40,40,66,32,40,85,32,65,41,41,32,40,40,66,
+32,95,51,57,56,41,32,40,85,32,75,41,41,41,41,41,41,41,41,41,
+41,32,40,40,66,32,40,67,32,66,41,41,32,40,40,66,32,40,40,67,
+39,32,66,41,32,66,41,41,32,40,40,40,83,39,32,40,67,39,32,66,
+41,41,32,40,40,66,32,66,39,41,32,40,40,40,83,39,32,66,41,32,
+40,40,66,32,67,39,41,32,40,40,66,32,95,53,57,54,41,32,40,85,
+32,65,41,41,41,41,32,40,40,66,32,95,53,55,55,41,32,40,40,66,
+32,40,85,32,65,41,41,32,40,40,66,32,95,51,57,56,41,32,40,85,
+32,75,41,41,41,41,41,41,41,32,40,40,66,32,67,41,32,40,40,66,
+32,95,53,55,55,41,32,40,40,66,32,40,85,32,65,41,41,32,40,40,
+66,32,95,51,57,56,41,32,40,85,32,75,41,41,41,41,41,41,41,41,
+41,41,32,40,40,66,32,95,54,48,52,41,32,40,40,66,32,95,54,49,
+52,41,32,40,40,40,83,39,32,80,41,32,40,85,32,75,41,41,32,40,
+85,32,65,41,41,41,41,41,41,32,40,40,66,32,95,54,48,53,41,32,
+40,40,66,32,95,54,49,52,41,32,40,40,40,83,39,32,80,41,32,40,
+85,32,75,41,41,32,40,85,32,65,41,41,41,41,41,41,32,40,40,65,
+32,58,54,49,53,32,40,40,83,32,40,40,83,32,40,40,83,32,40,40,
+83,32,40,40,83,32,40,40,40,83,39,32,95,53,55,52,41,32,40,40,
+66,32,40,67,32,66,41,41,32,40,40,66,32,40,40,67,39,32,66,41,
+32,66,41,41,32,40,40,83,32,40,40,40,83,39,32,67,39,41,32,40,
+40,66,32,83,39,41,32,40,40,66,32,67,39,41,32,40,40,66,32,83,
+39,41,32,95,54,50,49,41,41,41,41,32,40,40,40,83,39,32,40,67,
+39,32,66,41,41,32,40,40,66,32,66,39,41,32,40,40,40,83,39,32,
+66,41,32,40,40,66,32,67,39,41,32,40,40,66,32,95,53,55,53,41,
+32,40,40,66,32,40,85,32,65,41,41,32,95,51,57,56,41,41,41,41,
+32,40,40,66,32,95,53,55,55,41,32,40,40,66,32,40,85,32,65,41,
+41,32,95,51,57,56,41,41,41,41,41,32,40,40,66,32,67,41,32,40,
+40,66,32,95,53,55,55,41,32,40,40,66,32,40,85,32,65,41,41,32,
+95,51,57,56,41,41,41,41,41,41,32,40,40,66,32,95,53,55,55,41,
+32,40,40,66,32,40,85,32,65,41,41,32,95,51,57,56,41,41,41,41,
+41,41,32,40,40,66,32,40,67,32,66,41,41,32,40,40,66,32,40,40,
+67,39,32,66,41,32,66,41,41,32,40,40,83,32,40,40,40,83,39,32,
+67,39,41,32,40,40,66,32,83,39,41,32,40,40,66,32,67,39,41,32,
+40,40,66,32,83,39,41,32,95,54,50,49,41,41,41,41,32,40,40,40,
+83,39,32,40,67,39,32,66,41,41,32,40,40,66,32,66,39,41,32,40,
+40,40,83,39,32,66,41,32,40,40,66,32,67,39,41,32,40,40,66,32,
+95,53,55,54,41,32,40,40,66,32,40,85,32,65,41,41,32,95,51,57,
+56,41,41,41,41,32,40,40,66,32,95,53,55,55,41,32,40,40,66,32,
+40,85,32,65,41,41,32,95,51,57,56,41,41,41,41,41,32,40,40,66,
+32,67,41,32,40,40,66,32,95,53,55,55,41,32,40,40,66,32,40,85,
+32,65,41,41,32,95,51,57,56,41,41,41,41,41,41,32,40,40,66,32,
+95,53,55,55,41,32,40,40,66,32,40,85,32,65,41,41,32,95,51,57,
+56,41,41,41,41,41,41,41,32,40,40,66,32,40,67,32,66,41,41,32,
+40,40,66,32,40,40,67,39,32,66,41,32,66,41,41,32,40,40,40,83,
+39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,40,67,39,
+32,66,41,41,41,32,40,40,40,83,39,32,66,41,32,40,66,39,32,95,
+54,50,49,41,41,32,40,40,66,32,95,53,55,55,41,32,40,40,66,32,
+40,85,32,65,41,41,32,95,51,57,56,41,41,41,41,41,32,40,40,66,
+32,95,53,55,55,41,32,40,40,66,32,40,85,32,65,41,41,32,95,51,
+57,56,41,41,41,41,41,41,41,32,40,40,66,32,85,41,32,40,40,66,
+32,40,66,32,95,54,50,52,41,41,32,40,40,66,32,95,53,55,56,41,
+32,40,40,66,32,40,85,32,65,41,41,32,95,51,57,56,41,41,41,41,
+41,41,32,40,40,66,32,85,41,32,40,40,66,32,40,66,32,95,54,50,
+52,41,41,32,40,40,66,32,95,53,55,57,41,32,40,40,66,32,40,85,
+32,65,41,41,32,95,51,57,56,41,41,41,41,41,41,32,40,40,66,32,
+85,41,32,40,40,66,32,90,41,32,40,40,40,83,39,32,40,67,39,32,
+95,54,50,52,41,41,32,40,40,66,32,95,53,56,48,41,32,40,40,66,
+32,40,85,32,65,41,41,32,95,51,57,56,41,41,41,32,40,40,40,67,
+39,32,95,53,56,49,41,32,40,40,66,32,40,85,32,65,41,41,32,95,
+51,57,56,41,41,32,40,95,51,57,50,32,35,49,41,41,41,41,41,41,
+41,32,40,40,40,83,39,32,40,67,39,32,95,54,50,52,41,41,32,40,
+40,66,32,95,53,56,49,41,32,40,40,66,32,40,85,32,65,41,41,32,
+95,51,57,56,41,41,41,32,40,40,40,67,39,32,95,53,56,49,41,32,
+40,40,66,32,40,85,32,65,41,41,32,95,51,57,56,41,41,32,40,95,
+51,57,50,32,35,49,41,41,41,41,41,32,40,40,65,32,58,54,49,54,
+32,40,40,83,32,40,40,83,32,40,40,40,83,39,32,95,50,55,51,41,
+32,40,40,66,32,95,54,49,53,41,32,40,85,32,75,41,41,41,32,40,
+40,66,32,40,67,32,66,41,41,32,40,40,66,32,40,40,67,39,32,66,
+41,32,66,41,41,32,40,40,40,83,39,32,40,67,39,32,66,41,41,32,
+40,40,66,32,66,39,41,32,40,40,40,83,39,32,66,41,32,40,40,66,
+32,67,39,41,32,40,40,66,32,95,54,50,48,41,32,40,85,32,75,41,
+41,41,41,32,40,40,66,32,95,53,55,55,41,32,40,40,66,32,40,85,
+32,65,41,41,32,40,40,66,32,95,51,57,56,41,32,40,85,32,75,41,
+41,41,41,41,41,41,32,40,40,66,32,95,53,55,55,41,32,40,40,66,
+32,40,85,32,65,41,41,32,40,40,66,32,95,51,57,56,41,32,40,85,
+32,75,41,41,41,41,41,41,41,41,41,32,40,40,66,32,85,41,32,40,
+40,40,67,39,32,40,67,39,32,67,41,41,32,40,40,40,83,39,32,66,
+41,32,40,40,66,32,83,41,32,40,40,40,83,39,32,67,41,32,40,40,
+66,32,95,50,50,51,41,32,40,40,66,32,40,85,32,75,41,41,32,40,
+40,66,32,95,51,57,56,41,32,40,85,32,75,41,41,41,41,41,32,40,
+40,40,67,39,32,95,53,56,49,41,32,40,40,66,32,40,85,32,65,41,
+41,32,40,40,66,32,95,51,57,56,41,32,40,85,32,75,41,41,41,41,
+32,40,95,51,57,50,32,35,48,41,41,41,41,41,32,40,40,40,83,39,
+32,83,41,32,40,40,40,67,39,32,40,83,39,32,83,39,41,41,32,40,
+40,40,83,39,32,67,41,32,40,40,66,32,95,53,57,51,41,32,40,85,
+32,65,41,41,41,32,40,40,40,67,39,32,95,53,56,49,41,32,40,40,
+66,32,40,85,32,65,41,41,32,40,40,66,32,95,51,57,56,41,32,40,
+85,32,75,41,41,41,41,32,40,95,51,57,50,32,35,48,41,41,41,41,
+32,40,67,32,95,54,50,52,41,41,41,32,40,40,40,83,39,32,66,41,
+32,40,40,66,32,40,67,39,32,95,54,50,52,41,41,32,40,40,66,32,
+95,53,55,56,41,32,40,40,66,32,40,85,32,65,41,41,32,40,40,66,
+32,95,51,57,56,41,32,40,85,32,75,41,41,41,41,41,41,32,40,40,
+66,32,95,53,55,56,41,32,40,40,66,32,40,85,32,65,41,41,32,40,
+40,66,32,95,51,57,56,41,32,40,85,32,75,41,41,41,41,41,41,41,
+41,32,40,95,50,55,32,34,68,97,116,97,46,82,97,116,105,111,46,114,
+101,99,105,112,58,32,100,105,118,105,115,105,111,110,32,98,121,32,48,34,
+41,41,41,41,41,32,40,40,66,32,85,41,32,40,40,40,83,39,32,40,
+67,39,32,66,41,41,32,40,40,40,83,39,32,66,41,32,40,40,66,32,
+95,54,50,48,41,32,40,85,32,75,41,41,41,32,40,40,66,32,95,53,
+56,49,41,32,40,40,66,32,40,85,32,65,41,41,32,40,40,66,32,95,
+51,57,56,41,32,40,85,32,75,41,41,41,41,41,41,32,40,40,66,32,
+95,53,56,49,41,32,40,40,66,32,40,85,32,65,41,41,32,40,40,66,
+32,95,51,57,56,41,32,40,85,32,75,41,41,41,41,41,41,41,41,32,
+40,40,65,32,58,54,49,55,32,40,40,83,32,40,40,40,83,39,32,95,
+49,56,52,48,41,32,40,40,66,32,40,66,32,85,41,41,32,40,40,66,
+32,40,40,67,39,32,66,41,32,40,66,39,32,40,40,66,32,95,50,56,
+50,41,32,40,40,66,32,95,49,56,53,48,41,32,40,40,67,32,40,95,
+53,57,53,32,95,51,49,53,41,41,32,35,55,41,41,41,41,41,41,32,
+40,40,40,83,39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,
+32,95,50,56,52,41,41,32,40,40,67,32,95,49,56,52,49,41,32,35,
+56,41,41,41,32,40,40,66,32,40,66,32,40,95,50,56,52,32,40,95,
+49,56,52,57,32,34,32,37,32,34,41,41,41,41,32,40,40,67,32,95,
+49,56,52,49,41,32,35,56,41,41,41,41,41,41,32,40,40,66,32,95,
+49,56,52,53,41,32,95,54,49,55,41,41,41,32,40,40,66,32,95,49,
+56,52,54,41,32,95,54,49,55,41,41,41,32,40,40,65,32,58,54,49,
+56,32,40,40,95,54,50,52,32,40,40,95,53,56,49,32,95,51,52,49,
+41,32,40,95,51,57,50,32,35,49,41,41,41,32,40,40,95,53,56,49,
+32,95,51,52,49,41,32,40,95,51,57,50,32,35,48,41,41,41,41,32,
+40,40,65,32,58,54,49,57,32,40,40,95,54,50,52,32,40,40,95,53,
+56,49,32,95,51,52,49,41,32,40,95,51,57,50,32,35,48,41,41,41,
+32,40,40,95,53,56,49,32,95,51,52,49,41,32,40,95,51,57,50,32,
+35,48,41,41,41,41,32,40,40,65,32,58,54,50,48,32,40,40,83,32,
+40,40,40,83,39,32,67,39,41,32,40,40,66,32,83,39,41,32,95,54,
+50,49,41,41,32,40,40,40,83,39,32,40,67,39,32,66,41,41,32,40,
+40,66,32,95,53,55,55,41,32,40,40,66,32,40,85,32,65,41,41,32,
+95,51,57,56,41,41,41,32,40,40,66,32,95,53,56,48,41,32,40,40,
+66,32,40,85,32,65,41,41,32,95,51,57,56,41,41,41,41,41,32,40,
+40,66,32,95,53,55,57,41,32,40,40,66,32,40,85,32,65,41,41,32,
+95,51,57,56,41,41,41,41,32,40,40,65,32,58,54,50,49,32,40,40,
+40,67,39,32,40,67,39,32,67,41,41,32,40,40,40,83,39,32,66,41,
+32,40,40,66,32,83,41,32,40,40,40,83,39,32,67,41,32,40,40,66,
+32,95,50,50,51,41,32,40,40,66,32,40,85,32,75,41,41,32,95,51,
+57,56,41,41,41,32,40,40,40,67,39,32,95,53,56,49,41,32,40,40,
+66,32,40,85,32,65,41,41,32,95,51,57,56,41,41,32,40,95,51,57,
+50,32,35,48,41,41,41,41,41,32,40,40,40,83,39,32,83,41,32,40,
+40,40,83,39,32,40,67,39,32,83,39,41,41,32,40,40,66,32,40,66,
+32,40,83,39,32,95,54,50,52,41,41,41,32,95,51,57,57,41,41,32,
+95,51,57,57,41,41,32,95,52,49,51,41,41,41,32,40,95,50,55,32,
+34,68,97,116,97,46,82,97,116,105,111,46,37,58,32,48,32,100,101,110,
+111,109,105,110,97,116,111,114,34,41,41,41,32,40,40,65,32,58,54,50,
+50,32,40,85,32,75,41,41,32,40,40,65,32,58,54,50,51,32,40,85,
+32,65,41,41,32,40,40,65,32,58,54,50,52,32,40,40,40,83,39,32,
+66,41,32,115,101,113,41,32,40,40,66,32,40,83,32,115,101,113,41,41,
+32,80,41,41,41,32,40,40,65,32,58,54,50,53,32,40,40,67,32,95,
+54,50,52,41,32,40,95,51,57,50,32,35,49,41,41,41,32,40,40,65,
+32,58,54,50,54,32,95,54,50,52,41,32,40,40,65,32,58,54,50,55,
+32,85,41,32,40,40,65,32,58,54,50,56,32,40,85,32,73,41,41,32,
+40,40,65,32,58,54,50,57,32,40,75,32,40,110,111,68,101,102,97,117,
+108,116,32,34,82,101,97,108,46,116,111,82,97,116,105,111,110,97,108,34,
+41,41,41,32,40,40,65,32,58,54,51,48,32,40,40,66,32,40,66,32,
+40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
+32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,
+66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
+40,66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,41,41,41,
+41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,
+40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
+32,40,66,32,67,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,
+66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
+40,66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,41,41,41,
+41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
+32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,
+41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,
+32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,
+41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,
+40,66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,41,41,41,
+41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
+32,40,66,32,67,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,
+40,66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,41,41,32,
+40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,
+41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,
+41,32,40,40,66,32,40,66,32,40,66,32,67,41,41,41,32,40,40,66,
+32,40,66,32,67,41,41,32,80,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,32,40,40,65,32,58,54,51,49,32,40,85,32,40,90,32,40,
+90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,
+40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,75,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,54,51,50,
+32,40,85,32,40,75,32,40,90,32,40,90,32,40,90,32,40,90,32,40,
+90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,
+40,90,32,75,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,
+40,40,65,32,58,54,51,51,32,40,85,32,40,75,50,32,40,90,32,40,
+90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,
+40,90,32,40,90,32,40,90,32,75,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,32,40,40,65,32,58,54,51,52,32,40,85,32,40,75,51,
+32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,
+90,32,40,90,32,40,90,32,40,90,32,75,41,41,41,41,41,41,41,41,
+41,41,41,41,41,32,40,40,65,32,58,54,51,53,32,40,85,32,40,75,
+52,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,
+40,90,32,40,90,32,40,90,32,75,41,41,41,41,41,41,41,41,41,41,
+41,41,32,40,40,65,32,58,54,51,54,32,40,85,32,40,75,32,40,75,
+52,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,
+40,90,32,40,90,32,75,41,41,41,41,41,41,41,41,41,41,41,41,32,
+40,40,65,32,58,54,51,55,32,40,85,32,40,75,50,32,40,75,52,32,
+40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,
+32,75,41,41,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,54,
+51,56,32,40,85,32,40,75,51,32,40,75,52,32,40,90,32,40,90,32,
+40,90,32,40,90,32,40,90,32,40,90,32,75,41,41,41,41,41,41,41,
+41,41,41,32,40,40,65,32,58,54,51,57,32,40,85,32,40,75,52,32,
+40,75,52,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,75,
+41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,54,52,48,32,40,
+85,32,40,75,32,40,75,52,32,40,75,52,32,40,90,32,40,90,32,40,
+90,32,40,90,32,75,41,41,41,41,41,41,41,41,41,32,40,40,65,32,
+58,54,52,49,32,40,85,32,40,75,50,32,40,75,52,32,40,75,52,32,
+40,90,32,40,90,32,40,90,32,75,41,41,41,41,41,41,41,41,32,40,
+40,65,32,58,54,52,50,32,40,85,32,40,75,51,32,40,75,52,32,40,
+75,52,32,40,90,32,40,90,32,75,41,41,41,41,41,41,41,32,40,40,
+65,32,58,54,52,51,32,40,85,32,40,75,52,32,40,75,52,32,40,75,
+52,32,40,90,32,75,41,41,41,41,41,41,32,40,40,65,32,58,54,52,
+52,32,40,85,32,40,75,32,40,75,52,32,40,75,52,32,40,75,52,32,
+75,41,41,41,41,41,41,32,40,40,65,32,58,54,52,53,32,40,85,32,
+40,75,32,40,75,52,32,40,75,52,32,40,75,52,32,65,41,41,41,41,
+41,41,32,40,40,65,32,58,54,52,54,32,40,75,32,40,110,111,68,101,
+102,97,117,108,116,32,34,82,101,97,108,70,108,111,97,116,46,102,108,111,
+97,116,82,97,100,105,120,34,41,41,41,32,40,40,65,32,58,54,52,55,
+32,40,75,32,40,110,111,68,101,102,97,117,108,116,32,34,82,101,97,108,
+70,108,111,97,116,46,102,108,111,97,116,68,105,103,105,116,115,34,41,41,
+41,32,40,40,65,32,58,54,52,56,32,40,75,32,40,110,111,68,101,102,
+97,117,108,116,32,34,82,101,97,108,70,108,111,97,116,46,102,108,111,97,
+116,82,97,110,103,101,34,41,41,41,32,40,40,65,32,58,54,52,57,32,
+40,75,32,40,110,111,68,101,102,97,117,108,116,32,34,82,101,97,108,70,
+108,111,97,116,46,100,101,99,111,100,101,70,108,111,97,116,34,41,41,41,
+32,40,40,65,32,58,54,53,48,32,40,75,32,40,110,111,68,101,102,97,
+117,108,116,32,34,82,101,97,108,70,108,111,97,116,46,101,110,99,111,100,
+101,70,108,111,97,116,34,41,41,41,32,40,40,65,32,58,54,53,49,32,
+40,40,40,83,39,32,83,41,32,40,40,40,67,39,32,40,67,39,32,67,
+41,41,32,40,40,66,32,40,66,32,40,83,32,40,40,40,67,39,32,40,
+95,50,50,51,32,95,51,51,56,41,41,32,40,85,32,75,41,41,32,40,
+95,51,57,50,32,35,48,41,41,41,41,41,32,40,40,66,32,40,66,32,
+40,40,67,39,32,40,95,53,55,53,32,95,51,49,48,41,41,32,40,85,
+32,65,41,41,41,41,32,95,54,51,51,41,41,41,32,35,48,41,41,32,
+95,54,51,53,41,41,32,40,40,65,32,58,54,53,50,32,40,40,83,32,
+40,40,40,83,39,32,83,39,41,32,95,54,51,54,41,32,40,40,40,67,
+39,32,67,41,32,95,54,51,53,41,32,75,41,41,41,32,40,40,66,32,
+40,66,32,40,95,53,55,56,32,95,51,49,48,41,41,41,32,95,54,51,
+51,41,41,41,32,40,40,65,32,58,54,53,51,32,40,40,40,67,39,32,
+67,41,32,40,40,66,32,40,40,83,39,32,83,39,41,32,40,40,95,50,
+50,51,32,95,51,49,52,41,32,40,40,95,53,56,49,32,95,51,49,48,
+41,32,40,95,51,57,50,32,35,48,41,41,41,41,41,32,40,40,40,83,
+39,32,40,67,39,32,83,41,41,32,40,40,40,83,39,32,40,67,39,32,
+40,83,39,32,67,41,41,41,32,40,40,40,67,39,32,40,67,39,32,83,
+41,41,32,40,40,40,83,39,32,66,41,32,40,40,66,32,40,83,39,32,
+67,39,41,41,32,40,40,66,32,40,66,32,67,39,41,41,32,40,40,40,
+83,39,32,40,83,39,32,95,49,51,48,41,41,32,40,40,40,83,39,32,
+67,41,32,40,40,66,32,95,50,50,51,41,32,40,40,66,32,95,53,57,
+49,41,32,40,40,66,32,40,85,32,40,75,32,75,41,41,41,32,95,54,
+51,49,41,41,41,41,32,40,40,40,67,39,32,95,53,56,49,41,32,40,
+40,66,32,95,50,55,52,41,32,40,40,66,32,40,85,32,40,90,32,75,
+41,41,41,32,95,54,51,49,41,41,41,32,40,95,51,57,50,32,35,48,
+41,41,41,41,32,40,40,40,83,39,32,40,83,39,32,95,49,51,48,41,
+41,32,95,54,52,48,41,32,95,54,52,49,41,41,41,41,41,32,40,40,
+40,83,39,32,66,41,32,40,66,39,32,40,66,39,32,40,40,40,67,39,
+32,83,39,41,32,95,54,51,54,41,32,40,85,32,75,41,41,41,41,41,
+32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,40,67,39,32,40,
+95,53,55,53,32,95,51,49,48,41,41,32,40,85,32,65,41,41,41,41,
+41,41,32,40,40,66,32,40,67,39,32,40,67,39,32,95,54,54,48,41,
+41,41,32,40,40,66,32,40,66,32,40,40,67,39,32,40,95,53,55,53,
+32,95,51,49,48,41,41,32,40,40,40,83,39,32,40,95,53,55,54,32,
+95,51,49,48,41,41,32,40,85,32,65,41,41,32,40,85,32,75,41,41,
+41,41,41,32,40,40,66,32,40,66,32,40,40,95,53,55,55,32,95,51,
+49,48,41,32,40,40,95,53,56,49,32,95,51,49,48,41,32,40,95,51,
+57,50,32,35,52,41,41,41,41,41,32,95,54,51,51,41,41,41,41,41,
+41,41,32,73,41,41,32,95,54,51,53,41,41,32,95,54,51,52,41,41,
+41,32,73,41,41,32,40,40,65,32,58,54,53,52,32,40,75,32,40,110,
+111,68,101,102,97,117,108,116,32,34,82,101,97,108,70,108,111,97,116,46,
+105,115,78,97,78,34,41,41,41,32,40,40,65,32,58,54,53,53,32,40,
+75,32,40,110,111,68,101,102,97,117,108,116,32,34,82,101,97,108,70,108,
+111,97,116,46,105,115,73,110,102,105,110,105,116,101,34,41,41,41,32,40,
+40,65,32,58,54,53,54,32,40,75,32,40,110,111,68,101,102,97,117,108,
+116,32,34,82,101,97,108,70,108,111,97,116,46,105,115,68,101,110,111,114,
+109,97,108,105,122,101,100,34,41,41,41,32,40,40,65,32,58,54,53,55,
+32,40,75,32,40,110,111,68,101,102,97,117,108,116,32,34,82,101,97,108,
+70,108,111,97,116,46,105,115,78,101,103,97,116,105,118,101,90,101,114,111,
+34,41,41,41,32,40,40,65,32,58,54,53,56,32,40,75,32,40,110,111,
+68,101,102,97,117,108,116,32,34,82,101,97,108,70,108,111,97,116,46,105,
+115,73,69,69,69,34,41,41,41,32,40,40,65,32,58,54,53,57,32,40,
+40,40,83,39,32,40,83,39,32,83,41,41,32,40,40,40,83,39,32,66,
+41,32,40,40,66,32,83,41,32,40,40,40,83,39,32,67,41,32,40,40,
+66,32,95,53,57,53,41,32,40,40,66,32,40,85,32,40,75,32,75,41,
+41,41,32,95,54,51,49,41,41,41,32,40,40,40,67,39,32,95,53,56,
+49,41,32,40,40,66,32,95,50,55,52,41,32,40,40,66,32,40,85,32,
+40,90,32,75,41,41,41,32,95,54,51,49,41,41,41,32,40,95,51,57,
+50,32,35,48,41,41,41,41,41,32,40,40,40,83,39,32,40,67,39,32,
+67,41,41,32,40,40,40,83,39,32,40,83,39,32,83,41,41,32,40,40,
+40,83,39,32,66,41,32,40,40,66,32,40,67,39,32,95,49,51,49,41,
+41,32,40,40,40,83,39,32,67,41,32,40,40,66,32,95,50,50,51,41,
+32,40,40,66,32,95,53,57,49,41,32,40,40,66,32,40,85,32,40,75,
+32,75,41,41,41,32,95,54,51,49,41,41,41,41,32,40,40,40,67,39,
+32,95,53,56,49,41,32,40,40,66,32,95,50,55,52,41,32,40,40,66,
+32,40,85,32,40,90,32,75,41,41,41,32,95,54,51,49,41,41,41,32,
+40,95,51,57,50,32,35,48,41,41,41,41,41,32,40,40,40,83,39,32,
+67,41,32,40,40,66,32,95,53,57,53,41,32,40,40,66,32,40,85,32,
+40,75,32,75,41,41,41,32,95,54,51,49,41,41,41,32,40,40,40,67,
+39,32,95,53,56,49,41,32,40,40,66,32,95,50,55,52,41,32,40,40,
+66,32,40,85,32,40,90,32,75,41,41,41,32,95,54,51,49,41,41,41,
+32,40,95,51,57,50,32,35,48,41,41,41,41,41,32,40,40,40,83,39,
+32,40,83,39,32,83,41,41,32,40,40,40,83,39,32,40,83,39,32,83,
+41,41,32,40,40,40,83,39,32,66,41,32,40,40,66,32,40,67,39,32,
+95,49,51,49,41,41,32,40,40,40,83,39,32,67,41,32,40,40,66,32,
+95,53,57,51,41,32,40,40,66,32,40,85,32,40,75,32,75,41,41,41,
+32,95,54,51,49,41,41,41,32,40,40,40,67,39,32,95,53,56,49,41,
+32,40,40,66,32,95,50,55,52,41,32,40,40,66,32,40,85,32,40,90,
+32,75,41,41,41,32,95,54,51,49,41,41,41,32,40,95,51,57,50,32,
+35,48,41,41,41,41,41,32,40,40,40,83,39,32,67,41,32,40,40,66,
+32,95,53,57,53,41,32,40,40,66,32,40,85,32,40,75,32,75,41,41,
+41,32,95,54,51,49,41,41,41,32,40,40,40,67,39,32,95,53,56,49,
+41,32,40,40,66,32,95,50,55,52,41,32,40,40,66,32,40,85,32,40,
+90,32,75,41,41,41,32,95,54,51,49,41,41,41,32,40,95,51,57,50,
+32,35,48,41,41,41,41,41,32,40,40,40,83,39,32,40,83,39,32,83,
+41,41,32,40,40,40,83,39,32,40,83,39,32,83,41,41,32,40,40,40,
+83,39,32,40,83,39,32,40,83,39,32,95,49,51,48,41,41,41,32,40,
+40,40,83,39,32,66,41,32,40,40,66,32,40,67,39,32,95,49,51,49,
+41,41,32,40,40,40,83,39,32,67,41,32,40,40,66,32,95,53,57,52,
+41,32,40,40,66,32,40,85,32,40,75,32,75,41,41,41,32,95,54,51,
+49,41,41,41,32,40,40,40,67,39,32,95,53,56,49,41,32,40,40,66,
+32,95,50,55,52,41,32,40,40,66,32,40,85,32,40,90,32,75,41,41,
+41,32,95,54,51,49,41,41,41,32,40,95,51,57,50,32,35,48,41,41,
+41,41,41,32,40,40,40,83,39,32,67,41,32,40,40,66,32,95,53,57,
+51,41,32,40,40,66,32,40,85,32,40,75,32,75,41,41,41,32,95,54,
+51,49,41,41,41,32,40,40,40,67,39,32,95,53,56,49,41,32,40,40,
+66,32,95,50,55,52,41,32,40,40,66,32,40,85,32,40,90,32,75,41,
+41,41,32,95,54,51,49,41,41,41,32,40,95,51,57,50,32,35,48,41,
+41,41,41,41,32,40,40,40,83,39,32,40,83,39,32,40,83,39,32,95,
+49,51,48,41,41,41,32,40,40,40,83,39,32,66,41,32,40,40,66,32,
+40,67,39,32,95,49,51,49,41,41,32,40,40,40,83,39,32,67,41,32,
+40,40,66,32,95,53,57,51,41,32,40,40,66,32,40,85,32,40,75,32,
+75,41,41,41,32,95,54,51,49,41,41,41,32,40,40,40,67,39,32,95,
+53,56,49,41,32,40,40,66,32,95,50,55,52,41,32,40,40,66,32,40,
+85,32,40,90,32,75,41,41,41,32,95,54,51,49,41,41,41,32,40,95,
+51,57,50,32,35,48,41,41,41,41,41,32,95,54,52,51,41,41,32,40,
+40,40,83,39,32,66,41,32,40,40,66,32,40,67,39,32,95,49,51,49,
+41,41,32,95,54,52,51,41,41,32,95,54,52,51,41,41,41,41,32,40,
+40,40,83,39,32,40,67,39,32,67,41,41,32,40,40,40,83,39,32,83,
+41,32,40,40,40,83,39,32,40,67,39,32,83,39,41,41,32,40,40,66,
+32,40,66,32,95,49,51,49,41,41,32,40,40,40,83,39,32,67,41,32,
+40,40,66,32,95,50,50,51,41,32,40,40,66,32,95,53,57,49,41,32,
+40,40,66,32,40,85,32,40,75,32,75,41,41,41,32,95,54,51,49,41,
+41,41,41,32,40,40,40,67,39,32,95,53,56,49,41,32,40,40,66,32,
+95,50,55,52,41,32,40,40,66,32,40,85,32,40,90,32,75,41,41,41,
+32,95,54,51,49,41,41,41,32,40,95,51,57,50,32,35,48,41,41,41,
+41,41,32,40,40,40,83,39,32,40,83,39,32,95,49,51,48,41,41,32,
+40,40,40,83,39,32,67,41,32,40,40,66,32,95,53,57,51,41,32,40,
+40,66,32,40,85,32,40,75,32,75,41,41,41,32,95,54,51,49,41,41,
+41,32,40,40,40,67,39,32,95,53,56,49,41,32,40,40,66,32,95,50,
+55,52,41,32,40,40,66,32,40,85,32,40,90,32,75,41,41,41,32,95,
+54,51,49,41,41,41,32,40,95,51,57,50,32,35,48,41,41,41,41,32,
+95,54,52,51,41,41,41,32,40,40,40,67,39,32,40,83,39,32,67,41,
+41,32,40,40,40,83,39,32,40,83,39,32,83,41,41,32,40,40,40,83,
+39,32,66,41,32,40,40,66,32,40,67,39,32,95,49,51,49,41,41,32,
+40,40,40,83,39,32,67,41,32,40,40,66,32,95,50,50,51,41,32,40,
+40,66,32,95,53,57,49,41,32,40,40,66,32,40,85,32,40,75,32,75,
+41,41,41,32,95,54,51,49,41,41,41,41,32,40,40,40,67,39,32,95,
+53,56,49,41,32,40,40,66,32,95,50,55,52,41,32,40,40,66,32,40,
+85,32,40,90,32,75,41,41,41,32,95,54,51,49,41,41,41,32,40,95,
+51,57,50,32,35,48,41,41,41,41,41,32,40,40,40,83,39,32,67,41,
+32,40,40,66,32,95,50,50,51,41,32,40,40,66,32,95,53,57,49,41,
+32,40,40,66,32,40,85,32,40,75,32,75,41,41,41,32,95,54,51,49,
+41,41,41,41,32,40,40,40,67,39,32,95,53,56,49,41,32,40,40,66,
+32,95,50,55,52,41,32,40,40,66,32,40,85,32,40,90,32,75,41,41,
+41,32,95,54,51,49,41,41,41,32,40,95,51,57,50,32,35,48,41,41,
+41,41,41,32,40,40,66,32,67,41,32,40,40,66,32,95,53,55,53,41,
+32,40,40,66,32,95,50,55,52,41,32,40,40,66,32,40,85,32,40,90,
+32,75,41,41,41,32,95,54,51,49,41,41,41,41,41,41,32,73,41,41,
+41,32,40,40,66,32,95,50,50,57,41,32,40,40,66,32,40,85,32,40,
+75,32,65,41,41,41,32,95,54,51,49,41,41,41,41,41,32,40,40,40,
+83,39,32,66,41,32,40,66,39,32,40,40,66,32,95,53,55,56,41,32,
+40,40,66,32,95,50,55,52,41,32,40,40,66,32,40,85,32,40,90,32,
+75,41,41,41,32,95,54,51,49,41,41,41,41,41,32,40,40,40,83,39,
+32,66,41,32,95,54,52,53,41,32,40,40,66,32,95,53,55,56,41,32,
+40,40,66,32,95,50,55,52,41,32,40,40,66,32,40,85,32,40,90,32,
+75,41,41,41,32,95,54,51,49,41,41,41,41,41,41,41,41,32,40,40,
+40,83,39,32,66,41,32,40,66,39,32,40,40,40,83,39,32,95,53,55,
+53,41,32,40,40,66,32,95,50,55,52,41,32,40,40,66,32,40,85,32,
+40,90,32,75,41,41,41,32,95,54,51,49,41,41,41,32,40,40,66,32,
+95,50,50,57,41,32,40,40,66,32,40,85,32,40,75,32,65,41,41,41,
+32,95,54,51,49,41,41,41,41,41,32,40,40,40,83,39,32,66,41,32,
+40,66,39,32,40,40,66,32,95,50,52,48,41,32,40,40,66,32,40,85,
+32,40,75,32,65,41,41,41,32,95,54,51,49,41,41,41,41,32,40,40,
+66,32,95,50,55,53,41,32,40,40,66,32,40,85,32,40,90,32,75,41,
+41,41,32,95,54,51,49,41,41,41,41,41,41,41,32,40,40,83,32,40,
+40,40,83,39,32,95,50,55,53,41,32,40,40,66,32,40,85,32,40,90,
+32,75,41,41,41,32,95,54,51,49,41,41,32,40,40,66,32,95,50,50,
+57,41,32,40,40,66,32,40,85,32,40,75,32,65,41,41,41,32,95,54,
+51,49,41,41,41,41,32,40,40,40,67,39,32,95,53,56,49,41,32,40,
+40,66,32,95,50,55,52,41,32,40,40,66,32,40,85,32,40,90,32,75,
+41,41,41,32,95,54,51,49,41,41,41,32,40,95,51,57,50,32,35,50,
+41,41,41,41,41,41,32,40,40,40,83,39,32,66,41,32,40,66,39,32,
+40,40,66,32,95,50,52,48,41,32,40,40,66,32,40,85,32,40,75,32,
+65,41,41,41,32,95,54,51,49,41,41,41,41,32,40,40,66,32,95,50,
+55,53,41,32,40,40,66,32,40,85,32,40,90,32,75,41,41,41,32,95,
+54,51,49,41,41,41,41,41,32,40,40,65,32,58,54,54,48,32,40,40,
+40,83,39,32,66,41,32,40,40,66,32,40,95,53,57,55,32,95,51,49,
+53,41,41,32,40,95,53,55,56,32,95,51,49,48,41,41,41,32,40,95,
+53,57,56,32,95,51,49,53,41,41,41,32,40,40,65,32,58,54,54,49,
+32,85,41,32,40,40,65,32,58,54,54,50,32,40,85,32,73,41,41,32,
+40,40,65,32,58,54,54,51,32,40,75,32,40,110,111,68,101,102,97,117,
+108,116,32,34,83,101,109,105,103,114,111,117,112,46,60,62,34,41,41,41,
+32,40,40,65,32,58,54,54,52,32,40,85,32,75,41,41,32,40,40,65,
+32,58,54,54,53,32,40,85,32,65,41,41,32,40,40,65,32,58,54,54,
+54,32,40,40,95,50,50,50,32,40,40,67,32,66,41,32,40,85,32,95,
+49,51,53,41,41,41,32,40,95,50,50,54,32,95,54,54,54,41,41,41,
+32,40,40,65,32,58,54,54,55,32,40,40,40,83,39,32,95,50,50,50,
+41,32,40,40,66,32,40,67,32,66,41,41,32,40,40,66,32,40,40,67,
+39,32,66,41,32,66,41,41,32,40,40,40,83,39,32,40,67,39,32,66,
+41,41,32,40,40,66,32,40,66,32,40,67,39,32,66,41,41,41,32,40,
+40,66,32,40,66,32,40,66,32,95,49,51,49,41,41,41,32,40,40,66,
+32,95,50,50,51,41,32,40,85,32,75,41,41,41,41,41,32,40,40,66,
+32,95,50,50,51,41,32,40,85,32,65,41,41,41,41,41,41,32,40,40,
+66,32,95,50,50,54,41,32,40,40,66,32,95,54,54,55,41,32,40,40,
+40,83,39,32,80,41,32,40,85,32,75,41,41,32,40,85,32,65,41,41,
+41,41,41,41,32,40,40,65,32,58,54,54,56,32,40,40,40,83,39,32,
+95,50,50,50,41,32,40,40,66,32,40,67,32,66,41,41,32,40,40,66,
+32,40,40,67,39,32,66,41,32,40,66,39,32,66,41,41,41,32,40,40,
+40,83,39,32,40,67,39,32,66,41,41,32,40,40,66,32,66,39,41,32,
+40,40,66,32,40,66,32,40,67,39,32,66,41,41,41,32,40,40,66,32,
+40,66,32,66,39,41,41,32,40,40,66,32,40,66,32,40,66,32,95,49,
+51,49,41,41,41,32,40,40,66,32,95,50,50,51,41,32,40,85,32,40,
+90,32,75,41,41,41,41,41,41,41,41,32,40,40,40,83,39,32,40,67,
+39,32,66,41,41,32,40,40,66,32,40,66,32,40,67,39,32,66,41,41,
+41,32,40,40,66,32,40,66,32,40,66,32,95,49,51,49,41,41,41,32,
+40,40,66,32,95,50,50,51,41,32,40,85,32,40,75,32,75,41,41,41,
+41,41,41,32,40,40,66,32,95,50,50,51,41,32,40,85,32,40,75,32,
+65,41,41,41,41,41,41,41,41,32,40,40,66,32,95,50,50,54,41,32,
+40,40,66,32,95,54,54,56,41,32,40,40,40,83,39,32,67,41,32,40,
+40,40,83,39,32,80,41,32,40,85,32,40,90,32,75,41,41,41,32,40,
+85,32,40,75,32,75,41,41,41,41,32,40,85,32,40,75,32,65,41,41,
+41,41,41,41,41,32,40,40,65,32,58,54,54,57,32,40,40,40,83,39,
+32,95,50,50,50,41,32,40,40,66,32,40,67,32,66,41,41,32,40,40,
+66,32,40,40,67,39,32,66,41,32,40,66,39,32,40,66,39,32,66,41,
+41,41,41,32,40,40,40,83,39,32,40,67,39,32,66,41,41,32,40,40,
+66,32,66,39,41,32,40,40,66,32,66,39,41,32,40,40,66,32,40,66,
+32,40,67,39,32,66,41,41,41,32,40,40,66,32,40,66,32,66,39,41,
+41,32,40,40,66,32,40,66,32,66,39,41,41,32,40,40,66,32,40,66,
+32,40,66,32,95,49,51,49,41,41,41,32,40,40,66,32,95,50,50,51,
+41,32,40,85,32,40,90,32,40,90,32,75,41,41,41,41,41,41,41,41,
+41,41,41,32,40,40,40,83,39,32,40,67,39,32,66,41,41,32,40,40,
+66,32,66,39,41,32,40,40,66,32,40,66,32,40,67,39,32,66,41,41,
+41,32,40,40,66,32,40,66,32,66,39,41,41,32,40,40,66,32,40,66,
+32,40,66,32,95,49,51,49,41,41,41,32,40,40,66,32,95,50,50,51,
+41,32,40,85,32,40,75,32,40,90,32,75,41,41,41,41,41,41,41,41,
+41,32,40,40,40,83,39,32,40,67,39,32,66,41,41,32,40,40,66,32,
+40,66,32,40,67,39,32,66,41,41,41,32,40,40,66,32,40,66,32,40,
+66,32,95,49,51,49,41,41,41,32,40,40,66,32,95,50,50,51,41,32,
+40,85,32,40,75,50,32,75,41,41,41,41,41,41,32,40,40,66,32,95,
+50,50,51,41,32,40,85,32,40,75,50,32,65,41,41,41,41,41,41,41,
+41,41,32,40,40,66,32,95,50,50,54,41,32,40,40,66,32,95,54,54,
+57,41,32,40,40,40,83,39,32,67,41,32,40,40,40,83,39,32,67,41,
+32,40,40,40,83,39,32,80,41,32,40,85,32,40,90,32,40,90,32,75,
+41,41,41,41,32,40,85,32,40,75,32,40,90,32,75,41,41,41,41,41,
+32,40,85,32,40,75,50,32,75,41,41,41,41,32,40,85,32,40,75,50,
+32,65,41,41,41,41,41,41,41,32,40,40,65,32,58,54,55,48,32,40,
+40,40,95,49,56,52,48,32,40,75,32,40,85,32,40,95,49,56,52,57,
+32,34,40,41,34,41,41,41,41,32,40,95,49,56,52,53,32,95,54,55,
+48,41,41,32,40,95,49,56,52,54,32,95,54,55,48,41,41,41,32,40,
+40,65,32,58,54,55,49,32,40,40,83,32,40,40,40,83,39,32,95,49,
+56,52,48,41,32,40,90,32,40,40,66,32,85,41,32,40,40,66,32,40,
+66,32,40,66,32,40,95,49,56,53,48,32,95,49,51,53,41,41,41,41,
+32,40,40,40,83,39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,
+66,32,95,50,56,52,41,41,32,40,40,40,67,39,32,95,49,56,52,49,
+41,32,40,85,32,75,41,41,32,35,48,41,41,41,32,40,40,66,32,40,
+66,32,40,95,50,56,52,32,40,95,49,56,52,57,32,40,40,79,32,35,
+52,52,41,32,75,41,41,41,41,41,32,40,40,40,67,39,32,95,49,56,
+52,49,41,32,40,85,32,65,41,41,32,35,48,41,41,41,41,41,41,41,
+32,40,40,66,32,95,49,56,52,53,41,32,40,40,66,32,95,54,55,49,
+41,32,40,40,40,83,39,32,80,41,32,40,85,32,75,41,41,32,40,85,
+32,65,41,41,41,41,41,41,32,40,40,66,32,95,49,56,52,54,41,32,
+40,40,66,32,95,54,55,49,41,32,40,40,40,83,39,32,80,41,32,40,
+85,32,75,41,41,32,40,85,32,65,41,41,41,41,41,41,32,40,40,65,
+32,58,54,55,50,32,40,40,83,32,40,40,40,83,39,32,95,49,56,52,
+48,41,32,40,90,32,40,40,66,32,85,41,32,40,40,66,32,40,66,32,
+40,66,32,40,66,32,40,95,49,56,53,48,32,95,49,51,53,41,41,41,
+41,41,32,40,40,40,83,39,32,40,67,39,32,66,41,41,32,40,40,66,
+32,66,39,41,32,40,40,66,32,40,66,32,95,50,56,52,41,41,32,40,
+40,40,67,39,32,95,49,56,52,49,41,32,40,85,32,40,90,32,75,41,
+41,41,32,35,48,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
+40,95,50,56,52,32,40,95,49,56,52,57,32,40,40,79,32,35,52,52,
+41,32,75,41,41,41,41,41,41,32,40,40,40,83,39,32,40,67,39,32,
+66,41,41,32,40,40,66,32,40,66,32,95,50,56,52,41,41,32,40,40,
+40,67,39,32,95,49,56,52,49,41,32,40,85,32,40,75,32,75,41,41,
+41,32,35,48,41,41,41,32,40,40,66,32,40,66,32,40,95,50,56,52,
+32,40,95,49,56,52,57,32,40,40,79,32,35,52,52,41,32,75,41,41,
+41,41,41,32,40,40,40,67,39,32,95,49,56,52,49,41,32,40,85,32,
+40,75,32,65,41,41,41,32,35,48,41,41,41,41,41,41,41,41,41,32,
+40,40,66,32,95,49,56,52,53,41,32,40,40,66,32,95,54,55,50,41,
+32,40,40,40,83,39,32,67,41,32,40,40,40,83,39,32,80,41,32,40,
+85,32,40,90,32,75,41,41,41,32,40,85,32,40,75,32,75,41,41,41,
+41,32,40,85,32,40,75,32,65,41,41,41,41,41,41,41,32,40,40,66,
+32,95,49,56,52,54,41,32,40,40,66,32,95,54,55,50,41,32,40,40,
+40,83,39,32,67,41,32,40,40,40,83,39,32,80,41,32,40,85,32,40,
+90,32,75,41,41,41,32,40,85,32,40,75,32,75,41,41,41,41,32,40,
+85,32,40,75,32,65,41,41,41,41,41,41,41,32,40,40,65,32,58,54,
+55,51,32,40,40,83,32,40,40,40,83,39,32,95,49,56,52,48,41,32,
+40,90,32,40,40,66,32,85,41,32,40,40,66,32,40,66,32,40,66,32,
+40,66,32,40,66,32,40,95,49,56,53,48,32,95,49,51,53,41,41,41,
+41,41,41,32,40,40,40,83,39,32,40,67,39,32,66,41,41,32,40,40,
+66,32,66,39,41,32,40,40,66,32,66,39,41,32,40,40,66,32,40,66,
+32,95,50,56,52,41,41,32,40,40,40,67,39,32,95,49,56,52,49,41,
+32,40,85,32,40,90,32,40,90,32,75,41,41,41,41,32,35,48,41,41,
+41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,95,50,
+56,52,32,40,95,49,56,52,57,32,40,40,79,32,35,52,52,41,32,75,
+41,41,41,41,41,41,41,32,40,40,40,83,39,32,40,67,39,32,66,41,
+41,32,40,40,66,32,66,39,41,32,40,40,66,32,40,66,32,95,50,56,
+52,41,41,32,40,40,40,67,39,32,95,49,56,52,49,41,32,40,85,32,
+40,75,32,40,90,32,75,41,41,41,41,32,35,48,41,41,41,41,32,40,
+40,66,32,40,66,32,40,66,32,40,95,50,56,52,32,40,95,49,56,52,
+57,32,40,40,79,32,35,52,52,41,32,75,41,41,41,41,41,41,32,40,
+40,40,83,39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,
+95,50,56,52,41,41,32,40,40,40,67,39,32,95,49,56,52,49,41,32,
+40,85,32,40,75,50,32,75,41,41,41,32,35,48,41,41,41,32,40,40,
+66,32,40,66,32,40,95,50,56,52,32,40,95,49,56,52,57,32,40,40,
+79,32,35,52,52,41,32,75,41,41,41,41,41,32,40,40,40,67,39,32,
+95,49,56,52,49,41,32,40,85,32,40,75,50,32,65,41,41,41,32,35,
+48,41,41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,95,49,56,
+52,53,41,32,40,40,66,32,95,54,55,51,41,32,40,40,40,83,39,32,
+67,41,32,40,40,40,83,39,32,67,41,32,40,40,40,83,39,32,80,41,
+32,40,85,32,40,90,32,40,90,32,75,41,41,41,41,32,40,85,32,40,
+75,32,40,90,32,75,41,41,41,41,41,32,40,85,32,40,75,50,32,75,
+41,41,41,41,32,40,85,32,40,75,50,32,65,41,41,41,41,41,41,41,
+32,40,40,66,32,95,49,56,52,54,41,32,40,40,66,32,95,54,55,51,
+41,32,40,40,40,83,39,32,67,41,32,40,40,40,83,39,32,67,41,32,
+40,40,40,83,39,32,80,41,32,40,85,32,40,90,32,40,90,32,75,41,
+41,41,41,32,40,85,32,40,75,32,40,90,32,75,41,41,41,41,41,32,
+40,85,32,40,75,50,32,75,41,41,41,41,32,40,85,32,40,75,50,32,
+65,41,41,41,41,41,41,41,32,40,40,65,32,58,54,55,52,32,40,40,
+95,49,51,54,32,95,49,53,54,56,41,32,95,49,53,54,56,41,41,32,
+40,40,65,32,58,54,55,53,32,40,40,40,83,39,32,95,49,51,54,41,
+32,40,40,40,83,39,32,80,41,32,40,40,66,32,95,49,51,55,41,32,
+40,85,32,75,41,41,41,32,40,40,66,32,95,49,51,55,41,32,40,85,
+32,65,41,41,41,41,32,40,40,40,83,39,32,80,41,32,40,40,66,32,
+95,49,51,56,41,32,40,85,32,75,41,41,41,32,40,40,66,32,95,49,
+51,56,41,32,40,85,32,65,41,41,41,41,41,32,40,40,65,32,58,54,
+55,54,32,40,40,40,83,39,32,95,49,51,54,41,32,40,40,40,83,39,
+32,67,41,32,40,40,40,83,39,32,80,41,32,40,40,66,32,95,49,51,
+55,41,32,40,85,32,40,90,32,75,41,41,41,41,32,40,40,66,32,95,
+49,51,55,41,32,40,85,32,40,75,32,75,41,41,41,41,41,32,40,40,
+66,32,95,49,51,55,41,32,40,85,32,40,75,32,65,41,41,41,41,41,
+32,40,40,40,83,39,32,67,41,32,40,40,40,83,39,32,80,41,32,40,
+40,66,32,95,49,51,56,41,32,40,85,32,40,90,32,75,41,41,41,41,
+32,40,40,66,32,95,49,51,56,41,32,40,85,32,40,75,32,75,41,41,
+41,41,41,32,40,40,66,32,95,49,51,56,41,32,40,85,32,40,75,32,
+65,41,41,41,41,41,41,32,40,40,65,32,58,54,55,55,32,40,40,40,
+83,39,32,95,49,51,54,41,32,40,40,40,83,39,32,67,41,32,40,40,
+40,83,39,32,67,41,32,40,40,40,83,39,32,80,41,32,40,40,66,32,
+95,49,51,55,41,32,40,85,32,40,90,32,40,90,32,75,41,41,41,41,
+41,32,40,40,66,32,95,49,51,55,41,32,40,85,32,40,75,32,40,90,
+32,75,41,41,41,41,41,41,32,40,40,66,32,95,49,51,55,41,32,40,
+85,32,40,75,50,32,75,41,41,41,41,41,32,40,40,66,32,95,49,51,
+55,41,32,40,85,32,40,75,50,32,65,41,41,41,41,41,32,40,40,40,
+83,39,32,67,41,32,40,40,40,83,39,32,67,41,32,40,40,40,83,39,
+32,80,41,32,40,40,66,32,95,49,51,56,41,32,40,85,32,40,90,32,
+40,90,32,75,41,41,41,41,41,32,40,40,66,32,95,49,51,56,41,32,
+40,85,32,40,75,32,40,90,32,75,41,41,41,41,41,41,32,40,40,66,
+32,95,49,51,56,41,32,40,85,32,40,75,50,32,75,41,41,41,41,41,
+32,40,40,66,32,95,49,51,56,41,32,40,85,32,40,75,50,32,65,41,
+41,41,41,41,41,32,40,40,65,32,58,54,55,56,32,40,95,54,54,49,
+32,40,75,50,32,95,49,53,54,56,41,41,41,32,40,40,65,32,58,54,
+55,57,32,40,40,66,32,95,54,54,49,41,32,40,40,66,32,40,67,32,
+66,41,41,32,40,40,66,32,40,40,67,39,32,66,41,32,66,41,41,32,
+40,40,40,83,39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,
+32,40,67,39,32,66,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
+80,41,41,41,32,40,40,66,32,95,54,54,50,41,32,40,85,32,75,41,
+41,41,41,41,32,40,40,66,32,95,54,54,50,41,32,40,85,32,65,41,
+41,41,41,41,41,41,32,40,40,65,32,58,54,56,48,32,40,40,66,32,
+95,54,54,49,41,32,40,40,66,32,40,67,32,66,41,41,32,40,40,66,
+32,40,40,67,39,32,66,41,32,40,66,39,32,66,41,41,41,32,40,40,
+40,83,39,32,40,67,39,32,40,67,39,32,66,41,41,41,32,40,40,66,
+32,40,66,32,40,66,32,40,67,39,32,40,67,39,32,66,41,41,41,41,
+41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,67,41,
+41,41,41,41,32,40,40,40,83,39,32,40,67,39,32,66,41,41,32,40,
+40,66,32,40,66,32,40,67,39,32,66,41,41,41,32,40,40,66,32,40,
+66,32,40,66,32,80,41,41,41,32,40,40,66,32,95,54,54,50,41,32,
+40,85,32,40,90,32,75,41,41,41,41,41,41,32,40,40,66,32,95,54,
+54,50,41,32,40,85,32,40,75,32,75,41,41,41,41,41,41,41,32,40,
+40,66,32,95,54,54,50,41,32,40,85,32,40,75,32,65,41,41,41,41,
+41,41,41,41,32,40,40,65,32,58,54,56,49,32,40,40,66,32,95,54,
+54,49,41,32,40,40,66,32,40,67,32,66,41,41,32,40,40,66,32,40,
+40,67,39,32,66,41,32,40,66,39,32,40,66,39,32,66,41,41,41,41,
+32,40,40,40,83,39,32,40,67,39,32,40,67,39,32,40,67,39,32,66,
+41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,67,
+39,32,40,67,39,32,40,67,39,32,66,41,41,41,41,41,41,41,32,40,
+40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
+32,67,41,41,41,41,41,41,41,32,40,40,40,83,39,32,40,67,39,32,
+40,67,39,32,66,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,
+67,39,32,40,67,39,32,66,41,41,41,41,41,32,40,40,66,32,40,66,
+32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,41,32,40,40,40,
+83,39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,40,67,
+39,32,66,41,41,41,32,40,40,66,32,40,66,32,40,66,32,80,41,41,
+41,32,40,40,66,32,95,54,54,50,41,32,40,85,32,40,90,32,40,90,
+32,75,41,41,41,41,41,41,41,32,40,40,66,32,95,54,54,50,41,32,
+40,85,32,40,75,32,40,90,32,75,41,41,41,41,41,41,41,41,32,40,
+40,66,32,95,54,54,50,41,32,40,85,32,40,75,50,32,75,41,41,41,
+41,41,41,41,32,40,40,66,32,95,54,54,50,41,32,40,85,32,40,75,
+50,32,65,41,41,41,41,41,41,41,41,32,40,40,65,32,58,54,56,50,
+32,40,40,40,40,95,53,50,51,32,95,54,55,56,41,32,95,49,53,54,
+56,41,32,40,95,53,50,57,32,95,54,56,50,41,41,32,40,95,53,51,
+48,32,95,54,56,50,41,41,41,32,40,40,65,32,58,54,56,51,32,40,
+40,83,32,40,40,83,32,40,40,40,83,39,32,95,53,50,51,41,32,40,
+40,66,32,95,54,55,57,41,32,40,40,40,83,39,32,80,41,32,40,40,
+66,32,95,53,50,52,41,32,40,85,32,75,41,41,41,32,40,40,66,32,
+95,53,50,52,41,32,40,85,32,65,41,41,41,41,41,32,40,40,40,83,
+39,32,80,41,32,40,40,66,32,95,53,50,53,41,32,40,85,32,75,41,
+41,41,32,40,40,66,32,95,53,50,53,41,32,40,85,32,65,41,41,41,
+41,41,32,40,40,66,32,95,53,50,57,41,32,40,40,66,32,95,54,56,
+51,41,32,40,40,40,83,39,32,80,41,32,40,85,32,75,41,41,32,40,
+85,32,65,41,41,41,41,41,41,32,40,40,66,32,95,53,51,48,41,32,
+40,40,66,32,95,54,56,51,41,32,40,40,40,83,39,32,80,41,32,40,
+85,32,75,41,41,32,40,85,32,65,41,41,41,41,41,41,32,40,40,65,
+32,58,54,56,52,32,40,40,83,32,40,40,83,32,40,40,40,83,39,32,
+95,53,50,51,41,32,40,40,66,32,95,54,56,48,41,32,40,40,40,83,
+39,32,67,41,32,40,40,40,83,39,32,80,41,32,40,40,66,32,95,53,
+50,52,41,32,40,85,32,40,90,32,75,41,41,41,41,32,40,40,66,32,
+95,53,50,52,41,32,40,85,32,40,75,32,75,41,41,41,41,41,32,40,
+40,66,32,95,53,50,52,41,32,40,85,32,40,75,32,65,41,41,41,41,
+41,41,32,40,40,40,83,39,32,67,41,32,40,40,40,83,39,32,80,41,
+32,40,40,66,32,95,53,50,53,41,32,40,85,32,40,90,32,75,41,41,
+41,41,32,40,40,66,32,95,53,50,53,41,32,40,85,32,40,75,32,75,
+41,41,41,41,41,32,40,40,66,32,95,53,50,53,41,32,40,85,32,40,
+75,32,65,41,41,41,41,41,41,32,40,40,66,32,95,53,50,57,41,32,
+40,40,66,32,95,54,56,52,41,32,40,40,40,83,39,32,67,41,32,40,
+40,40,83,39,32,80,41,32,40,85,32,40,90,32,75,41,41,41,32,40,
+85,32,40,75,32,75,41,41,41,41,32,40,85,32,40,75,32,65,41,41,
+41,41,41,41,41,32,40,40,66,32,95,53,51,48,41,32,40,40,66,32,
+95,54,56,52,41,32,40,40,40,83,39,32,67,41,32,40,40,40,83,39,
+32,80,41,32,40,85,32,40,90,32,75,41,41,41,32,40,85,32,40,75,
+32,75,41,41,41,41,32,40,85,32,40,75,32,65,41,41,41,41,41,41,
+41,32,40,40,65,32,58,54,56,53,32,40,40,83,32,40,40,83,32,40,
+40,40,83,39,32,95,53,50,51,41,32,40,40,66,32,95,54,56,49,41,
+32,40,40,40,83,39,32,67,41,32,40,40,40,83,39,32,67,41,32,40,
+40,40,83,39,32,80,41,32,40,40,66,32,95,53,50,52,41,32,40,85,
+32,40,90,32,40,90,32,75,41,41,41,41,41,32,40,40,66,32,95,53,
+50,52,41,32,40,85,32,40,75,32,40,90,32,75,41,41,41,41,41,41,
+32,40,40,66,32,95,53,50,52,41,32,40,85,32,40,75,50,32,75,41,
+41,41,41,41,32,40,40,66,32,95,53,50,52,41,32,40,85,32,40,75,
+50,32,65,41,41,41,41,41,41,32,40,40,40,83,39,32,67,41,32,40,
+40,40,83,39,32,67,41,32,40,40,40,83,39,32,80,41,32,40,40,66,
+32,95,53,50,53,41,32,40,85,32,40,90,32,40,90,32,75,41,41,41,
+41,41,32,40,40,66,32,95,53,50,53,41,32,40,85,32,40,75,32,40,
+90,32,75,41,41,41,41,41,41,32,40,40,66,32,95,53,50,53,41,32,
+40,85,32,40,75,50,32,75,41,41,41,41,41,32,40,40,66,32,95,53,
+50,53,41,32,40,85,32,40,75,50,32,65,41,41,41,41,41,41,32,40,
+40,66,32,95,53,50,57,41,32,40,40,66,32,95,54,56,53,41,32,40,
+40,40,83,39,32,67,41,32,40,40,40,83,39,32,67,41,32,40,40,40,
+83,39,32,80,41,32,40,85,32,40,90,32,40,90,32,75,41,41,41,41,
+32,40,85,32,40,75,32,40,90,32,75,41,41,41,41,41,32,40,85,32,
+40,75,50,32,75,41,41,41,41,32,40,85,32,40,75,50,32,65,41,41,
+41,41,41,41,41,32,40,40,66,32,95,53,51,48,41,32,40,40,66,32,
+95,54,56,53,41,32,40,40,40,83,39,32,67,41,32,40,40,40,83,39,
+32,67,41,32,40,40,40,83,39,32,80,41,32,40,85,32,40,90,32,40,
+90,32,75,41,41,41,41,32,40,85,32,40,75,32,40,90,32,75,41,41,
+41,41,41,32,40,85,32,40,75,50,32,75,41,41,41,41,32,40,85,32,
+40,75,50,32,65,41,41,41,41,41,41,41,32,40,40,65,32,58,54,56,
+54,32,40,40,40,40,40,40,40,95,53,55,52,32,95,49,53,57,54,41,
+32,95,49,53,57,55,41,32,95,49,53,57,56,41,32,40,95,53,56,53,
+32,95,54,56,54,41,41,32,73,41,32,40,40,67,32,40,40,67,32,40,
+40,67,32,40,95,50,50,51,32,95,54,57,49,41,41,32,35,48,41,41,
+32,35,49,41,41,32,35,48,41,41,32,40,40,66,32,95,49,54,49,55,
+41,32,95,51,57,51,41,41,41,32,40,40,65,32,58,54,56,55,32,40,
+40,40,40,40,40,40,40,95,51,57,55,32,40,40,80,32,95,54,57,49,
+41,32,95,54,56,54,41,41,32,95,49,53,57,57,41,32,95,49,54,48,
+48,41,32,40,95,52,48,56,32,95,54,56,55,41,41,32,40,95,52,48,
+57,32,95,54,56,55,41,41,32,40,95,52,49,48,32,95,54,56,55,41,
+41,32,40,95,52,49,49,32,95,54,56,55,41,41,32,95,51,57,52,41,
+41,32,40,40,65,32,58,54,56,56,32,40,40,95,49,51,54,32,35,48,
+41,32,40,95,49,54,48,55,32,35,48,41,41,41,32,40,40,65,32,58,
+54,56,57,32,40,95,54,50,55,32,40,40,66,32,95,54,50,53,41,32,
+95,51,57,52,41,41,41,32,40,40,65,32,58,54,57,48,32,40,40,40,
+40,40,40,40,40,95,50,48,48,32,40,40,67,32,40,95,53,55,53,32,
+95,54,56,54,41,41,32,40,40,95,53,56,49,32,95,54,56,54,41,32,
+40,95,51,57,50,32,35,49,41,41,41,41,32,40,40,67,32,40,95,53,
+55,54,32,95,54,56,54,41,41,32,40,40,95,53,56,49,32,95,54,56,
+54,41,32,40,95,51,57,50,32,35,49,41,41,41,41,32,95,49,54,49,
+55,41,32,95,49,54,49,54,41,32,40,40,83,32,95,53,48,51,41,32,
+40,40,66,32,40,95,50,48,53,32,95,54,57,48,41,41,32,40,40,67,
+32,40,95,53,55,53,32,95,54,56,54,41,41,32,35,49,41,41,41,41,
+32,40,40,40,83,39,32,40,67,39,32,89,41,41,32,40,40,66,32,40,
+66,32,40,66,32,40,83,32,95,53,48,51,41,41,41,41,32,40,40,66,
+32,40,66,32,40,67,32,66,41,41,41,32,40,40,66,32,40,66,32,40,
+67,32,40,95,53,55,53,32,95,54,56,54,41,41,41,41,32,40,67,32,
+40,95,53,55,54,32,95,54,56,54,41,41,41,41,41,41,32,73,41,41,
+32,40,40,66,32,40,40,67,39,32,95,52,54,52,41,32,40,67,32,40,
+95,53,57,52,32,95,54,57,50,41,41,41,41,32,40,95,50,48,53,32,
+95,54,57,48,41,41,41,32,40,40,40,83,39,32,83,41,32,40,40,40,
+83,39,32,40,83,39,32,83,39,41,41,32,40,67,32,40,95,53,57,53,
+32,95,54,57,50,41,41,41,32,40,40,66,32,40,66,32,40,40,67,39,
+32,95,52,54,52,41,32,40,67,32,40,95,53,57,54,32,95,54,57,50,
+41,41,41,41,41,32,40,95,50,48,54,32,95,54,57,48,41,41,41,41,
+32,40,40,66,32,40,66,32,40,40,67,39,32,95,52,54,52,41,32,40,
+67,32,40,95,53,57,52,32,95,54,57,50,41,41,41,41,41,32,40,95,
+50,48,54,32,95,54,57,48,41,41,41,41,41,32,40,40,65,32,58,54,
+57,49,32,40,40,95,50,50,50,32,95,49,54,49,48,41,32,95,49,54,
+49,49,41,41,32,40,40,65,32,58,54,57,50,32,40,40,40,40,40,40,
+40,40,95,53,57,48,32,95,54,57,49,41,32,40,95,53,57,57,32,95,
+54,57,50,41,41,32,95,49,54,49,50,41,32,95,49,54,49,51,41,32,
+95,49,54,49,52,41,32,95,49,54,49,53,41,32,40,95,54,48,52,32,
+95,54,57,50,41,41,32,40,95,54,48,53,32,95,54,57,50,41,41,41,
+32,40,40,65,32,58,54,57,51,32,40,40,40,40,40,40,40,40,40,40,
+40,40,40,40,40,40,40,40,40,40,40,40,95,55,53,32,95,54,57,49,
+41,32,95,49,54,48,49,41,32,95,49,54,48,50,41,32,95,49,54,48,
+51,41,32,95,49,54,48,55,41,32,40,95,49,48,50,32,95,54,57,51,
+41,41,32,40,95,49,48,51,32,95,54,57,51,41,41,32,35,48,41,32,
+40,95,49,54,48,52,32,35,49,41,41,32,40,95,49,48,54,32,95,54,
+57,51,41,41,32,40,95,49,48,55,32,95,54,57,51,41,41,32,40,95,
+49,48,56,32,95,54,57,51,41,41,32,40,95,49,48,57,32,95,54,57,
+51,41,41,32,95,49,54,48,52,41,32,40,95,49,49,49,32,95,54,57,
+51,41,41,32,95,49,54,48,53,41,32,40,95,49,49,51,32,95,54,57,
+51,41,41,32,40,95,49,49,52,32,95,54,57,51,41,41,32,40,95,49,
+49,53,32,95,54,57,51,41,41,32,40,95,49,49,54,32,95,54,57,51,
+41,41,32,40,75,32,40,95,53,50,50,32,95,49,54,52,57,41,41,41,
+32,40,75,32,95,49,54,52,57,41,41,41,32,40,40,65,32,58,54,57,
+52,32,40,40,40,95,49,56,52,48,32,40,95,49,56,52,52,32,95,54,
+57,52,41,41,32,40,89,32,40,40,40,67,39,32,83,41,32,40,40,40,
+67,39,32,67,41,32,40,40,66,32,40,40,83,39,32,83,39,41,32,40,
+40,67,32,40,95,53,57,51,32,95,54,57,50,41,41,32,35,49,48,41,
+41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,66,
+32,40,66,32,95,53,48,52,41,41,32,40,40,67,32,66,41,32,40,40,
+67,32,40,95,51,57,57,32,95,54,56,55,41,41,32,35,49,48,41,41,
+41,41,32,40,40,67,32,79,41,32,75,41,41,41,41,32,40,40,67,32,
+79,41,32,75,41,41,41,32,40,40,66,32,95,49,52,54,41,32,40,40,
+66,32,40,40,95,53,55,53,32,95,51,49,48,41,32,40,95,49,52,55,
+32,35,52,56,41,41,41,32,40,40,66,32,95,49,54,49,54,41,32,40,
+40,67,32,40,95,52,48,48,32,95,54,56,55,41,41,32,35,49,48,41,
+41,41,41,41,41,41,32,40,95,49,56,52,54,32,95,54,57,52,41,41,
+41,32,40,40,65,32,58,54,57,53,32,73,41,32,40,40,65,32,58,54,
+57,54,32,73,41,32,40,40,65,32,58,54,57,55,32,40,40,66,32,95,
+54,57,53,41,32,40,40,67,32,40,95,55,55,32,95,54,57,51,41,41,
+32,35,50,53,53,41,41,41,32,40,40,65,32,58,54,57,56,32,40,66,
+32,40,66,32,95,54,57,55,41,41,41,32,40,40,65,32,58,54,57,57,
+32,40,66,32,40,66,32,95,54,57,55,41,41,41,32,40,40,65,32,58,
+55,48,48,32,73,41,32,40,40,65,32,58,55,48,49,32,40,66,32,95,
+54,57,55,41,41,32,40,40,65,32,58,55,48,50,32,40,40,40,40,40,
+40,40,95,53,55,52,32,40,95,54,57,56,32,95,49,53,57,54,41,41,
+32,40,95,54,57,56,32,95,49,53,57,55,41,41,32,40,95,54,57,56,
+32,95,49,53,57,56,41,41,32,40,95,53,56,53,32,95,55,48,50,41,
+41,32,73,41,32,40,40,67,32,40,40,67,32,40,40,67,32,40,95,50,
+50,51,32,95,55,48,55,41,41,32,40,40,95,53,56,49,32,95,55,48,
+50,41,32,40,95,51,57,50,32,35,48,41,41,41,41,32,40,40,95,53,
+56,49,32,95,55,48,50,41,32,40,95,51,57,50,32,35,49,41,41,41,
+41,32,40,40,95,53,56,49,32,95,55,48,50,41,32,40,95,51,57,50,
+32,35,48,41,41,41,41,32,40,40,66,32,95,54,57,55,41,32,40,40,
+66,32,95,49,54,49,55,41,32,95,51,57,51,41,41,41,41,32,40,40,
+65,32,58,55,48,51,32,40,40,40,40,40,40,40,40,95,51,57,55,32,
+40,40,80,32,95,55,48,55,41,32,95,55,48,50,41,41,32,40,95,54,
+57,56,32,95,49,53,57,57,41,41,32,40,95,54,57,56,32,95,49,54,
+48,48,41,41,32,40,95,52,48,56,32,95,55,48,51,41,41,32,40,95,
+52,48,57,32,95,55,48,51,41,41,32,40,95,52,49,48,32,95,55,48,
+51,41,41,32,40,95,52,49,49,32,95,55,48,51,41,41,32,40,40,95,
+50,56,52,32,95,51,57,52,41,32,95,54,57,54,41,41,41,32,40,40,
+65,32,58,55,48,52,32,40,40,95,49,51,54,32,40,95,54,57,53,32,
+35,48,41,41,32,40,95,54,57,53,32,35,50,53,53,41,41,41,32,40,
+40,65,32,58,55,48,53,32,40,95,54,50,55,32,40,40,95,50,56,52,
+32,95,54,50,53,41,32,40,40,95,50,56,52,32,95,51,57,52,41,32,
+95,54,57,54,41,41,41,41,32,40,40,65,32,58,55,48,54,32,40,40,
+40,40,40,40,40,40,95,50,48,48,32,40,40,67,32,40,95,53,55,53,
+32,95,55,48,50,41,41,32,40,40,95,53,56,49,32,95,55,48,50,41,
+32,40,95,51,57,50,32,35,49,41,41,41,41,32,40,40,67,32,40,95,
+53,55,54,32,95,55,48,50,41,41,32,40,40,95,53,56,49,32,95,55,
+48,50,41,32,40,95,51,57,50,32,35,49,41,41,41,41,32,40,40,95,
+50,56,52,32,95,54,57,55,41,32,95,49,54,49,55,41,41,32,40,40,
+95,50,56,52,32,95,49,54,49,54,41,32,95,54,57,54,41,41,32,40,
+40,83,32,95,53,48,51,41,32,40,40,66,32,40,95,50,48,53,32,95,
+55,48,54,41,41,32,40,40,67,32,40,95,53,55,53,32,95,55,48,50,
+41,41,32,40,40,95,53,56,49,32,95,55,48,50,41,32,40,95,51,57,
+50,32,35,49,41,41,41,41,41,41,32,40,40,40,83,39,32,40,67,39,
+32,89,41,41,32,40,40,66,32,40,66,32,40,66,32,40,83,32,95,53,
+48,51,41,41,41,41,32,40,40,66,32,40,66,32,40,67,32,66,41,41,
+41,32,40,40,66,32,40,66,32,40,67,32,40,95,53,55,53,32,95,55,
+48,50,41,41,41,41,32,40,67,32,40,95,53,55,54,32,95,55,48,50,
+41,41,41,41,41,41,32,73,41,41,32,40,40,66,32,40,40,67,39,32,
+95,52,54,52,41,32,40,67,32,40,95,53,57,52,32,95,55,48,56,41,
+41,41,41,32,40,95,50,48,53,32,95,55,48,54,41,41,41,32,40,40,
+40,83,39,32,83,41,32,40,40,40,83,39,32,40,83,39,32,83,39,41,
+41,32,40,67,32,40,95,53,57,53,32,95,55,48,56,41,41,41,32,40,
+40,66,32,40,66,32,40,40,67,39,32,95,52,54,52,41,32,40,67,32,
+40,95,53,57,54,32,95,55,48,56,41,41,41,41,41,32,40,95,50,48,
+54,32,95,55,48,54,41,41,41,41,32,40,40,66,32,40,66,32,40,40,
+67,39,32,95,52,54,52,41,32,40,67,32,40,95,53,57,52,32,95,55,
+48,56,41,41,41,41,41,32,40,95,50,48,54,32,95,55,48,54,41,41,
+41,41,41,32,40,40,65,32,58,55,48,55,32,40,40,95,50,50,50,32,
+40,95,55,48,48,32,95,49,54,49,48,41,41,32,40,95,55,48,48,32,
+95,49,54,49,49,41,41,41,32,40,40,65,32,58,55,48,56,32,40,40,
+40,40,40,40,40,40,95,53,57,48,32,95,55,48,55,41,32,40,95,53,
+57,57,32,95,55,48,56,41,41,32,40,95,55,48,48,32,95,49,54,49,
+50,41,41,32,40,95,55,48,48,32,95,49,54,49,51,41,41,32,40,95,
+55,48,48,32,95,49,54,49,52,41,41,32,40,95,55,48,48,32,95,49,
+54,49,53,41,41,32,40,95,54,48,52,32,95,55,48,56,41,41,32,40,
+95,54,48,53,32,95,55,48,56,41,41,41,32,40,40,65,32,58,55,48,
+57,32,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,
+40,40,40,40,95,55,53,32,95,55,48,55,41,32,40,95,54,57,56,32,
+95,49,54,48,49,41,41,32,40,95,54,57,56,32,95,49,54,48,50,41,
+41,32,40,95,54,57,56,32,95,49,54,48,51,41,41,32,40,95,55,48,
+49,32,95,49,54,48,55,41,41,32,40,95,49,48,50,32,95,55,48,57,
+41,41,32,40,95,49,48,51,32,95,55,48,57,41,41,32,40,40,95,53,
+56,49,32,95,55,48,50,41,32,40,95,51,57,50,32,35,48,41,41,41,
+32,40,40,66,32,95,54,57,55,41,32,40,95,49,54,48,52,32,35,49,
+41,41,41,32,40,95,49,48,54,32,95,55,48,57,41,41,32,40,95,49,
+48,55,32,95,55,48,57,41,41,32,40,95,49,48,56,32,95,55,48,57,
+41,41,32,40,95,49,48,57,32,95,55,48,57,41,41,32,40,95,54,57,
+57,32,95,49,54,48,52,41,41,32,40,95,49,49,49,32,95,55,48,57,
+41,41,32,40,95,54,57,57,32,95,49,54,48,53,41,41,32,40,95,49,
+49,51,32,95,55,48,57,41,41,32,40,95,49,49,52,32,95,55,48,57,
+41,41,32,40,95,49,49,53,32,95,55,48,57,41,41,32,40,95,49,49,
+54,32,95,55,48,57,41,41,32,40,75,32,40,95,53,50,50,32,40,40,
+95,53,56,49,32,95,51,49,48,41,32,40,95,51,57,50,32,35,56,41,
+41,41,41,41,32,40,75,32,35,56,41,41,41,32,40,40,65,32,58,55,
+49,48,32,40,40,40,95,49,56,52,48,32,40,95,49,56,52,52,32,95,
+55,49,48,41,41,32,40,40,95,50,56,52,32,40,95,49,56,52,50,32,
+95,54,57,52,41,41,32,95,54,57,54,41,41,32,40,95,49,56,52,54,
+32,95,55,49,48,41,41,41,32,40,40,65,32,58,55,49,49,32,40,40,
+66,32,40,66,32,73,79,46,112,101,114,102,111,114,109,73,79,41,41,32,
+40,40,40,67,39,32,66,41,32,40,40,66,32,40,95,51,54,32,95,49,
+54,57,55,41,41,32,95,49,55,49,55,41,41,32,40,95,51,55,32,95,
+49,54,57,55,41,41,41,41,32,40,40,65,32,58,55,49,50,32,40,40,
+66,32,40,67,32,95,55,49,49,41,41,32,40,40,67,32,95,51,55,41,
+32,95,49,53,54,56,41,41,41,32,40,40,65,32,58,55,49,51,32,40,
+40,40,67,39,32,95,49,54,51,52,41,32,95,49,54,52,50,41,32,40,
+85,32,40,90,32,95,49,54,51,54,41,41,41,41,32,40,40,65,32,58,
+55,49,52,32,95,49,54,52,50,41,32,40,40,65,32,58,55,49,53,32,
+40,40,40,67,39,32,66,41,32,40,40,66,32,95,49,54,51,52,41,32,
+95,55,49,51,41,41,32,40,40,67,32,40,83,39,32,95,49,54,51,52,
+41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,95,49,54,51,
+53,41,32,95,55,49,57,41,41,32,95,49,54,51,54,41,41,41,41,32,
+40,40,65,32,58,55,49,54,32,95,49,54,52,51,41,32,40,40,65,32,
+58,55,49,55,32,40,85,32,95,49,54,52,52,41,41,32,40,40,65,32,
+58,55,49,56,32,94,102,114,101,101,41,32,40,40,65,32,58,55,49,57,
+32,95,55,49,56,41,32,40,40,65,32,58,55,50,48,32,94,109,97,108,
+108,111,99,41,32,40,40,65,32,58,55,50,49,32,95,55,50,48,41,32,
+40,40,65,32,58,55,50,50,32,94,99,97,108,108,111,99,41,32,40,40,
+65,32,58,55,50,51,32,40,95,55,50,50,32,35,49,41,41,32,40,40,
+65,32,58,55,50,52,32,40,40,66,32,95,55,50,49,41,32,40,40,67,
+32,95,55,51,52,41,32,95,50,56,41,41,41,32,40,40,65,32,58,55,
+50,53,32,40,40,66,32,95,55,50,51,41,32,40,40,67,32,95,55,51,
+52,41,32,95,50,56,41,41,41,32,40,40,65,32,58,55,50,54,32,40,
+40,40,67,39,32,66,41,32,40,40,66,32,95,49,54,51,52,41,32,40,
+40,66,32,95,55,50,49,41,32,40,40,67,32,95,55,51,52,41,32,95,
+50,56,41,41,41,41,32,40,40,67,32,40,83,39,32,95,49,54,51,52,
+41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,95,49,54,51,
+53,41,32,95,55,49,57,41,41,32,95,49,54,51,54,41,41,41,41,32,
+40,40,65,32,58,55,50,55,32,40,40,95,50,50,50,32,95,49,54,53,
+50,41,32,40,95,50,50,54,32,95,55,50,55,41,41,41,32,40,40,65,
+32,58,55,50,56,32,40,40,40,95,49,56,52,48,32,40,75,32,40,40,
+66,32,40,95,50,56,52,32,40,95,49,56,52,57,32,34,80,84,82,35,
+34,41,41,41,32,40,40,66,32,40,40,95,49,56,52,49,32,95,54,57,
+52,41,32,35,48,41,41,32,95,49,54,52,54,41,41,41,41,32,40,95,
+49,56,52,53,32,95,55,50,56,41,41,32,40,95,49,56,52,54,32,95,
+55,50,56,41,41,41,32,40,40,65,32,58,55,50,57,32,95,49,54,53,
+51,41,32,40,40,65,32,58,55,51,48,32,95,49,54,53,52,41,32,40,
+40,65,32,58,55,51,49,32,95,49,54,53,53,41,32,40,40,65,32,58,
+55,51,50,32,95,49,54,53,54,41,32,40,40,65,32,58,55,51,51,32,
+40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
+66,32,67,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,
+32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,41,41,32,40,40,
+66,32,40,66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,41,
+32,40,40,66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,32,
+40,40,66,32,40,66,32,40,66,32,67,41,41,41,32,40,40,66,32,40,
+66,32,67,41,41,32,80,41,41,41,41,41,41,41,32,40,40,65,32,58,
+55,51,52,32,40,85,32,40,90,32,40,90,32,40,90,32,40,90,32,40,
+90,32,40,90,32,75,41,41,41,41,41,41,41,41,32,40,40,65,32,58,
+55,51,53,32,40,85,32,40,75,32,40,90,32,40,90,32,40,90,32,40,
+90,32,40,90,32,75,41,41,41,41,41,41,41,41,32,40,40,65,32,58,
+55,51,54,32,40,85,32,40,75,50,32,40,90,32,40,90,32,40,90,32,
+40,90,32,75,41,41,41,41,41,41,41,32,40,40,65,32,58,55,51,55,
+32,40,85,32,40,75,51,32,40,90,32,40,90,32,40,90,32,75,41,41,
+41,41,41,41,32,40,40,65,32,58,55,51,56,32,40,85,32,40,75,52,
+32,40,90,32,40,90,32,75,41,41,41,41,41,32,40,40,65,32,58,55,
+51,57,32,40,85,32,40,75,32,40,75,52,32,40,90,32,75,41,41,41,
+41,41,32,40,40,65,32,58,55,52,48,32,40,85,32,40,75,50,32,40,
+75,52,32,75,41,41,41,41,32,40,40,65,32,58,55,52,49,32,40,85,
+32,40,75,50,32,40,75,52,32,65,41,41,41,41,32,40,40,65,32,58,
+55,52,50,32,40,75,32,40,110,111,68,101,102,97,117,108,116,32,34,83,
+116,111,114,97,98,108,101,46,115,105,122,101,79,102,34,41,41,41,32,40,
+40,65,32,58,55,52,51,32,40,75,32,40,110,111,68,101,102,97,117,108,
+116,32,34,83,116,111,114,97,98,108,101,46,97,108,105,103,110,109,101,110,
+116,34,41,41,41,32,40,40,65,32,58,55,52,52,32,40,40,40,83,39,
+32,40,67,39,32,66,41,41,32,95,55,51,56,41,32,40,40,66,32,40,
+67,32,95,49,53,55,49,41,41,32,40,40,67,32,95,55,51,52,41,32,
+95,50,56,41,41,41,41,32,40,40,65,32,58,55,52,53,32,40,40,40,
+67,39,32,67,41,32,40,40,40,83,39,32,40,67,39,32,67,39,41,41,
+32,40,40,66,32,40,66,32,83,39,41,41,32,95,55,51,57,41,41,32,
+40,40,66,32,40,40,67,39,32,66,41,32,95,49,53,55,49,41,41,32,
+95,55,51,52,41,41,41,32,73,41,41,32,40,40,65,32,58,55,52,54,
+32,40,40,40,67,39,32,66,41,32,40,66,39,32,95,55,52,48,41,41,
+32,95,55,51,49,41,41,32,40,40,65,32,58,55,52,55,32,40,40,40,
+67,39,32,66,41,32,40,66,39,32,95,55,52,49,41,41,32,95,55,51,
+49,41,41,32,40,40,65,32,58,55,52,56,32,40,40,40,67,39,32,67,
+41,32,95,55,51,54,41,32,35,48,41,41,32,40,40,65,32,58,55,52,
+57,32,40,40,40,67,39,32,67,41,32,95,55,51,55,41,32,35,48,41,
+41,32,40,40,65,32,58,55,53,48,32,94,112,101,101,107,87,111,114,100,
+41,32,40,40,65,32,58,55,53,49,32,94,112,111,107,101,87,111,114,100,
+41,32,40,40,65,32,58,55,53,50,32,40,40,40,40,40,40,40,40,95,
+55,51,51,32,40,75,32,95,49,54,52,57,41,41,32,40,75,32,95,49,
+54,52,57,41,41,32,40,95,55,52,52,32,95,55,53,50,41,41,32,40,
+95,55,52,53,32,95,55,53,50,41,41,32,40,95,55,52,54,32,95,55,
+53,50,41,41,32,40,95,55,52,55,32,95,55,53,50,41,41,32,95,55,
+53,48,41,32,95,55,53,49,41,41,32,40,40,65,32,58,55,53,51,32,
+94,112,101,101,107,80,116,114,41,32,40,40,65,32,58,55,53,52,32,94,
+112,111,107,101,80,116,114,41,32,40,40,65,32,58,55,53,53,32,40,40,
+40,40,40,40,40,40,95,55,51,51,32,40,75,32,95,49,54,52,57,41,
+41,32,40,75,32,95,49,54,52,57,41,41,32,40,95,55,52,52,32,95,
+55,53,53,41,41,32,40,95,55,52,53,32,95,55,53,53,41,41,32,40,
+95,55,52,54,32,95,55,53,53,41,41,32,40,95,55,52,55,32,95,55,
+53,53,41,41,32,95,55,53,51,41,32,95,55,53,52,41,41,32,40,40,
+65,32,58,55,53,54,32,94,112,101,101,107,66,121,116,101,41,32,40,40,
+65,32,58,55,53,55,32,94,112,111,107,101,66,121,116,101,41,32,40,40,
+65,32,58,55,53,56,32,40,40,40,40,40,40,40,40,95,55,51,51,32,
+40,75,32,35,56,41,41,32,40,75,32,35,56,41,41,32,40,95,55,52,
+52,32,95,55,53,56,41,41,32,40,95,55,52,53,32,95,55,53,56,41,
+41,32,40,95,55,52,54,32,95,55,53,56,41,41,32,40,95,55,52,55,
+32,95,55,53,56,41,41,32,95,55,53,54,41,32,95,55,53,55,41,41,
+32,40,40,65,32,58,55,53,57,32,73,41,32,40,40,65,32,58,55,54,
+48,32,95,55,53,57,41,32,40,40,65,32,58,55,54,49,32,75,41,32,
+40,40,65,32,58,55,54,50,32,79,41,32,40,40,65,32,58,55,54,51,
+32,40,40,67,32,40,40,67,32,40,40,80,32,40,75,32,95,55,54,49,
+41,41,32,95,55,54,50,41,41,32,40,75,50,32,95,55,54,49,41,41,
+41,32,40,75,32,95,55,54,49,41,41,41,32,40,40,65,32,58,55,54,
+52,32,40,40,66,32,40,67,32,40,40,67,32,40,40,80,32,40,75,32,
+95,49,51,52,41,41,32,40,75,50,32,95,49,51,52,41,41,41,32,40,
+75,50,32,95,49,51,52,41,41,41,41,32,40,40,66,32,85,41,32,40,
+40,66,32,40,40,67,39,32,66,41,32,40,40,67,32,40,40,67,32,61,
+61,41,32,35,54,41,41,32,95,49,51,52,41,41,41,32,40,40,66,32,
+85,41,32,40,95,50,50,51,32,95,49,52,51,41,41,41,41,41,41,32,
+40,40,65,32,58,55,54,53,32,40,95,55,54,52,32,40,40,79,32,35,
+55,53,41,32,75,41,41,41,32,40,40,65,32,58,55,54,54,32,40,95,
+55,54,52,32,40,40,79,32,35,55,51,41,32,75,41,41,41,32,40,40,
+65,32,58,55,54,55,32,40,95,55,54,52,32,40,40,79,32,35,54,54,
+41,32,75,41,41,41,32,40,40,65,32,58,55,54,56,32,40,95,55,54,
+52,32,40,40,79,32,35,54,55,41,32,75,41,41,41,32,40,40,65,32,
+58,55,54,57,32,40,95,55,54,52,32,40,40,79,32,35,56,57,41,32,
+75,41,41,41,32,40,40,65,32,58,55,55,48,32,40,95,55,54,52,32,
+40,40,79,32,35,56,48,41,32,75,41,41,41,32,40,40,65,32,58,55,
+55,49,32,40,95,56,56,50,32,40,95,57,53,54,32,40,40,79,32,35,
+55,51,41,32,75,41,41,41,41,32,40,40,65,32,58,55,55,50,32,40,
+95,56,56,50,32,40,95,57,53,54,32,40,40,79,32,35,55,53,41,32,
+75,41,41,41,41,32,40,40,65,32,58,55,55,51,32,40,95,56,56,50,
+32,40,95,57,53,54,32,40,40,79,32,35,56,51,41,32,75,41,41,41,
+41,32,40,40,65,32,58,55,55,52,32,40,95,56,56,50,32,40,95,57,
+53,54,32,40,40,79,32,35,56,48,41,32,75,41,41,41,41,32,40,40,
+65,32,58,55,55,53,32,40,40,95,50,56,52,32,95,55,56,57,41,32,
+95,55,55,54,41,41,32,40,40,65,32,58,55,55,54,32,40,40,83,32,
+40,40,67,32,40,40,67,32,40,40,83,32,73,41,32,75,41,41,32,40,
+40,40,67,39,32,66,41,32,40,40,66,32,95,56,56,48,41,32,95,55,
+55,54,41,41,32,95,55,55,54,41,41,41,32,95,55,55,55,41,41,32,
+75,41,41,32,40,40,65,32,58,55,55,55,32,40,40,66,32,89,41,32,
+40,40,40,67,39,32,40,67,39,32,83,41,41,32,40,40,40,67,39,32,
+40,83,39,32,67,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,
+32,80,41,32,40,40,40,67,39,32,67,41,32,40,40,40,67,39,32,83,
+41,32,40,95,50,50,51,32,95,49,48,55,56,41,41,32,40,40,66,32,
+95,55,55,56,41,32,95,56,55,57,41,41,41,32,95,55,55,49,41,41,
+41,32,40,40,40,83,39,32,40,67,39,32,66,41,41,32,40,66,32,95,
+55,55,57,41,41,32,73,41,41,41,32,40,40,40,67,39,32,66,41,32,
+40,66,39,32,95,50,56,50,41,41,32,95,55,55,55,41,41,41,32,40,
+90,32,95,55,55,56,41,41,41,41,32,40,40,65,32,58,55,55,56,32,
+40,95,56,56,48,32,95,55,55,50,41,41,32,40,40,65,32,58,55,55,
+57,32,40,40,67,32,40,40,40,83,39,32,67,39,41,32,95,55,54,53,
+41,32,40,40,83,32,40,40,40,67,39,32,83,39,41,32,40,40,66,32,
+83,41,32,95,55,54,51,41,41,32,40,40,66,32,40,40,67,39,32,40,
+67,39,32,66,41,41,32,40,67,32,95,55,54,53,41,41,41,32,40,40,
+83,32,40,40,40,83,39,32,83,39,41,32,95,55,54,51,41,32,40,40,
+67,32,40,40,40,83,39,32,83,39,41,32,95,55,54,54,41,32,40,67,
+32,95,55,56,52,41,41,41,32,73,41,41,41,32,40,40,40,67,39,32,
+40,83,39,32,40,67,39,32,66,41,41,41,32,40,40,66,32,40,66,32,
+40,67,32,95,55,54,53,41,41,41,32,40,67,32,95,55,56,52,41,41,
+41,32,40,40,66,32,40,66,32,95,55,55,56,41,41,32,95,56,56,48,
+41,41,41,41,41,41,32,95,55,56,48,41,41,41,32,95,55,55,49,41,
+41,32,40,40,65,32,58,55,56,48,32,40,40,40,83,39,32,83,41,32,
+40,40,66,32,40,83,32,95,55,54,51,41,41,32,95,55,56,49,41,41,
+32,40,40,40,83,39,32,40,67,39,32,40,67,39,32,66,41,41,41,32,
+40,40,66,32,40,66,32,40,67,32,95,55,54,53,41,41,41,32,95,55,
+56,49,41,41,32,95,55,56,50,41,41,41,32,40,40,65,32,58,55,56,
+49,32,40,40,83,32,40,40,40,67,39,32,83,39,41,32,40,40,66,32,
+83,41,32,95,55,54,51,41,41,32,40,40,66,32,40,40,83,39,32,40,
+67,39,32,66,41,41,32,40,67,32,95,55,54,51,41,41,41,32,40,40,
+66,32,40,40,67,39,32,66,41,32,40,40,66,32,40,67,39,32,66,41,
+41,32,40,67,32,95,55,54,55,41,41,41,41,32,40,40,67,39,32,67,
+41,32,40,67,32,95,55,56,55,41,41,41,41,41,41,32,40,95,56,56,
+52,32,95,55,55,51,41,41,41,32,40,40,65,32,58,55,56,50,32,40,
+40,83,32,40,40,40,67,39,32,83,39,41,32,40,40,66,32,83,41,32,
+95,55,54,51,41,41,32,40,40,66,32,40,40,83,39,32,40,67,39,32,
+66,41,41,32,40,67,32,95,55,54,51,41,41,41,32,40,40,40,83,39,
+32,40,67,39,32,40,83,39,32,67,41,41,41,32,40,40,66,32,40,66,
+32,40,66,32,40,40,83,39,32,83,39,41,32,95,55,54,55,41,41,41,
+41,32,40,40,66,32,40,40,67,39,32,66,41,32,40,40,66,32,40,67,
+39,32,67,41,41,32,40,67,32,40,40,40,67,39,32,67,39,41,32,40,
+40,66,32,95,49,51,49,41,32,95,55,54,56,41,41,32,95,55,54,54,
+41,41,41,41,41,32,40,67,32,40,95,56,56,52,32,95,55,55,52,41,
+41,41,41,41,32,40,40,67,39,32,67,41,32,40,67,32,95,55,56,56,
+41,41,41,41,41,41,32,95,55,56,51,41,41,32,40,40,65,32,58,55,
+56,51,32,40,95,56,56,52,32,95,56,56,54,41,41,32,40,40,65,32,
+58,55,56,52,32,40,40,83,32,40,40,40,67,39,32,83,39,41,32,40,
+40,66,32,83,41,32,95,55,54,51,41,41,32,40,40,40,67,39,32,40,
+67,39,32,40,67,39,32,67,41,41,41,32,40,40,66,32,67,41,32,40,
+40,66,32,40,40,67,39,32,67,39,41,32,40,40,66,32,95,49,51,49,
+41,32,95,55,54,55,41,41,41,32,40,40,66,32,40,40,67,39,32,95,
+49,51,49,41,32,95,55,54,53,41,41,32,95,55,55,48,41,41,41,41,
+32,40,95,56,56,50,32,40,95,57,53,54,32,40,40,79,32,35,55,57,
+41,32,75,41,41,41,41,41,41,32,95,55,56,53,41,41,32,40,40,65,
+32,58,55,56,53,32,40,40,40,83,39,32,83,41,32,40,40,66,32,40,
+40,67,39,32,83,41,32,95,55,54,51,41,41,32,40,40,40,83,39,32,
+40,83,39,32,67,41,41,32,40,40,66,32,40,66,32,40,40,83,39,32,
+83,39,41,32,95,55,54,51,41,41,41,32,40,40,40,67,39,32,40,67,
+39,32,40,67,39,32,67,41,41,41,32,40,40,40,67,39,32,67,39,41,
+32,40,40,66,32,67,39,41,32,40,40,66,32,95,49,51,49,41,32,95,
+55,54,56,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,
+95,49,51,49,41,32,95,55,54,56,41,41,32,95,55,54,54,41,41,41,
+32,95,55,55,52,41,41,41,32,40,40,66,32,40,66,32,40,67,39,32,
+67,41,41,41,32,40,40,40,67,39,32,67,39,41,32,40,40,66,32,67,
+39,41,32,40,40,66,32,95,49,51,49,41,32,95,55,54,57,41,41,41,
+32,40,40,40,67,39,32,66,41,32,40,40,66,32,95,49,51,49,41,32,
+95,55,54,55,41,41,32,95,55,54,53,41,41,41,41,41,41,32,95,55,
+56,54,41,41,32,40,40,65,32,58,55,56,54,32,40,40,67,32,40,40,
+40,83,39,32,83,39,41,32,95,55,54,54,41,32,40,95,56,56,52,32,
+40,95,56,56,50,32,40,95,57,53,54,32,40,40,79,32,35,54,54,41,
+32,75,41,41,41,41,41,41,32,73,41,41,32,40,40,65,32,58,55,56,
+55,32,40,95,56,56,53,32,40,95,56,56,50,32,40,95,57,53,54,32,
+34,83,39,34,41,41,41,41,32,40,40,65,32,58,55,56,56,32,40,95,
+56,56,53,32,40,95,56,56,50,32,40,95,57,53,54,32,34,67,39,34,
+41,41,41,41,32,40,40,65,32,58,55,56,57,32,40,40,67,32,40,40,
+83,32,95,55,54,51,41,32,73,41,41,32,40,40,66,32,40,40,67,39,
+32,40,67,32,40,40,40,67,39,32,67,41,32,40,40,83,32,40,40,40,
+67,39,32,83,39,41,32,40,40,66,32,95,49,51,49,41,32,95,55,54,
+53,41,41,32,95,55,54,54,41,41,32,40,40,40,67,39,32,67,41,32,
+40,40,83,32,40,40,40,67,39,32,83,39,41,32,40,40,66,32,95,49,
+51,49,41,32,95,55,54,55,41,41,32,95,55,54,53,41,41,32,40,40,
+40,67,39,32,67,41,32,40,40,83,32,40,40,40,67,39,32,83,39,41,
+32,40,40,66,32,95,49,51,49,41,32,95,55,54,56,41,41,32,95,55,
+54,54,41,41,32,40,40,40,67,39,32,67,41,32,40,40,83,32,40,40,
+40,67,39,32,83,39,41,32,40,40,66,32,95,49,51,49,41,32,95,55,
+54,55,41,41,32,95,55,54,55,41,41,32,40,40,40,67,39,32,67,41,
+32,40,40,83,32,40,40,40,67,39,32,83,39,41,32,40,40,66,32,95,
+49,51,49,41,32,95,55,54,56,41,41,32,95,55,54,56,41,41,32,40,
+40,40,83,39,32,83,41,32,40,40,66,32,40,83,32,95,55,54,51,41,
+41,32,95,55,57,48,41,41,32,40,40,40,83,39,32,66,41,32,40,40,
+40,67,39,32,67,39,41,32,40,40,66,32,95,49,51,49,41,32,95,55,
+54,57,41,41,32,95,55,54,53,41,41,32,95,55,57,48,41,41,41,41,
+32,40,95,56,56,50,32,40,95,57,53,54,32,40,40,79,32,35,56,50,
+41,32,75,41,41,41,41,41,41,32,40,95,56,56,50,32,40,95,57,53,
+54,32,34,66,39,34,41,41,41,41,41,32,40,95,56,56,50,32,40,95,
+57,53,54,32,40,40,79,32,35,56,53,41,32,75,41,41,41,41,41,41,
+32,40,95,56,56,50,32,40,95,57,53,54,32,40,40,79,32,35,57,48,
+41,32,75,41,41,41,41,41,41,32,40,95,56,56,50,32,40,95,57,53,
+54,32,40,40,79,32,35,54,53,41,32,75,41,41,41,41,41,41,32,95,
+55,56,57,41,41,32,95,55,56,57,41,41,41,32,40,40,65,32,58,55,
+57,48,32,40,40,83,32,40,40,40,67,39,32,83,39,41,32,40,40,66,
+32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,67,32,40,40,67,
+32,83,39,41,32,75,41,41,32,40,90,32,75,41,41,41,32,40,90,32,
+75,41,41,41,41,32,40,40,66,32,40,66,32,85,41,41,32,40,40,66,
+32,40,40,83,39,32,40,67,39,32,66,41,41,32,40,67,32,40,40,67,
+32,61,61,41,32,35,54,41,41,41,41,32,40,40,66,32,40,66,32,85,
+41,41,32,40,40,66,32,40,40,83,39,32,67,41,32,40,67,32,40,40,
+95,50,50,51,32,95,49,52,51,41,32,40,40,79,32,35,55,53,41,32,
+75,41,41,41,41,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,
+39,32,83,41,32,40,40,67,32,40,40,67,32,83,39,41,32,75,41,41,
+32,40,40,40,83,39,32,40,67,39,32,66,41,41,32,40,40,40,83,39,
+32,67,41,32,40,40,40,83,39,32,80,41,32,75,41,32,40,90,32,75,
+41,41,41,32,40,90,32,75,41,41,41,32,40,40,66,32,40,66,32,85,
+41,41,32,40,40,40,83,39,32,66,41,32,40,40,66,32,40,67,39,32,
+66,41,41,32,40,67,32,40,40,67,32,61,61,41,32,35,54,41,41,41,
+41,32,40,40,66,32,40,66,32,85,41,41,32,40,40,40,83,39,32,66,
+41,32,80,41,32,40,40,40,83,39,32,66,41,32,40,40,66,32,40,67,
+39,32,66,41,41,32,40,67,32,40,40,95,50,50,51,32,95,49,52,49,
+41,32,35,55,53,41,41,41,41,32,40,40,40,67,39,32,40,83,39,32,
+67,41,41,32,40,40,66,32,40,66,32,40,83,32,40,40,67,32,40,95,
+50,50,51,32,95,49,52,51,41,41,32,75,41,41,41,41,32,40,40,40,
+67,39,32,40,83,39,32,67,41,41,32,40,40,66,32,40,66,32,40,83,
+32,40,40,67,32,40,95,50,50,51,32,95,49,52,51,41,41,32,40,40,
+79,32,35,53,48,41,32,75,41,41,41,41,41,32,40,40,40,67,39,32,
+66,41,32,40,40,66,32,67,41,32,40,67,32,40,40,67,32,40,95,50,
+50,51,32,95,49,52,51,41,41,32,40,40,79,32,35,53,49,41,32,75,
+41,41,41,41,41,32,40,95,56,56,48,32,40,95,56,56,50,32,40,95,
+57,53,54,32,34,75,52,34,41,41,41,41,41,41,32,40,95,56,56,48,
+32,40,95,56,56,50,32,40,95,57,53,54,32,34,75,51,34,41,41,41,
+41,41,41,32,40,95,56,56,48,32,40,95,56,56,50,32,40,95,57,53,
+54,32,34,75,50,34,41,41,41,41,41,41,41,41,41,41,41,41,32,40,
+90,32,75,41,41,41,32,75,41,41,41,41,41,41,41,32,95,56,56,48,
+41,41,32,40,40,65,32,58,55,57,49,32,34,46,109,104,115,99,97,99,
+104,101,34,41,32,40,40,65,32,58,55,57,50,32,40,40,66,32,40,66,
+32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,41,32,40,40,66,
+32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,32,40,40,66,32,
+40,66,32,40,66,32,67,41,41,41,32,40,40,66,32,40,66,32,67,41,
+41,32,80,41,41,41,41,41,32,40,40,65,32,58,55,57,51,32,40,85,
+32,40,90,32,40,90,32,40,90,32,40,90,32,75,41,41,41,41,41,41,
+32,40,40,65,32,58,55,57,52,32,40,85,32,40,75,32,40,90,32,40,
+90,32,40,90,32,75,41,41,41,41,41,41,32,40,40,65,32,58,55,57,
+53,32,40,85,32,40,75,50,32,40,90,32,40,90,32,75,41,41,41,41,
+41,32,40,40,65,32,58,55,57,54,32,40,85,32,40,75,51,32,40,90,
+32,75,41,41,41,41,32,40,40,65,32,58,55,57,55,32,40,85,32,40,
+75,52,32,75,41,41,41,32,40,40,65,32,58,55,57,56,32,40,85,32,
+40,75,52,32,65,41,41,41,32,40,40,65,32,58,55,57,57,32,40,40,
+40,83,39,32,40,67,39,32,40,67,39,32,40,95,51,53,32,95,49,54,
+57,55,41,41,41,41,32,95,56,48,49,41,32,40,40,66,32,85,41,32,
+40,40,66,32,40,66,32,40,66,32,40,40,95,51,53,32,95,49,54,57,
+55,41,32,95,49,55,50,53,41,41,41,41,32,40,40,40,67,39,32,66,
+41,32,40,40,66,32,40,67,39,32,40,67,39,32,40,40,83,39,32,40,
+95,51,53,32,95,49,54,57,55,41,41,32,40,40,66,32,40,95,51,55,
+32,95,49,54,57,55,41,41,32,95,50,52,41,41,41,41,41,32,40,40,
+66,32,40,66,32,40,66,32,40,66,32,85,41,41,41,41,32,40,40,66,
+32,40,66,32,40,66,32,40,66,32,40,40,95,51,53,32,95,49,54,57,
+55,41,32,95,49,55,50,53,41,41,41,41,41,32,40,40,40,83,39,32,
+66,41,32,40,40,66,32,40,67,39,32,66,41,41,32,40,40,66,32,40,
+66,32,40,67,39,32,40,95,51,54,32,95,49,54,57,55,41,41,41,41,
+32,40,40,40,67,39,32,66,41,32,40,66,39,32,40,40,66,32,95,50,
+56,50,41,32,40,40,66,32,40,95,52,56,32,95,49,54,57,55,41,41,
+32,40,40,40,67,39,32,40,95,53,57,53,32,95,51,49,53,41,41,32,
+95,55,57,51,41,32,35,48,41,41,41,41,41,32,40,40,66,32,40,66,
+32,40,95,50,56,50,32,95,49,55,49,55,41,41,41,32,40,40,66,32,
+40,66,32,40,95,53,48,52,32,34,99,111,109,98,105,110,97,116,111,114,
+32,99,111,110,118,101,114,115,105,111,110,32,34,41,41,41,32,40,40,40,
+67,39,32,40,67,39,32,95,53,48,52,41,41,32,40,40,66,32,40,66,
+32,40,95,49,56,54,50,32,35,54,41,41,41,32,40,40,66,32,40,66,
+32,40,95,49,56,52,50,32,95,51,49,54,41,41,41,32,40,67,32,40,
+95,53,55,54,32,95,51,49,48,41,41,41,41,41,32,34,109,115,34,41,
+41,41,41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,
+40,83,39,32,40,95,51,54,32,95,49,54,57,55,41,41,41,32,40,40,
+40,67,39,32,66,41,32,40,40,66,32,95,50,56,50,41,32,40,40,66,
+32,40,95,52,56,32,95,49,54,57,55,41,41,32,40,40,40,67,39,32,
+40,95,53,57,53,32,95,51,49,53,41,41,32,95,55,57,51,41,32,35,
+51,41,41,41,41,32,40,40,66,32,40,95,50,56,50,32,95,49,55,49,
+55,41,41,32,40,40,66,32,40,95,53,48,52,32,34,99,111,109,98,105,
+110,97,116,111,114,115,58,92,49,48,38,34,41,41,32,95,56,52,51,41,
+41,41,41,41,32,40,40,66,32,40,66,32,40,95,51,55,32,95,49,54,
+57,55,41,41,41,32,40,67,32,80,41,41,41,41,41,41,41,41,32,40,
+95,52,51,48,32,40,85,32,40,40,40,67,39,32,40,67,39,32,79,41,
+41,32,40,40,40,67,39,32,66,41,32,80,41,32,95,55,55,53,41,41,
+32,75,41,41,41,41,41,41,41,41,32,40,40,65,32,58,56,48,48,32,
+40,40,67,32,40,40,40,83,39,32,95,49,51,50,41,32,95,55,57,56,
+41,32,40,40,66,32,40,40,95,51,53,32,95,49,54,57,55,41,32,40,
+40,95,49,55,48,56,32,95,55,57,49,41,32,95,49,54,57,49,41,41,
+41,32,40,40,66,32,40,80,32,40,40,95,51,55,32,95,49,54,57,55,
+41,32,95,56,49,53,41,41,41,32,40,40,40,83,39,32,66,41,32,40,
+40,66,32,40,95,51,54,32,95,49,54,57,55,41,41,32,40,40,40,67,
+39,32,95,50,56,50,41,32,40,40,66,32,40,95,52,56,32,95,49,54,
+57,55,41,41,32,40,40,40,83,39,32,95,49,51,48,41,32,95,55,57,
+55,41,32,40,40,40,67,39,32,40,95,53,57,53,32,95,51,49,53,41,
+41,32,95,55,57,51,41,32,35,48,41,41,41,41,32,40,40,95,50,56,
+50,32,95,49,55,49,55,41,32,40,40,95,53,48,52,32,34,76,111,97,
+100,105,110,103,32,115,97,118,101,100,32,99,97,99,104,101,32,34,41,32,
+40,40,95,49,56,52,50,32,40,95,52,50,52,32,95,49,53,57,41,41,
+32,95,55,57,49,41,41,41,41,41,41,32,40,40,66,32,40,40,83,39,
+32,40,95,51,53,32,95,49,54,57,55,41,41,32,95,49,55,48,48,41,
+41,32,40,40,66,32,40,40,67,39,32,66,41,32,40,40,66,32,40,95,
+51,54,32,95,49,54,57,55,41,41,32,95,49,55,48,52,41,41,41,32,
+95,56,48,52,41,41,41,41,41,41,41,32,40,40,95,51,55,32,95,49,
+54,57,55,41,32,95,56,49,53,41,41,41,32,40,40,65,32,58,56,48,
+49,32,40,40,40,83,39,32,40,67,39,32,40,67,39,32,40,95,51,53,
+32,95,49,54,57,55,41,41,41,41,32,40,40,66,32,40,66,32,95,49,
+50,55,57,41,41,32,95,56,48,50,41,41,32,40,40,66,32,85,41,32,
+40,40,66,32,40,67,32,66,41,41,32,40,40,66,32,90,41,32,40,40,
+40,67,39,32,66,41,32,40,40,66,32,40,67,39,32,40,95,51,54,32,
+95,49,54,57,55,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,
+66,32,95,50,56,50,41,32,40,40,66,32,40,95,52,56,32,95,49,54,
+57,55,41,41,32,40,40,40,67,39,32,40,95,53,57,53,32,95,51,49,
+53,41,41,32,95,55,57,51,41,32,35,48,41,41,41,41,32,40,40,66,
+32,40,95,50,56,50,32,95,49,55,49,55,41,41,32,40,40,66,32,40,
+95,53,48,52,32,34,116,111,116,97,108,32,105,109,112,111,114,116,32,116,
+105,109,101,32,32,32,32,32,34,41,41,32,40,40,40,67,39,32,95,53,
+48,52,41,32,40,40,66,32,40,95,49,56,54,50,32,35,54,41,41,32,
+40,95,49,56,52,50,32,95,51,49,54,41,41,41,32,34,109,115,34,41,
+41,41,41,41,41,32,40,40,66,32,40,95,51,55,32,95,49,54,57,55,
+41,41,32,40,40,40,83,39,32,80,41,32,40,40,66,32,40,95,50,56,
+50,32,40,95,52,51,48,32,95,49,51,49,53,41,41,41,32,40,40,66,
+32,40,95,50,56,50,32,40,95,52,51,49,32,95,56,49,48,41,41,41,
+32,40,40,66,32,40,95,50,56,50,32,95,49,49,48,55,41,41,32,95,
+56,49,52,41,41,41,41,32,73,41,41,41,41,41,41,41,41,32,40,40,
+65,32,58,56,48,50,32,40,40,66,32,40,66,32,40,40,95,51,53,32,
+95,49,50,56,51,41,32,40,95,49,50,56,53,32,95,56,49,52,41,41,
+41,41,32,40,40,40,83,39,32,40,83,39,32,67,41,41,32,40,40,66,
+32,40,40,83,39,32,67,41,32,95,49,49,49,52,41,41,32,40,40,66,
+32,40,66,32,40,40,95,51,53,32,95,49,50,56,51,41,32,40,95,49,
+50,56,53,32,95,56,49,50,41,41,41,41,32,40,40,66,32,40,40,83,
+39,32,40,67,39,32,40,95,51,54,32,95,49,50,56,51,41,41,41,32,
+40,40,40,83,39,32,40,83,39,32,95,50,56,50,41,41,32,40,40,66,
+32,40,66,32,40,95,52,56,32,95,49,50,56,51,41,41,41,32,40,95,
+52,55,50,32,95,49,48,55,56,41,41,41,32,40,40,66,32,40,66,32,
+40,95,50,56,50,32,95,50,55,41,41,41,32,40,40,66,32,40,66,32,
+40,95,53,48,52,32,34,114,101,99,117,114,115,105,118,101,32,109,111,100,
+117,108,101,58,32,34,41,41,41,32,40,40,40,67,39,32,66,41,32,40,
+40,66,32,95,53,48,52,41,32,95,49,48,56,56,41,41,32,40,40,66,
+32,40,95,53,48,52,32,34,44,32,105,109,112,111,114,116,32,99,104,97,
+105,110,58,32,34,41,41,32,40,40,66,32,95,49,56,54,49,41,32,40,
+95,52,51,49,32,95,49,48,56,56,41,41,41,41,41,41,41,41,41,32,
+40,40,66,32,40,40,83,39,32,40,95,51,54,32,95,49,50,56,51,41,
+41,32,40,40,66,32,40,95,50,56,50,32,95,49,50,56,54,41,41,32,
+40,40,40,67,39,32,40,83,39,32,95,56,49,51,41,41,32,40,40,40,
+67,39,32,66,41,32,95,53,48,51,41,32,95,56,49,50,41,41,32,73,
+41,41,41,41,32,40,40,40,83,39,32,40,83,39,32,40,95,51,54,32,
+95,49,50,56,51,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,
+66,32,95,50,56,50,41,32,40,40,66,32,40,95,52,56,32,95,49,50,
+56,51,41,41,32,40,40,40,67,39,32,40,95,53,57,53,32,95,51,49,
+53,41,41,32,95,55,57,51,41,32,35,48,41,41,41,41,32,40,40,66,
+32,40,95,50,56,50,32,95,49,50,56,57,41,41,32,40,40,66,32,40,
+95,50,56,50,32,95,49,55,49,55,41,41,32,40,40,66,32,40,95,53,
+48,52,32,34,105,109,112,111,114,116,105,110,103,32,34,41,41,32,95,49,
+48,56,56,41,41,41,41,41,32,40,40,40,83,39,32,40,83,39,32,40,
+95,51,53,32,95,49,50,56,51,41,41,41,32,95,56,48,51,41,32,40,
+40,66,32,40,66,32,85,41,41,32,40,40,40,83,39,32,40,83,39,32,
+66,41,41,32,40,40,66,32,40,66,32,40,83,39,32,40,83,39,32,66,
+41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,95,
+51,54,32,95,49,50,56,51,41,41,41,41,41,32,40,40,40,67,39,32,
+66,41,32,40,66,39,32,40,66,39,32,40,40,66,32,95,50,56,50,41,
+32,40,40,66,32,40,95,52,56,32,95,49,50,56,51,41,41,32,40,40,
+40,67,39,32,40,95,53,57,53,32,95,51,49,53,41,41,32,95,55,57,
+51,41,32,35,48,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,
+66,32,40,95,50,56,50,32,95,49,50,56,57,41,41,41,41,32,40,40,
+66,32,40,66,32,40,66,32,40,95,50,56,50,32,95,49,55,49,55,41,
+41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,95,53,48,52,32,
+34,105,109,112,111,114,116,105,110,103,32,100,111,110,101,32,34,41,41,41,
+41,32,40,40,40,67,39,32,66,41,32,40,66,39,32,40,40,66,32,95,
+53,48,52,41,32,95,49,48,56,56,41,41,41,32,40,40,66,32,40,66,
+32,40,95,53,48,52,32,34,44,32,34,41,41,41,32,40,40,40,83,39,
+32,40,83,39,32,95,53,48,52,41,41,32,40,40,66,32,40,66,32,40,
+95,49,56,52,50,32,95,51,49,54,41,41,41,32,40,95,53,55,53,32,
+95,51,49,48,41,41,41,32,40,40,66,32,40,66,32,40,95,53,48,52,
+32,34,109,115,32,40,34,41,41,41,32,40,40,40,67,39,32,66,41,32,
+40,40,66,32,95,53,48,52,41,32,40,95,49,56,52,50,32,95,51,49,
+54,41,41,41,32,40,40,66,32,40,95,53,48,52,32,34,32,43,32,34,
+41,41,32,40,40,40,67,39,32,95,53,48,52,41,32,40,95,49,56,52,
+50,32,95,51,49,54,41,41,32,40,40,79,32,35,52,49,41,32,75,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,40,67,39,
+32,40,67,39,32,66,41,41,32,40,40,66,32,66,39,41,32,40,40,66,
+32,66,39,41,32,40,40,66,32,66,39,41,32,40,40,66,32,40,66,32,
+40,95,51,54,32,95,49,50,56,51,41,41,41,32,40,40,40,67,39,32,
+40,83,39,32,95,50,56,50,41,41,32,40,40,66,32,40,66,32,40,95,
+52,56,32,95,49,50,56,51,41,41,41,32,40,40,40,67,39,32,66,41,
+32,40,40,66,32,95,49,51,49,41,32,95,55,57,55,41,41,32,40,40,
+67,32,40,95,50,50,52,32,95,49,48,55,56,41,41,32,40,95,49,48,
+56,51,32,34,73,110,116,101,114,97,99,116,105,118,101,34,41,41,41,41,
+41,32,40,40,66,32,40,95,50,56,50,32,95,49,50,56,57,41,41,32,
+40,40,66,32,40,95,50,56,50,32,95,49,55,49,55,41,41,32,40,40,
+66,32,40,95,53,48,52,32,34,108,111,97,100,101,100,32,34,41,41,32,
+95,49,48,56,56,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,
+66,32,40,66,32,40,66,32,40,40,95,51,53,32,95,49,50,56,51,41,
+32,95,49,50,56,56,41,41,41,41,41,32,40,40,40,83,39,32,66,41,
+32,40,66,39,32,40,66,39,32,40,40,66,32,40,67,39,32,40,95,51,
+54,32,95,49,50,56,51,41,41,41,32,40,40,66,32,40,66,32,40,95,
+50,56,50,32,95,49,50,56,55,41,41,41,32,95,56,49,55,41,41,41,
+41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,95,51,55,
+32,95,49,50,56,51,41,41,41,41,41,32,40,40,40,67,39,32,66,41,
+32,40,66,39,32,40,66,39,32,80,41,41,41,32,40,40,66,32,40,66,
+32,40,95,53,55,53,32,95,51,49,48,41,41,41,32,40,95,53,55,53,
+32,95,51,49,48,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,66,32,
+40,66,32,40,95,51,54,32,95,49,50,56,51,41,41,41,32,40,40,40,
+67,39,32,66,41,32,40,40,66,32,95,50,56,50,41,32,40,40,66,32,
+40,95,52,56,32,95,49,50,56,51,41,41,32,40,40,40,67,39,32,40,
+95,53,57,53,32,95,51,49,53,41,41,32,95,55,57,51,41,32,35,48,
+41,41,41,41,32,40,40,66,32,40,95,50,56,50,32,95,49,50,56,57,
+41,41,32,40,40,66,32,40,95,50,56,50,32,95,49,55,49,55,41,41,
+32,40,40,66,32,40,95,53,48,52,32,34,105,109,112,111,114,116,105,110,
+103,32,99,97,99,104,101,100,32,34,41,41,32,95,49,48,56,56,41,41,
+41,41,41,41,32,40,40,66,32,40,95,51,55,32,95,49,50,56,51,41,
+41,32,40,40,67,32,80,41,32,40,40,95,53,56,49,32,95,51,49,48,
+41,32,40,95,51,57,50,32,35,48,41,41,41,41,41,41,41,41,32,40,
+40,65,32,58,56,48,51,32,40,40,66,32,40,66,32,40,40,95,51,53,
+32,95,49,50,56,51,41,32,40,95,49,50,56,57,32,95,49,55,50,53,
+41,41,41,41,32,40,40,40,83,39,32,40,83,39,32,66,41,41,32,40,
+40,66,32,40,66,32,40,95,51,53,32,95,49,50,56,51,41,41,41,32,
+40,40,66,32,40,66,32,95,49,50,56,57,41,41,32,95,56,48,54,41,
+41,41,32,40,40,66,32,40,66,32,40,66,32,85,41,41,41,32,40,40,
+66,32,40,66,32,40,66,32,40,40,83,39,32,66,41,32,40,40,66,32,
+40,95,51,53,32,95,49,50,56,51,41,41,32,40,40,66,32,95,49,50,
+56,57,41,32,95,49,55,52,49,41,41,41,41,41,41,32,40,40,40,67,
+39,32,40,67,39,32,40,67,39,32,66,41,41,41,32,40,40,66,32,40,
+66,32,66,39,41,41,32,40,40,66,32,40,66,32,40,66,32,67,41,41,
+41,32,40,40,40,67,39,32,67,41,32,40,40,66,32,40,40,67,39,32,
+67,39,41,32,40,40,66,32,67,39,41,32,40,40,66,32,83,39,41,32,
+40,40,66,32,40,67,39,32,40,95,51,54,32,95,49,50,56,51,41,41,
+41,32,40,40,40,83,39,32,40,83,39,32,95,50,56,50,41,41,32,40,
+40,66,32,40,66,32,40,95,52,56,32,95,49,50,56,51,41,41,41,32,
+40,95,50,50,52,32,95,49,48,55,56,41,41,41,32,40,40,66,32,40,
+66,32,40,95,50,56,50,32,95,50,55,41,41,41,32,40,40,66,32,40,
+66,32,40,95,53,48,52,32,34,109,111,100,117,108,101,32,110,97,109,101,
+32,100,111,101,115,32,110,111,116,32,97,103,114,101,101,32,119,105,116,104,
+32,102,105,108,101,32,110,97,109,101,58,32,34,41,41,41,32,40,40,40,
+67,39,32,66,41,32,40,40,66,32,95,53,48,52,41,32,95,49,48,56,
+56,41,41,32,40,40,66,32,40,95,53,48,52,32,40,40,79,32,35,51,
+50,41,32,75,41,41,41,32,95,49,48,56,56,41,41,41,41,41,41,41,
+41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,83,41,
+41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,
+32,40,83,39,32,40,66,32,40,40,95,51,53,32,95,49,50,56,51,41,
+32,40,95,49,50,56,57,32,95,49,55,50,53,41,41,41,41,41,41,41,
+41,32,40,40,40,83,39,32,66,41,32,40,66,39,32,40,66,39,32,40,
+66,39,32,40,40,66,32,40,83,39,32,66,41,41,32,40,40,66,32,40,
+66,32,40,95,51,53,32,95,49,50,56,51,41,41,41,32,40,40,66,32,
+40,66,32,40,95,50,56,50,32,40,40,95,50,57,52,32,95,49,50,56,
+49,41,32,95,52,53,52,41,41,41,41,32,40,40,66,32,40,95,52,54,
+32,95,49,50,56,51,41,41,32,95,56,48,50,41,41,41,41,41,41,41,
+41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
+32,40,66,32,85,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,
+40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
+32,40,40,95,51,53,32,95,49,50,56,51,41,32,40,95,49,50,56,57,
+32,95,49,55,50,53,41,41,41,41,41,41,41,41,41,41,41,32,40,40,
+40,67,39,32,40,67,39,32,40,67,39,32,66,41,41,41,32,40,40,66,
+32,40,66,32,66,39,41,41,32,40,40,66,32,40,66,32,40,66,32,40,
+67,39,32,40,67,39,32,66,41,41,41,41,41,32,40,40,40,83,39,32,
+66,41,32,40,66,39,32,40,66,39,32,40,66,39,32,40,40,66,32,67,
+39,41,32,40,40,66,32,67,39,41,32,40,40,66,32,40,83,39,32,40,
+95,51,54,32,95,49,50,56,51,41,41,41,32,40,40,40,67,39,32,66,
+41,32,40,40,66,32,95,50,56,50,41,32,40,40,66,32,40,95,52,56,
+32,95,49,50,56,51,41,41,32,40,40,40,67,39,32,40,95,53,57,53,
+32,95,51,49,53,41,41,32,95,55,57,51,41,32,35,50,41,41,41,41,
+32,40,40,66,32,40,95,50,56,50,32,95,49,50,56,57,41,41,32,40,
+40,66,32,40,95,50,56,50,32,95,49,55,49,55,41,41,32,40,40,66,
+32,40,95,53,48,52,32,34,116,121,112,101,32,99,104,101,99,107,101,100,
+58,92,49,48,38,34,41,41,32,40,40,40,67,39,32,95,53,48,52,41,
+32,40,95,49,53,49,53,32,95,49,48,49,56,41,41,32,34,45,45,45,
+45,45,92,49,48,38,34,41,41,41,41,41,41,41,41,41,41,41,41,32,
+40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,
+39,32,40,67,39,32,40,67,39,32,66,41,41,41,41,41,41,41,32,40,
+40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
+32,40,40,83,39,32,40,95,51,53,32,95,49,50,56,51,41,41,32,40,
+40,66,32,40,95,50,56,50,32,40,95,51,55,32,95,49,50,56,51,41,
+41,41,32,40,40,66,32,40,95,50,56,50,32,95,50,52,41,41,32,95,
+49,51,49,53,41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,
+66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
+85,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
+40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,40,95,51,53,
+32,95,49,50,56,51,41,32,40,95,49,50,56,57,32,95,49,55,50,53,
+41,41,41,41,41,41,41,41,41,41,32,40,40,40,67,39,32,66,41,32,
+40,66,39,32,40,66,39,32,40,66,39,32,40,66,39,32,40,66,39,32,
+40,40,66,32,40,83,39,32,66,41,41,32,40,40,66,32,40,66,32,40,
+95,51,54,32,95,49,50,56,51,41,41,41,32,40,40,40,67,39,32,66,
+41,32,40,40,66,32,95,50,56,50,41,32,40,40,66,32,40,95,52,56,
+32,95,49,50,56,51,41,41,32,40,40,40,67,39,32,40,95,53,57,53,
+32,95,51,49,53,41,41,32,95,55,57,51,41,32,35,51,41,41,41,41,
+32,40,40,66,32,40,95,50,56,50,32,95,49,50,56,57,41,41,32,40,
+40,66,32,40,95,50,56,50,32,95,49,55,49,55,41,41,32,40,40,66,
+32,40,95,53,48,52,32,34,100,101,115,117,103,97,114,101,100,58,92,49,
+48,38,34,41,41,32,40,95,49,53,49,53,32,95,56,52,51,41,41,41,
+41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,
+32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,95,51,55,
+32,95,49,50,56,51,41,41,41,41,41,41,41,41,41,32,40,40,40,67,
+39,32,40,67,39,32,40,67,39,32,40,67,39,32,66,41,41,41,41,32,
+40,40,66,32,40,66,32,40,66,32,40,66,32,40,67,39,32,40,67,39,
+32,40,67,39,32,67,41,41,41,41,41,41,41,32,40,40,40,67,39,32,
+40,67,39,32,40,67,39,32,40,67,39,32,66,41,41,41,41,32,40,40,
+66,32,40,66,32,40,66,32,40,66,32,40,67,39,32,66,41,41,41,41,
+41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,67,41,
+41,41,41,41,32,40,40,66,32,40,40,67,39,32,40,67,39,32,66,41,
+41,32,40,40,66,32,40,66,32,40,67,39,32,80,41,41,41,32,40,40,
+66,32,40,40,67,39,32,67,41,32,40,67,32,95,56,48,57,41,41,41,
+32,40,95,53,49,54,32,95,50,56,41,41,41,41,41,32,40,67,32,40,
+95,53,55,54,32,95,51,49,48,41,41,41,41,41,41,32,40,67,32,40,
+95,53,55,54,32,95,51,49,48,41,41,41,41,41,32,40,95,52,52,49,
+32,95,51,49,48,41,41,41,41,41,41,41,41,32,95,56,49,56,41,41,
+41,41,41,32,40,40,66,32,40,40,67,39,32,40,67,39,32,95,49,51,
+50,50,41,41,32,40,40,40,67,39,32,66,41,32,95,52,53,48,41,32,
+40,95,52,51,49,32,95,56,49,48,41,41,41,41,32,40,40,83,32,73,
+41,32,40,90,32,40,90,32,75,41,41,41,41,41,41,41,41,41,32,40,
+95,52,51,48,32,40,85,32,40,75,32,40,90,32,40,90,32,40,40,67,
+32,79,41,32,75,41,41,41,41,41,41,41,41,32,40,40,66,32,40,95,
+52,51,48,32,40,85,32,40,40,40,67,39,32,66,41,32,40,40,67,32,
+40,40,67,32,61,61,41,32,35,53,41,41,32,75,41,41,32,40,85,32,
+40,40,67,32,79,41,32,75,41,41,41,41,41,41,32,40,85,32,40,75,
+32,65,41,41,41,41,41,41,32,40,85,32,40,90,32,75,41,41,41,41,
+41,41,32,40,40,95,49,49,56,49,32,95,49,48,49,52,41,32,95,49,
+49,56,52,41,41,41,41,41,41,41,32,40,40,65,32,58,56,48,52,32,
+40,40,40,83,39,32,83,41,32,40,40,40,67,39,32,40,83,39,32,40,
+67,39,32,95,49,50,56,48,41,41,41,32,40,40,40,67,39,32,66,41,
+32,40,40,66,32,40,67,39,32,40,95,52,55,32,95,49,50,56,51,41,
+41,41,32,40,40,66,32,40,66,32,40,66,32,40,40,95,51,53,32,95,
+49,50,56,51,41,32,95,49,50,56,56,41,41,41,41,32,40,40,66,32,
+40,66,32,40,40,83,39,32,67,41,32,40,40,67,32,40,40,40,67,39,
+32,67,39,41,32,95,49,49,49,52,41,32,95,56,49,52,41,41,32,40,
+40,95,51,55,32,95,49,50,56,51,41,32,95,49,53,54,56,41,41,41,
+41,41,32,40,40,66,32,40,66,32,40,66,32,85,41,41,41,32,40,40,
+66,32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,90,41,41,32,
+40,40,40,67,39,32,66,41,32,40,40,66,32,40,83,39,32,66,41,41,
+32,40,40,66,32,40,66,32,40,95,51,53,32,95,49,50,56,51,41,41,
+41,32,40,40,66,32,40,66,32,40,95,50,56,50,32,95,49,50,56,57,
+41,41,41,32,95,56,48,55,41,41,41,41,32,40,40,40,83,39,32,40,
+83,39,32,66,41,41,32,40,66,32,80,41,41,32,40,40,66,32,40,66,
+32,40,66,32,85,41,41,41,32,40,40,66,32,40,66,32,90,41,41,32,
+40,40,66,32,40,66,32,40,66,32,40,40,83,39,32,40,95,51,53,32,
+95,49,50,56,51,41,41,32,40,40,66,32,40,95,50,56,50,32,95,49,
+50,56,57,41,41,32,95,49,55,52,48,41,41,41,41,41,32,40,40,66,
+32,40,66,32,40,66,32,40,40,67,39,32,66,41,32,40,40,66,32,40,
+95,51,54,32,95,49,50,56,51,41,41,32,40,40,66,32,40,95,50,56,
+50,32,95,49,50,56,57,41,41,32,95,49,55,48,52,41,41,41,41,41,
+41,32,40,66,32,40,40,67,39,32,40,67,39,32,95,50,56,50,41,41,
+32,40,40,66,32,40,66,32,40,95,52,56,32,95,49,50,56,51,41,41,
+41,32,40,67,32,40,95,50,50,52,32,95,49,55,51,55,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,95,
+49,49,48,56,41,32,95,56,49,52,41,41,41,32,73,41,41,32,40,40,
+66,32,40,66,32,89,41,41,32,40,40,66,32,40,66,32,40,66,32,40,
+40,83,39,32,40,95,51,53,32,95,49,50,56,51,41,41,32,40,40,66,
+32,40,95,50,56,50,32,95,49,50,56,53,41,41,32,40,40,66,32,40,
+95,50,56,52,32,95,53,49,56,41,41,32,40,40,40,67,39,32,95,50,
+56,52,41,32,95,49,49,49,52,41,32,95,56,49,52,41,41,41,41,41,
+41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,40,67,39,
+32,95,50,56,50,41,32,40,95,52,56,32,95,49,50,56,51,41,41,41,
+41,41,41,32,40,40,40,67,39,32,66,41,32,40,66,39,32,40,40,66,
+32,40,83,39,32,40,95,51,54,32,95,49,50,56,51,41,41,41,32,40,
+40,40,67,39,32,66,41,32,40,40,66,32,95,50,56,50,41,32,40,40,
+66,32,40,95,52,56,32,95,49,50,56,51,41,41,32,40,40,40,67,39,
+32,40,95,53,57,53,32,95,51,49,53,41,41,32,95,55,57,51,41,32,
+35,48,41,41,41,41,32,40,40,66,32,40,95,50,56,50,32,95,49,50,
+56,57,41,41,32,40,40,66,32,40,95,50,56,50,32,95,49,55,49,55,
+41,41,32,40,40,66,32,40,95,53,48,52,32,34,105,110,118,97,108,105,
+100,97,116,101,32,99,97,99,104,101,100,32,34,41,41,32,40,95,49,56,
+52,50,32,95,49,48,56,48,41,41,41,41,41,41,41,41,32,40,40,66,
+32,40,66,32,40,40,83,39,32,40,95,51,54,32,95,49,50,56,51,41,
+41,32,40,40,66,32,95,49,50,56,54,41,32,95,56,49,54,41,41,41,
+41,32,40,40,66,32,40,40,67,39,32,66,41,32,40,40,66,32,95,50,
+56,50,41,32,40,95,52,55,32,95,49,50,56,51,41,41,41,41,32,40,
+40,66,32,40,66,32,40,95,50,56,50,32,40,95,53,49,54,32,95,53,
+48,50,41,41,41,41,32,40,40,66,32,40,67,32,95,49,49,49,52,41,
+41,32,40,40,66,32,95,56,48,53,41,32,40,40,66,32,40,95,52,51,
+48,32,40,85,32,40,40,66,32,90,41,32,40,40,40,67,39,32,40,67,
+39,32,79,41,41,32,40,40,66,32,80,41,32,95,49,51,49,52,41,41,
+32,75,41,41,41,41,41,32,40,40,66,32,95,49,49,48,55,41,32,95,
+56,49,52,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,65,
+32,58,56,48,53,32,40,40,95,52,51,51,32,40,40,67,32,66,41,32,
+40,40,67,39,32,95,52,51,51,41,32,40,40,66,32,40,67,32,40,95,
+49,49,49,54,32,95,53,48,52,41,41,41,32,40,40,67,32,79,41,32,
+75,41,41,41,41,41,32,95,49,49,48,53,41,41,32,40,40,65,32,58,
+56,48,54,32,40,40,40,83,39,32,40,83,39,32,40,95,51,53,32,95,
+49,54,57,55,41,41,41,32,95,56,48,55,41,32,40,40,40,67,39,32,
+40,67,39,32,80,41,41,32,40,40,66,32,40,40,83,39,32,95,50,56,
+50,41,32,40,40,66,32,40,95,49,48,49,51,32,95,55,54,48,41,41,
+32,40,95,57,55,57,32,95,57,56,49,41,41,41,41,32,40,40,66,32,
+40,66,32,40,95,53,48,52,32,34,70,105,108,101,32,110,111,116,32,102,
+111,117,110,100,58,32,34,41,41,41,32,40,40,66,32,40,40,67,39,32,
+95,53,48,52,41,32,40,95,49,56,52,50,32,95,49,48,56,48,41,41,
+41,32,40,40,66,32,40,95,53,48,52,32,34,92,49,48,38,112,97,116,
+104,61,34,41,41,32,40,40,66,32,40,95,49,56,52,50,32,40,95,52,
+50,52,32,40,95,52,50,52,32,95,49,53,57,41,41,41,41,32,95,55,
+57,53,41,41,41,41,41,41,32,40,85,32,40,40,66,32,40,40,67,39,
+32,40,95,51,53,32,95,49,54,57,55,41,41,32,95,49,55,50,50,41,
+41,32,40,40,66,32,40,66,32,40,95,51,55,32,95,49,54,57,55,41,
+41,41,32,80,41,41,41,41,41,41,32,40,40,65,32,58,56,48,55,32,
+40,40,40,67,39,32,66,41,32,40,40,66,32,95,56,48,56,41,32,95,
+55,57,53,41,41,32,40,40,40,67,39,32,95,53,48,52,41,32,40,40,
+66,32,40,95,52,51,49,32,40,40,67,32,40,40,83,32,40,40,67,32,
+40,95,50,50,51,32,95,49,52,49,41,41,32,35,52,54,41,41,32,73,
+41,41,32,35,52,55,41,41,41,32,95,49,48,56,54,41,41,32,34,46,
+104,115,34,41,41,41,32,40,40,65,32,58,56,48,56,32,40,40,40,67,
+39,32,66,41,32,40,85,32,40,40,95,51,55,32,95,49,54,57,55,41,
+32,95,53,50,49,41,41,41,32,40,40,40,83,39,32,66,41,32,40,40,
+66,32,40,67,39,32,40,40,83,39,32,40,95,51,53,32,95,49,54,57,
+55,41,41,32,40,40,67,32,95,49,55,48,56,41,32,95,49,54,57,49,
+41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,40,
+40,66,32,40,66,32,80,41,41,32,40,67,32,95,56,48,56,41,41,41,
+32,40,40,66,32,40,66,32,40,95,51,55,32,95,49,54,57,55,41,41,
+41,32,40,40,66,32,40,66,32,95,53,50,50,41,41,32,80,41,41,41,
+41,41,32,40,40,66,32,40,67,32,95,53,48,52,41,41,32,40,95,53,
+48,52,32,40,40,79,32,35,52,55,41,32,75,41,41,41,41,41,41,32,
+40,40,65,32,58,56,48,57,32,40,40,66,32,40,66,32,67,41,41,32,
+80,41,41,32,40,40,65,32,58,56,49,48,32,40,85,32,40,90,32,75,
+41,41,41,32,40,40,65,32,58,56,49,49,32,80,41,32,40,40,65,32,
+58,56,49,50,32,40,85,32,75,41,41,32,40,40,65,32,58,56,49,51,
+32,40,40,66,32,85,41,32,40,90,32,95,56,49,49,41,41,41,32,40,
+40,65,32,58,56,49,52,32,40,85,32,65,41,41,32,40,40,65,32,58,
+56,49,53,32,40,40,95,56,49,49,32,95,53,48,50,41,32,95,49,49,
+48,53,41,41,32,40,40,65,32,58,56,49,54,32,40,40,66,32,85,41,
+32,40,40,66,32,40,40,67,39,32,66,41,32,95,56,49,49,41,41,32,
+95,49,49,49,55,41,41,41,32,40,40,65,32,58,56,49,55,32,40,40,
+66,32,85,41,32,40,40,66,32,40,40,67,39,32,66,41,32,40,85,32,
+95,50,56,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,67,32,
+95,56,49,49,41,41,41,41,32,40,40,66,32,67,41,32,40,67,32,95,
+49,49,49,53,41,41,41,41,41,41,32,40,40,65,32,58,56,49,56,32,
+40,85,32,40,40,40,83,39,32,40,67,39,32,40,67,39,32,40,67,39,
+32,40,67,39,32,40,67,39,32,40,67,39,32,66,41,41,41,41,41,41,
+41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
+32,40,66,32,95,50,56,50,41,41,41,41,41,41,41,32,95,49,51,49,
+51,41,41,32,40,40,66,32,40,66,32,40,95,50,56,50,32,40,95,52,
+51,49,32,95,56,54,49,41,41,41,41,32,40,40,66,32,40,66,32,40,
+95,50,56,50,32,95,56,54,48,41,41,41,32,40,40,66,32,95,52,51,
+48,41,32,95,56,49,57,41,41,41,41,41,41,32,40,40,65,32,58,56,
+49,57,32,40,40,66,32,85,41,32,40,40,40,83,39,32,83,41,32,40,
+40,66,32,40,40,83,39,32,83,39,41,32,40,40,67,32,60,41,32,35,
+53,41,41,41,32,40,40,40,67,39,32,83,41,32,40,40,66,32,40,40,
+83,39,32,83,39,41,32,40,40,67,32,60,41,32,35,56,41,41,41,32,
+40,40,66,32,40,67,32,40,40,40,83,39,32,83,39,41,32,40,40,67,
+32,60,41,32,35,57,41,41,32,40,40,67,32,40,40,40,67,39,32,83,
+39,41,32,40,40,67,32,60,41,32,35,49,48,41,41,32,40,85,32,40,
+75,32,95,53,48,50,41,41,41,41,32,40,85,32,40,75,50,32,95,53,
+48,50,41,41,41,41,41,41,32,40,40,66,32,85,41,32,40,40,66,32,
+40,66,32,90,41,41,32,40,40,66,32,40,66,32,40,67,32,66,41,41,
+41,32,40,40,66,32,40,66,32,40,66,32,90,41,41,41,32,40,40,40,
+83,39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,67,41,
+41,32,40,40,40,67,39,32,40,83,39,32,40,67,39,32,83,41,41,41,
+32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,67,
+41,41,41,41,32,40,40,40,83,39,32,66,41,32,40,40,66,32,40,83,
+39,32,66,41,41,32,40,40,66,32,40,66,32,40,83,39,32,40,83,39,
+32,95,53,48,51,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,
+66,41,41,32,40,40,66,32,66,39,41,32,40,40,66,32,40,66,32,80,
+41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,95,50,56,50,
+41,32,40,95,49,48,57,49,32,95,55,54,48,41,41,41,32,95,49,52,
+53,56,41,41,41,41,32,40,40,40,83,39,32,66,41,32,40,40,66,32,
+95,50,56,50,41,32,95,56,57,50,41,41,32,40,40,66,32,40,40,83,
+39,32,95,50,56,50,41,32,95,56,56,49,41,41,32,40,40,66,32,40,
+40,67,39,32,95,56,57,51,41,32,95,56,55,57,41,41,32,40,95,52,
+51,49,32,95,56,55,57,41,41,41,41,41,41,41,41,32,40,40,40,67,
+39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,83,39,32,67,41,
+41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,40,
+67,39,32,40,67,39,32,95,52,53,50,41,41,32,40,40,66,32,40,66,
+32,40,40,67,39,32,66,41,32,80,41,41,41,32,40,40,66,32,40,40,
+83,39,32,66,41,32,40,40,66,32,95,50,56,50,41,32,95,56,56,49,
+41,41,41,32,40,40,66,32,40,40,67,39,32,66,41,32,40,40,66,32,
+95,56,56,48,41,32,95,56,55,57,41,41,41,32,40,40,40,67,39,32,
+66,41,32,40,40,66,32,95,50,56,50,41,32,95,56,57,50,41,41,32,
+95,56,55,57,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,
+32,40,66,32,95,53,48,52,41,41,41,32,40,40,40,67,39,32,66,41,
+32,40,40,66,32,40,67,39,32,95,52,51,48,41,41,32,40,40,40,67,
+39,32,40,67,39,32,40,67,39,32,79,41,41,41,32,40,40,40,67,39,
+32,66,41,32,40,66,39,32,40,40,66,32,95,50,56,50,41,32,40,95,
+49,48,57,49,32,95,55,54,48,41,41,41,41,32,40,95,49,53,51,48,
+32,95,55,54,48,41,41,41,32,75,41,41,41,32,40,40,66,32,40,40,
+95,50,48,55,32,95,50,49,57,41,32,40,40,95,53,56,49,32,95,51,
+49,48,41,32,40,95,51,57,50,32,35,49,41,41,41,41,32,95,52,52,
+57,41,41,41,41,41,32,73,41,41,41,32,40,95,49,48,56,51,32,34,
+36,102,34,41,41,41,32,40,40,66,32,40,66,32,40,95,52,51,48,32,
+40,40,40,67,39,32,79,41,32,40,40,66,32,95,49,48,56,51,41,32,
+40,40,66,32,40,95,53,48,52,32,34,36,120,34,41,41,32,40,95,49,
+56,52,50,32,95,51,49,54,41,41,41,41,32,75,41,41,41,41,32,40,
+40,66,32,40,66,32,40,40,95,50,48,55,32,95,50,49,57,41,32,40,
+40,95,53,56,49,32,95,51,49,48,41,32,40,95,51,57,50,32,35,49,
+41,41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,
+95,53,55,53,32,95,51,49,48,41,41,32,95,52,52,57,41,41,32,95,
+52,52,57,41,41,41,41,41,41,32,40,40,66,32,95,52,51,48,41,32,
+40,40,66,32,40,67,32,40,40,80,32,40,75,50,32,75,41,41,32,40,
+75,50,32,75,41,41,41,41,32,40,40,66,32,90,41,32,40,40,40,67,
+39,32,40,67,39,32,79,41,41,32,40,95,49,48,57,49,32,95,55,54,
+48,41,41,32,75,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,
+67,32,40,40,40,83,39,32,83,39,41,32,40,40,67,32,60,41,32,35,
+54,41,41,32,40,40,67,32,40,40,40,67,39,32,83,39,41,32,40,40,
+67,32,60,41,32,35,55,41,41,32,40,85,32,40,75,50,32,95,53,48,
+50,41,41,41,41,32,40,85,32,40,40,66,32,90,41,32,40,40,40,67,
+39,32,40,67,39,32,79,41,41,32,40,40,66,32,40,67,32,80,41,41,
+32,40,40,66,32,40,95,50,56,50,32,95,56,56,50,41,41,32,95,57,
+53,55,41,41,41,32,75,41,41,41,41,41,41,32,40,85,32,40,75,32,
+95,53,48,50,41,41,41,41,41,41,32,40,40,66,32,40,83,32,40,40,
+40,83,39,32,83,39,41,32,40,40,67,32,60,41,32,35,50,41,41,32,
+40,40,67,32,40,40,40,83,39,32,83,39,41,32,40,40,67,32,60,41,
+32,35,51,41,41,32,40,40,67,32,40,40,40,67,39,32,83,39,41,32,
+40,40,67,32,60,41,32,35,52,41,41,32,40,85,32,40,75,50,32,95,
+53,48,50,41,41,41,41,32,40,85,32,40,40,40,67,39,32,40,67,39,
+32,79,41,41,32,40,40,40,83,39,32,66,41,32,80,41,32,40,40,66,
+32,95,56,50,50,41,32,40,95,57,55,57,32,95,57,56,49,41,41,41,
+41,32,75,41,41,41,41,41,32,40,85,32,40,75,50,32,95,53,48,50,
+41,41,41,41,41,41,32,40,40,40,83,39,32,67,41,32,40,40,66,32,
+40,40,67,39,32,83,39,41,32,40,40,67,32,60,41,32,35,49,41,41,
+41,32,40,40,66,32,85,41,32,40,90,32,40,40,66,32,85,41,32,40,
+90,32,40,90,32,40,40,66,32,90,41,32,40,40,40,67,39,32,40,67,
+39,32,79,41,41,32,40,40,40,67,39,32,40,67,39,32,80,41,41,32,
+40,95,49,48,57,49,32,95,55,54,48,41,41,32,40,95,56,56,50,32,
+40,95,57,53,54,32,40,40,79,32,35,55,51,41,32,75,41,41,41,41,
+41,32,75,41,41,41,41,41,41,41,41,41,32,40,40,66,32,85,41,32,
+40,90,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,40,67,
+39,32,95,52,53,50,41,41,32,40,40,66,32,40,66,32,40,66,32,85,
+41,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,40,67,39,
+32,66,41,32,40,66,39,32,40,66,39,32,40,40,66,32,40,67,39,32,
+66,41,41,32,40,40,66,32,40,66,32,80,41,41,32,40,95,49,48,57,
+49,32,95,55,54,48,41,41,41,41,41,41,32,40,40,40,67,39,32,40,
+67,39,32,66,41,41,32,40,40,66,32,66,39,41,32,40,40,66,32,40,
+67,32,95,56,54,52,41,41,32,95,52,52,57,41,41,41,32,40,40,40,
+67,39,32,66,41,32,40,40,66,32,95,53,48,52,41,32,40,40,67,32,
+40,40,67,32,95,52,50,56,41,32,40,40,79,32,95,49,51,52,41,32,
+75,41,41,41,32,95,53,48,50,41,41,41,32,40,40,66,32,40,95,52,
+51,49,32,95,54,54,52,41,41,32,40,40,95,49,57,53,32,95,50,56,
+53,41,32,40,95,52,51,49,32,95,54,54,53,41,41,41,41,41,41,41,
+41,41,32,40,40,95,50,48,53,32,95,50,49,57,41,32,35,48,41,41,
+41,32,73,41,41,41,41,41,41,41,41,32,40,40,65,32,58,56,50,48,
+32,40,40,40,67,39,32,95,57,54,54,41,32,40,40,40,67,39,32,79,
+41,32,40,80,32,95,53,48,50,41,41,32,75,41,41,32,95,53,48,50,
+41,41,32,40,40,65,32,58,56,50,49,32,40,40,40,67,39,32,67,41,
+32,40,40,66,32,40,80,32,40,40,40,67,39,32,40,67,39,32,79,41,
+41,32,40,40,40,83,39,32,66,41,32,80,41,32,40,40,66,32,95,56,
+50,50,41,32,40,95,57,55,57,32,95,57,56,49,41,41,41,41,32,75,
+41,41,41,32,40,40,40,83,39,32,66,41,32,40,40,66,32,40,67,39,
+32,95,53,48,51,41,41,32,40,40,40,67,39,32,66,41,32,80,41,32,
+95,56,51,50,41,41,41,32,40,40,40,67,39,32,40,83,39,32,95,52,
+51,48,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,79,
+41,41,41,32,40,40,66,32,40,66,32,40,83,32,80,41,41,41,32,40,
+40,66,32,40,66,32,40,66,32,95,56,51,50,41,41,41,32,40,40,40,
+67,39,32,66,41,32,40,66,39,32,40,40,66,32,95,57,50,50,41,32,
+95,57,49,55,41,41,41,32,40,40,40,67,39,32,40,67,39,32,79,41,
+41,32,40,40,40,67,39,32,66,41,32,80,41,32,40,40,66,32,40,95,
+50,56,50,32,95,56,50,48,41,41,32,95,57,49,55,41,41,41,32,75,
+41,41,41,41,41,32,75,41,41,32,95,57,54,56,41,41,41,41,32,40,
+75,50,32,95,53,48,50,41,41,41,32,40,40,65,32,58,56,50,50,32,
+40,40,66,32,40,83,32,40,85,32,40,95,49,53,49,51,32,95,55,54,
+48,41,41,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,
+32,40,66,32,85,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,
+40,40,67,39,32,83,41,32,40,40,40,67,39,32,40,67,39,32,67,39,
+41,41,32,40,40,66,32,40,66,32,83,41,41,32,40,40,40,67,39,32,
+40,67,39,32,40,67,39,32,40,83,39,32,40,95,52,51,51,32,95,56,
+56,49,41,41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,
+32,40,67,39,32,67,41,41,32,40,40,67,32,40,40,40,67,39,32,67,
+39,41,32,40,40,66,32,83,39,41,32,95,56,52,56,41,41,32,95,53,
+48,52,41,41,32,40,95,52,51,49,32,95,56,55,57,41,41,41,41,32,
+40,95,52,51,49,32,40,85,32,40,40,40,67,39,32,66,41,32,40,40,
+66,32,80,41,32,40,95,52,51,49,32,40,95,56,51,53,32,95,55,54,
+48,41,41,41,41,32,95,56,50,51,41,41,41,41,41,32,73,41,41,41,
+32,40,40,40,67,39,32,66,41,32,40,40,66,32,95,50,56,50,41,32,
+40,40,66,32,95,52,52,55,41,32,95,52,52,57,41,41,41,32,40,95,
+56,52,49,32,34,36,113,34,41,41,41,41,32,40,40,66,32,40,95,50,
+56,50,32,95,49,48,48,48,41,41,32,40,95,57,54,50,32,40,95,49,
+48,56,51,32,75,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,
+56,50,51,32,40,85,32,40,40,66,32,40,40,67,39,32,95,50,56,52,
+41,32,95,56,50,54,41,41,32,95,56,50,52,41,41,41,32,40,40,65,
+32,58,56,50,52,32,40,40,67,32,83,41,32,40,40,66,32,40,67,32,
+66,41,41,32,40,40,66,32,40,40,83,39,32,40,83,39,32,83,41,41,
+32,40,40,40,67,39,32,67,41,32,40,40,66,32,40,40,67,39,32,67,
+39,41,32,83,39,41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,
+41,32,40,40,67,32,66,41,32,95,56,51,50,41,41,32,40,90,32,75,
+41,41,41,41,32,40,90,32,75,41,41,41,41,32,40,40,66,32,40,66,
+32,40,40,67,39,32,67,41,32,40,40,40,67,39,32,40,67,39,32,83,
+41,41,32,40,40,66,32,40,66,32,40,40,67,39,32,83,41,32,40,67,
+32,95,56,53,52,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
+40,95,50,56,50,32,95,56,51,50,41,41,41,41,32,40,40,66,32,67,
+41,32,40,40,67,39,32,95,56,50,53,41,32,95,57,49,55,41,41,41,
+41,41,32,40,40,66,32,95,56,52,50,41,32,95,56,57,49,41,41,41,
+41,41,32,40,67,32,95,56,50,52,41,41,41,41,41,41,32,40,40,65,
+32,58,56,50,53,32,40,40,66,32,89,41,32,40,40,66,32,40,66,32,
+40,67,32,83,41,41,41,32,40,40,40,67,39,32,40,83,39,32,40,83,
+39,32,40,67,39,32,83,41,41,41,41,32,40,40,40,83,39,32,66,41,
+32,40,40,66,32,40,83,39,32,67,41,41,32,40,40,66,32,40,66,32,
+40,67,32,83,39,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,
+66,32,40,67,32,95,57,50,50,41,41,41,41,41,32,40,40,66,32,40,
+40,67,39,32,40,67,39,32,40,67,39,32,79,41,41,41,32,40,40,66,
+32,40,66,32,40,67,32,80,41,41,41,32,40,40,40,67,39,32,40,67,
+39,32,95,57,54,54,41,41,32,40,40,40,67,39,32,40,67,39,32,79,
+41,41,32,40,67,32,80,41,41,32,75,41,41,32,95,53,48,50,41,41,
+41,41,32,40,40,40,67,39,32,79,41,32,40,40,66,32,40,80,32,40,
+95,57,49,55,32,95,49,48,57,57,41,41,41,32,95,56,50,48,41,41,
+32,75,41,41,41,41,41,41,32,40,40,66,32,40,40,83,39,32,40,83,
+39,32,40,83,39,32,83,41,41,41,32,40,40,66,32,40,66,32,40,66,
+32,40,67,32,66,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
+40,40,83,39,32,40,67,39,32,66,41,41,32,40,67,32,40,40,67,32,
+61,61,41,32,35,48,41,41,41,41,41,41,32,40,40,66,32,40,66,32,
+40,66,32,40,66,32,85,41,41,41,41,32,40,40,66,32,40,66,32,40,
+66,32,40,40,67,39,32,67,41,32,40,67,32,40,95,49,48,57,48,32,
+34,68,97,116,97,46,66,111,111,108,46,111,116,104,101,114,119,105,115,101,
+34,41,41,41,41,41,41,32,67,41,41,41,41,41,41,32,40,40,67,39,
+32,40,67,39,32,40,67,39,32,67,41,41,41,32,40,40,66,32,40,66,
+32,40,66,32,40,67,32,95,57,50,57,41,41,41,41,32,67,41,41,41,
+41,41,32,40,40,66,32,40,66,32,40,66,32,40,67,32,95,57,50,51,
+41,41,41,41,32,67,41,41,41,41,41,32,40,40,65,32,58,56,50,54,
+32,40,40,83,32,83,41,32,40,40,66,32,90,41,32,40,40,66,32,90,
+41,32,40,40,40,83,39,32,67,41,32,40,40,66,32,40,67,32,40,40,
+40,67,39,32,83,39,41,32,40,40,66,32,89,41,32,40,40,40,67,39,
+32,66,41,32,40,66,39,32,80,41,41,32,40,40,40,83,39,32,40,83,
+39,32,67,41,41,32,40,40,66,32,40,66,32,40,67,32,83,39,41,41,
+41,32,40,40,66,32,40,66,32,40,66,32,85,41,41,41,32,40,66,32,
+40,66,32,40,40,67,39,32,40,67,39,32,95,50,56,50,41,41,32,95,
+56,50,55,41,41,41,41,41,41,32,40,40,40,83,39,32,40,83,39,32,
+40,83,39,32,83,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,
+67,32,83,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,
+32,40,67,32,66,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,
+32,40,67,39,32,66,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
+67,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,40,67,39,32,
+67,39,41,32,67,39,41,41,41,41,32,40,66,32,40,66,32,40,40,67,
+39,32,40,67,39,32,95,50,56,50,41,41,32,95,56,50,56,41,41,41,
+41,41,41,32,40,90,32,75,41,41,41,41,41,32,40,40,66,32,40,67,
+39,32,67,41,41,32,40,40,66,32,40,66,32,40,40,67,39,32,83,41,
+32,40,40,67,39,32,95,56,50,57,41,32,40,40,80,32,40,40,40,110,
+111,77,97,116,99,104,32,75,41,32,35,48,41,32,35,48,41,41,32,75,
+41,41,41,41,41,32,40,40,67,32,67,39,41,32,40,40,80,32,40,40,
+40,110,111,77,97,116,99,104,32,75,41,32,35,48,41,32,35,48,41,41,
+32,65,41,41,41,41,41,41,41,41,41,32,40,95,56,52,49,32,34,36,
+109,34,41,41,41,41,32,40,40,66,32,40,66,32,40,95,49,48,54,49,
+32,40,95,53,57,52,32,95,49,48,55,57,41,41,41,41,32,40,40,66,
+32,40,66,32,40,95,50,56,50,32,40,95,52,51,49,32,40,40,83,32,
+73,41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,66,
+32,40,66,32,67,41,41,32,80,41,41,32,95,56,57,48,41,41,41,41,
+41,41,32,40,40,66,32,40,66,32,95,56,54,48,41,41,32,40,40,66,
+32,40,66,32,40,95,50,56,50,32,95,52,50,57,41,41,41,32,40,40,
+67,39,32,40,95,52,53,50,32,95,56,50,49,41,41,32,40,95,56,52,
+49,32,34,36,112,34,41,41,41,41,41,41,41,41,32,40,95,52,51,48,
+32,95,49,48,48,48,41,41,41,41,41,41,32,40,40,65,32,58,56,50,
+55,32,95,56,53,52,41,32,40,40,65,32,58,56,50,56,32,40,40,40,
+83,39,32,66,41,32,95,56,50,55,41,32,40,40,66,32,40,66,32,40,
+95,56,56,48,32,40,95,56,56,50,32,40,95,57,53,54,32,40,40,79,
+32,35,56,57,41,32,75,41,41,41,41,41,41,32,95,56,56,49,41,41,
+41,32,40,40,65,32,58,56,50,57,32,40,40,40,67,39,32,66,41,32,
+40,40,66,32,67,41,32,40,40,40,67,39,32,40,67,39,32,83,41,41,
+32,40,40,40,83,39,32,40,67,39,32,40,67,39,32,66,41,41,41,32,
+40,40,40,67,39,32,66,41,32,40,40,66,32,40,67,39,32,40,83,39,
+32,95,50,56,50,41,41,41,32,40,40,40,67,39,32,66,41,32,40,66,
+39,32,95,56,50,56,41,41,32,40,40,66,32,40,67,32,95,50,56,50,
+41,41,32,40,40,66,32,95,56,51,51,41,32,40,85,32,65,41,41,41,
+41,41,41,32,85,41,41,32,40,40,66,32,40,66,32,40,95,50,56,50,
+32,40,40,95,52,51,51,32,95,50,56,52,41,32,95,50,56,53,41,41,
+41,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,40,67,
+39,32,95,52,53,50,41,41,32,40,40,66,32,40,66,32,40,66,32,40,
+67,32,95,56,50,55,41,41,41,41,32,40,40,66,32,40,40,67,39,32,
+67,41,32,40,40,66,32,40,67,32,95,56,51,52,41,41,32,95,52,52,
+57,41,41,41,32,95,56,55,57,41,41,41,32,40,40,95,50,48,53,32,
+95,50,49,57,41,32,40,40,95,53,56,49,32,95,51,49,48,41,32,40,
+95,51,57,50,32,35,48,41,41,41,41,41,32,73,41,41,41,41,32,40,
+85,32,75,41,41,41,41,32,95,52,53,52,41,41,32,40,40,65,32,58,
+56,51,48,32,40,40,83,32,40,40,83,32,40,40,40,83,39,32,95,49,
+51,49,41,32,40,40,95,53,57,52,32,95,51,51,57,41,32,40,40,95,
+52,48,53,32,95,51,49,49,41,32,40,95,49,51,55,32,95,51,49,50,
+41,41,41,41,32,40,40,67,32,40,95,53,57,51,32,95,51,51,57,41,
+41,32,40,40,95,52,48,53,32,95,51,49,49,41,32,40,95,49,51,56,
+32,95,51,49,50,41,41,41,41,41,32,40,40,66,32,40,95,56,56,48,
+32,40,95,56,55,57,32,40,95,49,48,56,51,32,34,68,97,116,97,46,
+73,110,116,101,103,101,114,46,95,105,110,116,76,105,115,116,84,111,73,110,
+116,101,103,101,114,34,41,41,41,41,32,40,40,66,32,95,56,55,48,41,
+32,40,40,66,32,40,95,52,51,49,32,40,40,95,50,56,52,32,95,56,
+56,50,41,32,95,57,53,48,41,41,41,32,95,51,56,54,41,41,41,41,
+41,32,40,40,66,32,40,95,56,56,48,32,40,95,56,55,57,32,40,95,
+49,48,56,51,32,34,68,97,116,97,46,73,110,116,101,103,101,114,95,84,
+121,112,101,46,95,105,110,116,84,111,73,110,116,101,103,101,114,34,41,41,
+41,41,32,40,40,66,32,95,56,56,50,41,32,40,40,66,32,95,57,53,
+48,41,32,95,51,57,51,41,41,41,41,41,32,40,40,65,32,58,56,51,
+49,32,40,40,40,83,39,32,95,56,56,48,41,32,40,40,66,32,40,95,
+56,56,48,32,40,95,56,55,57,32,40,95,49,48,56,51,32,34,68,97,
+116,97,46,82,97,116,105,111,95,84,121,112,101,46,95,109,107,82,97,116,
+105,111,110,97,108,34,41,41,41,41,32,40,40,66,32,95,56,51,48,41,
+32,95,54,50,50,41,41,41,32,40,40,66,32,95,56,51,48,41,32,95,
+54,50,51,41,41,41,32,40,40,65,32,58,56,51,50,32,40,40,67,32,
+40,40,83,32,66,41,32,40,40,40,83,39,32,40,83,39,32,83,41,41,
+32,40,40,66,32,40,66,32,40,40,83,39,32,83,39,41,32,40,40,67,
+32,60,41,32,35,54,41,41,41,41,32,40,40,40,67,39,32,40,67,39,
+32,83,41,41,32,40,40,66,32,40,66,32,40,40,83,39,32,83,39,41,
+32,40,40,67,32,60,41,32,35,56,41,41,41,41,32,40,40,66,32,40,
+40,83,39,32,83,41,32,40,40,66,32,40,40,83,39,32,83,39,41,32,
+40,40,67,32,60,41,32,35,49,50,41,41,41,32,40,40,40,83,39,32,
+83,41,32,40,40,66,32,40,40,83,39,32,83,39,41,32,40,40,67,32,
+60,41,32,35,49,56,41,41,41,32,40,40,40,67,39,32,40,67,39,32,
+66,41,41,32,40,67,32,40,40,67,32,61,61,41,32,35,49,56,41,41,
+41,32,40,85,32,40,40,67,32,40,40,40,83,39,32,95,57,55,54,41,
+32,40,95,57,52,55,32,95,55,54,48,41,41,32,40,40,66,32,95,56,
+55,57,41,32,40,95,57,52,55,32,95,55,54,48,41,41,41,41,32,40,
+40,66,32,40,40,40,83,39,32,40,95,52,51,51,32,95,56,56,49,41,
+41,32,40,40,66,32,40,95,50,56,50,32,95,56,51,51,41,41,32,40,
+95,52,51,49,32,95,56,55,57,41,41,41,32,73,41,41,32,40,40,66,
+32,40,95,52,51,48,32,40,40,40,67,39,32,79,41,32,40,40,66,32,
+95,49,48,56,51,41,32,40,40,66,32,40,95,53,48,52,32,40,40,79,
+32,35,49,50,48,41,32,75,41,41,41,32,40,95,49,56,52,50,32,95,
+51,49,54,41,41,41,41,32,75,41,41,41,32,40,40,95,50,48,55,32,
+95,50,49,57,41,32,40,40,95,53,56,49,32,95,51,49,48,41,32,40,
+95,51,57,50,32,35,49,41,41,41,41,41,41,41,41,41,41,32,40,40,
+40,67,39,32,40,67,39,32,66,41,41,32,40,67,32,40,40,67,32,61,
+61,41,32,35,49,50,41,41,41,32,40,85,32,40,40,40,67,39,32,40,
+67,39,32,66,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,
+95,56,54,53,41,32,95,56,51,50,41,41,32,95,56,51,50,41,41,32,
+95,56,51,50,41,41,41,41,41,41,41,32,40,40,66,32,40,40,83,39,
+32,40,67,39,32,66,41,41,32,40,67,32,40,40,67,32,61,61,41,32,
+35,56,41,41,41,41,32,40,40,66,32,40,66,32,85,41,41,32,40,40,
+66,32,40,66,32,85,41,41,32,40,40,40,67,39,32,40,67,39,32,67,
+41,41,32,40,40,66,32,40,66,32,40,40,83,39,32,83,39,41,32,40,
+40,67,32,60,41,32,35,49,41,41,41,41,32,40,40,66,32,40,40,67,
+39,32,40,67,39,32,66,41,41,32,40,67,32,40,40,67,32,61,61,41,
+32,35,49,41,41,41,41,32,40,40,66,32,85,41,32,40,40,66,32,40,
+40,83,39,32,80,41,32,40,40,66,32,95,56,51,50,41,32,40,40,66,
+32,95,57,50,53,41,32,40,40,66,32,95,57,52,49,41,32,40,40,67,
+32,79,41,32,75,41,41,41,41,41,41,32,40,40,40,67,39,32,40,83,
+39,32,40,67,39,32,83,41,41,41,32,40,40,40,67,39,32,40,83,39,
+32,67,41,41,32,40,40,66,32,40,66,32,40,67,32,83,39,41,41,41,
+32,40,40,66,32,40,40,67,39,32,40,67,39,32,67,41,41,32,40,40,
+40,67,39,32,40,67,39,32,40,67,39,32,67,39,41,41,41,32,40,40,
+66,32,40,66,32,40,66,32,40,67,39,32,40,95,56,56,52,32,40,95,
+56,55,57,32,40,95,49,48,56,51,32,34,68,97,116,97,46,76,105,115,
+116,46,99,111,110,99,97,116,77,97,112,34,41,41,41,41,41,41,41,32,
+40,40,66,32,40,66,32,40,66,32,40,66,32,95,56,51,50,41,41,41,
+41,32,40,40,66,32,40,66,32,40,66,32,40,40,83,39,32,95,57,51,
+55,41,32,40,40,40,67,39,32,79,41,32,95,57,49,55,41,32,75,41,
+41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,40,67,39,32,
+95,57,50,50,41,32,95,57,49,55,41,41,41,41,32,40,40,40,67,39,
+32,40,67,39,32,40,67,39,32,79,41,41,41,32,40,40,66,32,40,66,
+32,40,67,32,80,41,41,41,32,40,40,66,32,40,66,32,40,95,50,56,
+50,32,95,56,50,48,41,41,41,32,40,40,66,32,40,66,32,95,57,50,
+53,41,41,32,95,57,52,50,41,41,41,41,32,40,40,79,32,40,40,80,
+32,40,95,57,49,55,32,95,49,48,57,57,41,41,32,40,40,95,50,56,
+50,32,95,56,50,48,41,32,40,95,57,50,53,32,40,95,57,52,49,32,
+95,53,48,50,41,41,41,41,41,32,75,41,41,41,41,41,41,41,32,95,
+56,51,50,41,41,41,32,40,40,66,32,95,56,52,50,41,32,95,49,48,
+48,54,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,95,56,51,
+50,41,41,41,32,40,40,40,67,39,32,40,67,39,32,67,41,41,32,40,
+40,66,32,40,66,32,40,67,32,95,57,50,57,41,41,41,32,40,40,66,
+32,40,66,32,95,57,50,53,41,41,32,95,57,52,50,41,41,41,32,40,
+95,57,50,53,32,40,95,57,52,49,32,95,53,48,50,41,41,41,41,41,
+41,32,40,40,66,32,40,66,32,40,66,32,95,56,51,50,41,41,41,32,
+40,40,66,32,40,66,32,40,67,32,95,57,50,51,41,41,41,32,40,40,
+66,32,40,66,32,95,57,50,53,41,41,32,95,57,52,50,41,41,41,41,
+41,41,41,41,41,32,40,85,32,40,40,66,32,40,95,50,56,50,32,95,
+56,55,48,41,41,32,40,95,52,51,49,32,95,56,51,50,41,41,41,41,
+41,41,41,41,41,41,32,40,40,67,32,40,40,40,67,39,32,83,39,41,
+32,40,40,67,32,60,41,32,35,55,41,41,32,40,85,32,40,40,66,32,
+40,95,50,56,50,32,40,95,56,56,49,32,40,95,49,48,56,51,32,34,
+36,102,34,41,41,41,41,32,40,40,66,32,40,95,50,56,50,32,40,40,
+95,52,51,54,32,95,56,56,48,41,32,40,40,95,50,56,50,32,95,56,
+55,57,41,32,40,95,49,48,56,51,32,34,36,102,34,41,41,41,41,41,
+32,40,95,52,51,49,32,95,56,51,50,41,41,41,41,41,41,32,40,85,
+32,40,40,40,67,39,32,66,41,32,95,56,50,54,41,32,95,56,51,50,
+41,41,41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,
+83,41,32,40,40,66,32,40,40,83,39,32,83,39,41,32,40,40,67,32,
+60,41,32,35,51,41,41,41,32,40,40,40,83,39,32,67,41,32,40,40,
+66,32,40,40,83,39,32,83,39,41,32,40,40,67,32,60,41,32,35,52,
+41,41,41,32,40,40,40,67,39,32,67,41,32,40,40,66,32,40,40,67,
+39,32,83,39,41,32,40,40,67,32,60,41,32,35,53,41,41,41,32,40,
+40,66,32,85,41,32,40,40,66,32,95,56,52,53,41,32,40,95,57,55,
+57,32,95,57,56,50,41,41,41,41,41,32,40,85,32,40,75,32,40,40,
+83,32,40,40,67,32,66,41,32,40,40,40,83,39,32,83,41,32,40,40,
+66,32,40,40,83,39,32,83,39,41,32,40,40,67,32,60,41,32,35,51,
+41,41,41,32,40,40,40,67,39,32,67,41,32,40,40,66,32,40,40,83,
+39,32,83,39,41,32,40,40,67,32,60,41,32,35,52,41,41,41,32,40,
+40,40,67,39,32,40,67,39,32,66,41,41,32,40,67,32,40,40,67,32,
+61,61,41,32,35,52,41,41,41,32,40,85,32,40,40,66,32,95,56,56,
+50,41,32,40,40,66,32,95,57,53,48,41,32,95,49,52,55,41,41,41,
+41,41,41,32,40,85,32,95,56,51,49,41,41,41,41,32,40,40,40,67,
+39,32,40,67,39,32,66,41,41,32,40,67,32,40,40,67,32,61,61,41,
+32,35,49,41,41,41,32,40,85,32,95,56,51,48,41,41,41,41,41,32,
+95,56,56,50,41,41,41,41,41,41,32,40,40,66,32,85,41,32,40,40,
+66,32,95,56,50,50,41,32,40,95,57,55,57,32,95,57,56,50,41,41,
+41,41,41,41,41,32,40,40,40,67,39,32,67,41,32,40,40,66,32,40,
+40,83,39,32,83,39,41,32,40,40,67,32,60,41,32,35,49,41,41,41,
+32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,40,67,32,40,40,
+67,32,61,61,41,32,35,49,41,41,41,32,40,85,32,40,40,40,67,39,
+32,66,41,32,40,40,66,32,95,56,56,48,41,32,95,56,51,50,41,41,
+32,95,56,51,50,41,41,41,41,41,32,40,85,32,95,56,55,57,41,41,
+41,41,41,41,32,40,95,49,53,49,51,32,95,55,54,48,41,41,41,32,
+40,40,65,32,58,56,51,51,32,40,40,95,50,56,52,32,40,95,56,56,
+49,32,40,95,49,48,56,51,32,34,36,102,34,41,41,41,32,40,40,95,
+52,51,54,32,95,56,56,48,41,32,40,95,56,55,57,32,40,95,49,48,
+56,51,32,34,36,102,34,41,41,41,41,41,32,40,40,65,32,58,56,51,
+52,32,40,40,40,67,39,32,66,41,32,40,40,66,32,67,41,32,40,40,
+66,32,40,40,67,39,32,66,41,32,95,56,56,48,41,41,32,40,40,40,
+67,39,32,40,83,39,32,40,95,52,51,51,32,95,56,56,49,41,41,41,
+32,40,40,66,32,40,66,32,95,56,55,57,41,41,32,40,67,32,95,52,
+57,49,41,41,41,32,73,41,41,41,41,32,40,40,66,32,40,95,52,51,
+48,32,40,40,40,67,39,32,79,41,32,40,40,66,32,95,49,48,56,51,
+41,32,40,40,66,32,40,95,53,48,52,32,40,40,79,32,35,49,50,48,
+41,32,75,41,41,41,32,40,95,49,56,52,50,32,95,51,49,54,41,41,
+41,41,32,75,41,41,41,32,40,40,95,50,48,55,32,95,50,49,57,41,
+32,40,40,95,53,56,49,32,95,51,49,48,41,32,40,95,51,57,50,32,
+35,49,41,41,41,41,41,41,32,40,40,65,32,58,56,51,53,32,40,40,
+66,32,89,41,32,40,40,66,32,40,40,67,39,32,67,41,32,40,40,66,
+32,40,83,32,66,41,41,32,40,40,40,83,39,32,40,83,39,32,40,83,
+39,32,83,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,40,83,
+39,32,83,39,41,32,40,40,67,32,60,41,32,35,56,41,41,41,41,41,
+32,40,40,40,83,39,32,40,83,39,32,40,83,39,32,83,41,41,41,32,
+40,40,66,32,40,66,32,40,66,32,40,40,83,39,32,83,39,41,32,40,
+40,67,32,60,41,32,35,49,53,41,41,41,41,41,32,40,40,66,32,40,
+40,67,39,32,40,67,39,32,67,41,41,32,40,40,66,32,40,66,32,40,
+40,83,39,32,83,39,41,32,40,40,67,32,60,41,32,35,49,54,41,41,
+41,41,32,40,40,40,83,39,32,40,83,39,32,83,41,41,32,40,40,66,
+32,40,66,32,40,40,83,39,32,83,39,41,32,40,40,67,32,60,41,32,
+35,49,56,41,41,41,41,32,40,40,66,32,40,40,67,39,32,40,67,39,
+32,66,41,41,32,40,67,32,40,40,67,32,61,61,41,32,35,49,56,41,
+41,41,41,32,40,40,66,32,85,41,32,75,41,41,41,41,32,40,40,66,
+32,40,40,67,39,32,40,67,39,32,66,41,41,32,40,67,32,40,40,67,
+32,61,61,41,32,35,49,54,41,41,41,41,32,40,40,66,32,85,41,32,
+40,90,32,75,41,41,41,41,41,41,41,32,40,40,66,32,85,41,32,40,
+40,67,39,32,66,41,32,95,57,51,50,41,41,41,41,41,32,40,40,66,
+32,40,40,67,39,32,66,41,32,40,40,66,32,83,41,32,40,40,66,32,
+40,40,67,39,32,83,39,41,32,40,40,67,32,60,41,32,35,49,52,41,
+41,41,32,40,40,66,32,85,41,32,75,41,41,41,41,41,32,40,40,66,
+32,40,40,83,39,32,40,67,39,32,66,41,41,32,40,67,32,40,40,67,
+32,61,61,41,32,35,56,41,41,41,41,32,40,40,66,32,40,66,32,85,
+41,41,32,40,40,66,32,40,66,32,85,41,41,32,40,40,66,32,40,40,
+67,39,32,40,67,39,32,66,41,41,32,40,67,32,40,40,67,32,61,61,
+41,32,35,48,41,41,41,41,32,40,40,66,32,85,41,32,40,40,40,67,
+39,32,66,41,32,95,50,56,50,41,32,40,40,95,52,51,51,32,40,40,
+66,32,95,57,49,56,41,32,40,95,57,49,56,32,95,56,51,56,41,41,
+41,32,95,56,51,57,41,41,41,41,41,41,41,41,41,41,41,32,40,40,
+40,83,39,32,40,83,39,32,40,83,39,32,83,41,41,41,32,40,40,66,
+32,40,66,32,40,66,32,40,40,83,39,32,83,39,41,32,40,40,67,32,
+60,41,32,35,52,41,41,41,41,41,32,40,40,40,83,39,32,40,83,39,
+32,66,41,41,32,40,40,66,32,40,66,32,83,41,41,32,40,40,66,32,
+40,66,32,40,40,67,39,32,83,39,41,32,40,40,67,32,60,41,32,35,
+55,41,41,41,41,32,40,40,66,32,40,66,32,85,41,41,32,40,40,40,
+67,39,32,66,41,32,40,66,39,32,95,50,56,50,41,41,32,40,40,40,
+67,39,32,40,83,39,32,40,95,52,51,54,32,95,57,49,56,41,41,41,
+32,40,40,40,67,39,32,66,41,32,40,40,66,32,95,56,52,48,41,32,
+40,95,57,55,57,32,95,57,56,50,41,41,41,32,95,52,52,57,41,41,
+32,73,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,40,67,39,
+32,40,67,39,32,66,41,41,32,40,67,32,40,40,67,32,61,61,41,32,
+35,52,41,41,41,41,41,32,40,40,66,32,40,66,32,85,41,41,32,40,
+40,66,32,40,66,32,40,66,32,85,41,41,41,32,40,40,66,32,40,40,
+83,39,32,66,41,32,40,40,66,32,40,67,39,32,66,41,41,32,40,67,
+32,40,40,67,32,61,61,41,32,35,53,41,41,41,41,41,32,40,40,66,
+32,40,66,32,40,66,32,85,41,41,41,32,40,40,66,32,40,40,67,39,
+32,66,41,32,40,40,66,32,83,41,32,40,67,32,40,40,40,67,39,32,
+40,95,53,57,51,32,95,51,49,53,41,41,32,95,52,52,57,41,32,35,
+50,41,41,41,41,41,32,40,40,40,67,39,32,66,41,32,66,41,32,40,
+40,66,32,40,66,32,95,57,50,53,41,41,32,40,40,66,32,40,66,32,
+95,57,52,49,41,41,32,40,40,66,32,95,52,51,49,41,32,40,40,40,
+67,39,32,95,50,56,52,41,32,95,57,50,49,41,32,95,57,53,52,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,40,67,39,32,
+66,41,32,40,40,66,32,40,67,39,32,67,41,41,32,40,40,66,32,40,
+66,32,40,40,83,39,32,83,39,41,32,40,40,67,32,60,41,32,35,49,
+41,41,41,41,32,40,40,66,32,40,40,67,39,32,40,67,39,32,66,41,
+41,32,40,67,32,40,40,67,32,61,61,41,32,35,49,41,41,41,41,32,
+40,40,66,32,85,41,32,40,40,40,83,39,32,40,67,39,32,66,41,41,
+32,40,66,32,95,57,49,56,41,41,32,73,41,41,41,41,41,41,32,40,
+40,66,32,85,41,32,75,41,41,41,41,41,41,41,32,95,49,53,49,51,
+41,41,41,32,40,40,65,32,58,56,51,54,32,40,40,95,50,56,50,32,
+95,49,48,56,51,41,32,40,40,95,53,48,52,32,95,49,50,57,56,41,
+32,34,91,93,34,41,41,41,32,40,40,65,32,58,56,51,55,32,40,40,
+95,50,56,50,32,95,49,48,56,51,41,32,40,40,95,53,48,52,32,95,
+49,50,57,56,41,32,40,40,79,32,35,53,56,41,32,75,41,41,41,41,
+32,40,40,65,32,58,56,51,56,32,40,40,95,50,56,50,32,95,57,51,
+53,41,32,40,40,95,57,51,57,32,40,40,79,32,40,40,80,32,95,56,
+51,54,41,32,40,40,95,53,56,49,32,95,51,49,48,41,32,40,95,51,
+57,50,32,35,48,41,41,41,41,32,40,40,79,32,40,40,80,32,95,56,
+51,55,41,32,40,40,95,53,56,49,32,95,51,49,48,41,32,40,95,51,
+57,50,32,35,50,41,41,41,41,32,75,41,41,41,32,95,56,51,55,41,
+41,41,32,40,40,65,32,58,56,51,57,32,40,40,95,50,56,50,32,95,
+57,51,53,41,32,40,40,95,57,51,57,32,40,40,79,32,40,40,80,32,
+95,56,51,54,41,32,40,40,95,53,56,49,32,95,51,49,48,41,32,40,
+95,51,57,50,32,35,48,41,41,41,41,32,40,40,79,32,40,40,80,32,
+95,56,51,55,41,32,40,40,95,53,56,49,32,95,51,49,48,41,32,40,
+95,51,57,50,32,35,50,41,41,41,41,32,75,41,41,41,32,95,56,51,
+54,41,41,41,32,40,40,65,32,58,56,52,48,32,40,40,66,32,40,40,
+83,39,32,40,66,32,40,95,50,56,50,32,95,57,51,53,41,41,41,32,
+40,40,40,67,39,32,40,83,39,32,95,57,51,57,41,41,32,40,40,40,
+67,39,32,40,67,39,32,79,41,41,32,40,67,32,80,41,41,32,75,41,
+41,32,73,41,41,41,32,95,57,55,53,41,41,32,40,40,65,32,58,56,
+52,49,32,40,40,66,32,40,95,52,57,48,32,40,95,50,50,51,32,95,
+49,48,55,56,41,41,41,32,40,40,40,67,39,32,95,52,51,48,41,32,
+40,40,40,67,39,32,40,67,39,32,79,41,41,32,40,40,66,32,40,66,
+32,95,49,48,56,51,41,41,32,40,40,40,67,39,32,66,41,32,95,53,
+48,52,41,32,40,95,49,56,52,50,32,95,51,49,54,41,41,41,41,32,
+75,41,41,32,40,40,95,50,48,53,32,95,50,49,57,41,32,35,49,41,
+41,41,41,32,40,40,65,32,58,56,52,50,32,40,40,95,50,56,52,32,
+95,52,54,56,41,32,40,95,56,52,49,32,34,36,113,34,41,41,41,32,
+40,40,65,32,58,56,52,51,32,40,40,95,50,56,52,32,95,49,56,53,
+57,41,32,40,95,52,51,49,32,95,56,52,52,41,41,41,32,40,40,65,
+32,58,56,52,52,32,40,85,32,40,40,40,67,39,32,66,41,32,40,40,
+66,32,95,53,48,52,41,32,95,49,48,56,56,41,41,32,40,40,66,32,
+40,95,53,48,52,32,34,32,61,32,34,41,41,32,40,95,49,56,52,50,
+32,95,56,56,55,41,41,41,41,41,32,40,40,65,32,58,56,52,53,32,
+40,40,40,67,39,32,40,67,39,32,83,41,41,32,40,40,67,32,40,40,
+40,67,39,32,83,39,41,32,40,40,66,32,67,39,41,32,95,56,52,56,
+41,41,32,40,40,66,32,40,66,32,95,49,48,48,54,41,41,32,95,57,
+50,50,41,41,41,32,40,40,40,67,39,32,79,41,32,95,56,51,50,41,
+32,75,41,41,41,32,40,95,52,51,49,32,40,85,32,40,40,40,67,39,
+32,66,41,32,40,40,66,32,80,41,32,40,40,40,67,39,32,79,41,32,
+40,95,56,51,53,32,95,55,54,48,41,41,32,75,41,41,41,32,95,56,
+50,51,41,41,41,41,41,32,40,40,65,32,58,56,52,54,32,40,40,66,
+32,40,40,95,51,53,32,95,54,56,41,32,95,55,51,41,41,32,40,40,
+40,83,39,32,40,83,39,32,40,95,51,54,32,95,54,56,41,41,41,32,
+40,40,66,32,40,66,32,95,55,50,41,41,32,95,52,52,56,41,41,32,
+40,40,66,32,40,66,32,40,95,51,55,32,95,54,56,41,41,41,32,95,
+52,52,55,41,41,41,41,32,40,40,65,32,58,56,52,55,32,40,40,40,
+95,51,53,32,95,54,56,41,32,95,55,51,41,32,40,40,40,83,39,32,
+40,95,51,54,32,95,54,56,41,41,32,40,40,66,32,95,55,50,41,32,
+95,52,54,57,41,41,32,40,40,66,32,40,95,51,55,32,95,54,56,41,
+41,32,95,52,54,56,41,41,41,41,32,40,40,65,32,58,56,52,56,32,
+40,40,40,67,39,32,66,41,32,40,40,66,32,40,67,39,32,40,67,39,
+32,95,55,48,41,41,41,32,40,40,66,32,67,41,32,40,40,40,67,39,
+32,40,67,39,32,89,41,41,32,40,40,40,67,39,32,40,67,39,32,66,
+41,41,32,40,40,66,32,40,66,32,40,83,39,32,80,41,41,41,32,40,
+40,40,67,39,32,67,39,41,32,40,40,66,32,40,95,56,52,57,32,95,
+55,54,48,41,41,32,95,56,53,49,41,41,32,95,52,54,51,41,41,41,
+32,40,40,66,32,40,66,32,40,40,67,39,32,66,41,32,40,40,66,32,
+95,50,56,50,41,32,40,40,66,32,95,56,53,50,41,32,40,95,51,55,
+32,95,54,56,41,41,41,41,41,41,32,40,40,40,67,39,32,66,41,32,
+67,39,41,32,40,67,32,95,53,48,51,41,41,41,41,41,32,95,53,48,
+50,41,41,41,41,32,40,95,56,52,49,32,34,36,120,34,41,41,41,32,
+40,40,65,32,58,56,52,57,32,40,40,66,32,89,41,32,40,40,66,32,
+40,66,32,40,40,83,39,32,66,41,32,40,40,66,32,83,41,32,40,40,
+66,32,85,41,32,40,95,51,55,32,95,54,56,41,41,41,41,41,41,32,
+40,40,66,32,40,66,32,40,66,32,40,66,32,90,41,41,41,41,32,40,
+40,66,32,40,66,32,40,66,32,40,66,32,90,41,41,41,41,32,40,40,
+66,32,40,66,32,40,40,83,39,32,83,41,32,40,40,66,32,40,67,32,
+83,39,41,41,32,40,40,66,32,40,66,32,40,95,50,56,50,32,40,95,
+51,55,32,95,54,56,41,41,41,41,32,40,95,52,51,51,32,40,85,32,
+65,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,
+66,32,40,40,83,39,32,66,41,32,40,66,39,32,40,85,32,40,40,40,
+110,111,77,97,116,99,104,32,34,115,114,99,47,77,105,99,114,111,72,115,
+47,68,101,115,117,103,97,114,46,104,115,34,41,32,35,51,50,56,41,32,
+35,49,48,41,41,41,41,41,41,41,41,32,40,40,40,67,39,32,40,67,
+39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,83,39,32,40,67,
+39,32,40,67,39,32,67,41,41,41,41,41,41,41,41,32,40,40,40,83,
+39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,
+39,32,40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,41,41,41,
+41,41,41,41,32,40,40,40,83,39,32,40,83,39,32,40,83,39,32,40,
+83,39,32,40,83,39,32,40,83,39,32,40,83,39,32,40,67,39,32,40,
+67,39,32,40,83,39,32,83,41,41,41,41,41,41,41,41,41,41,32,40,
+40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
+32,40,40,83,39,32,66,41,32,40,66,39,32,40,40,66,32,40,83,39,
+32,66,41,41,32,85,41,41,41,41,41,41,41,41,41,41,32,40,40,40,
+83,39,32,40,83,39,32,40,83,39,32,40,83,39,32,66,41,41,41,41,
+32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,83,39,32,40,83,
+39,32,40,67,39,32,40,67,39,32,40,83,39,32,40,83,39,32,40,83,
+39,32,83,41,41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,
+66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
+40,66,32,40,66,32,40,66,32,40,40,83,39,32,83,39,41,32,40,40,
+67,32,60,41,32,35,49,54,41,41,41,41,41,41,41,41,41,41,41,41,
+41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
+32,40,66,32,40,66,32,40,66,32,40,66,32,40,40,67,39,32,40,67,
+39,32,66,41,41,32,40,67,32,40,40,67,32,61,61,41,32,35,49,54,
+41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,
+32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
+66,32,40,66,32,85,41,41,41,41,41,41,41,41,41,41,32,40,40,66,
+32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
+66,32,40,66,32,40,66,32,90,41,41,41,41,41,41,41,41,41,41,32,
+40,40,40,83,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,
+39,32,40,67,39,32,40,67,39,32,66,41,41,41,41,41,41,41,32,40,
+40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
+32,40,67,39,32,66,41,41,41,41,41,41,41,41,32,40,40,66,32,40,
+40,83,39,32,40,67,39,32,40,67,39,32,66,41,41,41,32,40,40,66,
+32,40,66,32,66,39,41,41,32,40,40,66,32,40,66,32,66,39,41,41,
+32,40,40,66,32,40,66,32,66,39,41,41,32,40,40,66,32,40,66,32,
+40,66,32,83,39,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,
+83,39,32,95,50,56,50,41,41,41,41,32,40,40,66,32,40,66,32,40,
+66,32,40,66,32,95,56,53,50,41,41,41,41,32,40,40,67,32,40,67,
+39,32,40,67,39,32,66,41,41,41,32,40,85,32,65,41,41,41,41,41,
+41,41,41,41,41,32,40,40,66,32,40,66,32,40,40,83,39,32,66,41,
+32,40,66,39,32,40,66,39,32,40,40,66,32,40,67,39,32,66,41,41,
+32,40,40,66,32,66,39,41,32,40,40,66,32,40,66,32,95,50,56,50,
+41,41,32,40,40,66,32,40,66,32,95,56,53,50,41,41,32,40,40,66,
+32,40,66,32,40,95,50,56,50,32,40,95,51,55,32,95,54,56,41,41,
+41,41,32,40,40,67,39,32,95,56,56,48,41,32,95,56,51,50,41,41,
+41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,40,67,39,32,66,
+41,32,40,40,66,32,40,67,39,32,66,41,41,32,40,40,66,32,66,39,
+41,32,40,40,66,32,66,39,41,32,40,40,66,32,40,66,32,67,41,41,
+32,40,40,40,67,39,32,66,41,32,40,67,39,32,67,39,41,41,32,40,
+67,32,95,53,48,51,41,41,41,41,41,41,41,41,32,40,40,40,67,39,
+32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,40,67,39,32,
+66,41,41,41,32,40,40,66,32,40,66,32,40,66,32,95,52,51,49,41,
+41,41,32,40,40,40,67,39,32,66,41,32,40,66,39,32,40,40,66,32,
+95,50,56,52,41,32,40,40,66,32,40,67,32,40,40,67,32,66,41,32,
+40,40,40,83,39,32,40,67,39,32,66,41,41,32,85,41,32,40,40,66,
+32,40,66,32,40,67,32,66,41,41,41,32,40,40,40,67,39,32,66,41,
+32,40,66,39,32,40,40,66,32,40,67,39,32,66,41,41,32,40,67,32,
+40,40,67,32,61,61,41,32,35,49,54,41,41,41,41,41,32,40,40,66,
+32,40,66,32,85,41,41,32,40,40,66,32,90,41,32,40,40,67,39,32,
+40,67,39,32,80,41,41,32,40,67,32,95,53,48,51,41,41,41,41,41,
+41,41,41,41,41,32,95,49,53,49,51,41,41,41,41,32,85,41,41,41,
+41,32,40,40,40,67,39,32,66,41,32,95,53,48,51,41,32,40,85,32,
+75,41,41,41,41,41,41,41,41,32,40,40,66,32,40,67,39,32,40,67,
+39,32,95,52,54,54,41,41,41,32,40,40,66,32,40,67,39,32,95,50,
+56,52,41,41,32,40,40,66,32,40,66,32,85,41,41,32,40,40,66,32,
+40,66,32,40,40,67,39,32,66,41,32,40,40,67,32,40,40,67,32,61,
+61,41,32,35,49,54,41,41,32,95,49,51,52,41,41,41,41,32,40,40,
+66,32,40,66,32,85,41,41,32,40,40,66,32,40,66,32,90,41,41,32,
+95,57,57,56,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,
+66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
+40,66,32,40,66,32,40,40,67,39,32,40,67,39,32,66,41,41,32,40,
+67,32,40,40,67,32,61,61,41,32,35,48,41,41,41,41,41,41,41,41,
+41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
+32,40,66,32,40,66,32,40,66,32,40,66,32,85,41,41,41,41,41,41,
+41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
+40,66,32,40,66,32,40,66,32,90,41,41,41,41,41,41,41,41,32,40,
+40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,66,41,41,
+41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,67,39,32,
+40,67,39,32,40,67,39,32,66,41,41,41,41,41,41,41,32,40,40,66,
+32,40,40,83,39,32,40,67,39,32,40,67,39,32,66,41,41,41,32,40,
+40,66,32,40,66,32,66,39,41,41,32,40,40,66,32,40,66,32,66,39,
+41,41,32,40,40,66,32,40,66,32,40,66,32,40,83,39,32,95,50,56,
+50,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,95,
+56,53,50,41,41,41,41,32,40,40,67,32,40,67,39,32,40,67,39,32,
+66,41,41,41,32,40,85,32,65,41,41,41,41,41,41,41,41,32,40,40,
+66,32,40,40,67,39,32,66,41,32,40,40,66,32,40,67,39,32,66,41,
+41,32,40,40,66,32,66,39,41,32,40,40,66,32,40,66,32,67,41,41,
+32,67,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,
+39,32,66,41,41,41,32,40,40,66,32,40,66,32,40,66,32,95,52,51,
+49,41,41,41,32,40,40,40,67,39,32,40,83,39,32,66,41,41,32,40,
+40,66,32,40,66,32,95,50,56,52,41,41,32,40,40,66,32,40,40,67,
+39,32,67,41,32,40,40,66,32,40,67,32,66,41,41,32,40,40,66,32,
+40,40,83,39,32,40,67,39,32,66,41,41,32,85,41,41,32,40,40,66,
+32,40,66,32,40,66,32,40,67,32,66,41,41,41,41,32,40,40,66,32,
+40,40,67,39,32,66,41,32,40,66,39,32,40,40,66,32,40,67,39,32,
+66,41,41,32,40,67,32,40,40,67,32,61,61,41,32,35,48,41,41,41,
+41,41,41,32,40,40,66,32,40,66,32,40,66,32,85,41,41,41,32,40,
+40,66,32,40,66,32,40,40,67,39,32,66,41,32,80,41,41,41,32,40,
+40,66,32,40,67,39,32,95,50,56,52,41,41,32,40,67,32,95,56,53,
+53,41,41,41,41,41,41,41,41,41,41,32,95,49,53,49,51,41,41,41,
+32,85,41,41,41,32,40,85,32,75,41,41,41,41,41,41,32,40,40,67,
+39,32,95,52,54,54,41,32,40,95,50,56,52,32,40,85,32,40,40,40,
+67,39,32,66,41,32,40,40,67,32,40,40,67,32,61,61,41,32,35,48,
+41,41,32,95,49,51,52,41,41,32,40,85,32,40,75,32,95,49,51,53,
+41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,40,67,39,32,
+40,67,39,32,40,67,39,32,40,67,39,32,66,41,41,41,41,32,40,40,
+66,32,40,40,83,39,32,40,67,39,32,40,67,39,32,67,39,41,41,41,
+32,40,40,66,32,40,66,32,40,66,32,67,39,41,41,41,32,40,40,66,
+32,40,66,32,40,66,32,67,39,41,41,41,32,40,40,66,32,40,66,32,
+40,66,32,83,39,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,
+83,39,32,95,50,56,50,41,41,41,41,32,40,40,66,32,40,66,32,40,
+66,32,40,66,32,95,56,53,50,41,41,41,41,32,40,40,67,32,40,67,
+39,32,40,67,39,32,66,41,41,41,32,40,85,32,65,41,41,41,41,41,
+41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,83,39,32,40,
+67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,83,39,32,40,
+95,51,53,32,95,54,56,41,41,41,41,41,41,41,41,41,32,40,40,40,
+83,39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,40,67,
+39,32,66,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,67,39,
+32,66,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,
+40,67,39,32,40,95,52,54,32,95,54,56,41,41,41,41,41,41,32,40,
+40,40,83,39,32,40,67,39,32,40,67,39,32,66,41,41,41,32,40,40,
+66,32,40,66,32,40,66,32,40,67,39,32,40,83,39,32,40,40,83,39,
+32,40,95,51,53,32,95,54,56,41,41,32,40,40,66,32,95,56,52,54,
+41,32,95,57,52,56,41,41,41,41,41,41,41,32,40,40,40,67,39,32,
+40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,66,41,41,41,
+41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
+83,39,32,40,95,51,53,32,95,54,56,41,41,41,41,41,41,41,32,40,
+40,66,32,40,40,67,39,32,40,67,39,32,40,67,39,32,66,41,41,41,
+32,40,40,40,67,39,32,66,41,32,40,67,39,32,67,39,41,41,32,40,
+40,67,39,32,95,53,48,52,41,32,40,95,52,51,49,32,95,56,55,57,
+41,41,41,41,41,32,40,40,66,32,95,52,51,49,41,32,40,40,66,32,
+85,41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,66,
+32,85,41,32,95,49,53,49,51,41,41,32,40,40,67,39,32,40,67,39,
+32,80,41,41,32,40,40,66,32,95,53,48,52,41,32,95,56,53,55,41,
+41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,95,
+51,55,32,95,54,56,41,41,41,41,32,40,40,66,32,40,66,32,80,41,
+41,32,95,56,54,50,41,41,41,41,41,32,40,40,40,67,39,32,66,41,
+32,40,66,39,32,40,40,66,32,95,50,56,50,41,32,95,56,53,54,41,
+41,41,32,40,40,40,67,39,32,66,41,32,95,50,56,50,41,32,95,52,
+54,56,41,41,41,41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,
+66,39,32,40,66,39,32,40,40,66,32,95,50,56,50,41,32,40,40,66,
+32,95,56,53,56,41,32,40,40,66,32,40,95,50,57,48,32,40,95,50,
+50,51,32,95,57,52,57,41,41,41,32,40,40,66,32,85,41,32,40,40,
+66,32,90,41,32,40,40,40,83,39,32,80,41,32,95,49,53,49,51,41,
+32,40,40,66,32,90,41,32,95,56,53,54,41,41,41,41,41,41,41,41,
+41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,66,
+32,40,66,32,95,52,51,49,41,41,32,85,41,41,32,40,85,32,75,41,
+41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,95,50,56,50,
+32,40,95,51,55,32,95,54,56,41,41,41,41,41,32,40,40,66,32,67,
+41,32,95,56,53,48,41,41,41,41,41,32,40,40,67,39,32,95,52,54,
+54,41,32,40,95,50,56,52,32,40,85,32,40,40,83,32,40,40,40,83,
+39,32,83,39,41,32,40,40,67,32,60,41,32,35,49,54,41,41,32,40,
+40,40,67,39,32,66,41,32,40,40,67,32,40,40,67,32,61,61,41,32,
+35,49,54,41,41,32,95,49,51,53,41,41,32,40,85,32,40,75,50,32,
+95,49,51,52,41,41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,
+40,67,32,40,40,67,32,61,61,41,32,35,48,41,41,32,95,49,51,53,
+41,41,32,40,85,32,40,75,32,95,49,51,52,41,41,41,41,41,41,41,
+41,41,41,32,40,40,66,32,85,41,32,40,40,66,32,90,41,32,40,40,
+40,67,39,32,80,41,32,95,49,53,49,51,41,32,40,90,32,40,89,32,
+40,40,66,32,40,83,32,73,41,41,32,40,40,66,32,40,40,67,39,32,
+40,67,39,32,66,41,41,32,40,67,32,40,40,67,32,61,61,41,32,35,
+49,53,41,41,41,41,32,40,40,66,32,85,41,32,75,41,41,41,41,41,
+41,41,41,41,41,32,40,40,66,32,89,41,32,40,40,66,32,40,66,32,
+40,66,32,40,83,32,73,41,41,41,41,32,40,40,66,32,40,66,32,40,
+66,32,40,40,83,39,32,40,67,39,32,66,41,41,32,85,41,41,41,41,
+32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,67,32,
+66,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,40,
+67,39,32,66,41,32,40,66,39,32,40,40,66,32,40,67,39,32,66,41,
+41,32,40,67,32,40,40,67,32,61,61,41,32,35,49,53,41,41,41,41,
+41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
+32,85,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,
+41,32,40,40,66,32,66,39,41,32,40,40,66,32,66,39,41,32,40,40,
+66,32,66,39,41,32,40,40,66,32,66,39,41,32,85,41,41,41,41,41,
+32,40,40,66,32,40,66,32,40,40,67,39,32,66,41,32,40,40,66,32,
+40,67,39,32,80,41,41,32,40,67,32,95,53,48,51,41,41,41,41,41,
+32,40,40,66,32,40,67,39,32,95,50,56,52,41,41,32,40,67,32,95,
+56,53,53,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,32,40,40,65,32,58,56,53,48,32,40,40,40,83,39,32,40,83,39,
+32,83,41,41,32,40,40,66,32,40,67,32,40,67,39,32,66,41,41,41,
+32,40,40,66,32,40,66,32,40,67,32,66,41,41,41,32,40,40,66,32,
+40,66,32,40,66,32,40,67,32,66,41,41,41,41,32,40,40,66,32,40,
+40,83,39,32,66,41,32,40,66,39,32,40,40,66,32,40,67,39,32,66,
+41,41,32,40,40,66,32,85,41,32,40,90,32,75,41,41,41,41,41,41,
+32,40,40,66,32,40,66,32,40,66,32,40,66,32,90,41,41,41,41,32,
+40,40,66,32,40,40,83,39,32,66,41,32,40,66,39,32,80,41,41,41,
+32,40,40,40,67,39,32,40,83,39,32,40,67,39,32,40,67,39,32,40,
+67,39,32,80,41,41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,
+40,66,32,67,41,32,40,40,66,32,40,40,67,39,32,67,39,41,32,67,
+39,41,41,32,40,40,66,32,67,41,32,40,67,32,95,56,53,52,41,41,
+41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,41,
+41,41,41,41,41,32,95,56,54,51,41,41,32,40,40,65,32,58,56,53,
+49,32,40,85,32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,40,
+40,66,32,40,66,32,95,56,56,48,41,41,32,40,40,40,67,39,32,66,
+41,32,40,40,66,32,95,56,56,48,41,32,40,40,66,32,40,95,56,56,
+48,32,40,95,56,56,50,32,40,95,57,53,54,32,34,110,111,77,97,116,
+99,104,34,41,41,41,41,32,40,40,66,32,95,56,56,50,41,32,95,57,
+53,53,41,41,41,41,32,40,40,66,32,95,56,56,50,41,32,95,57,53,
+48,41,41,41,41,32,40,40,66,32,95,56,56,50,41,32,95,57,53,48,
+41,41,41,41,32,40,40,65,32,58,56,53,50,32,40,40,40,67,39,32,
+66,41,32,40,95,51,53,32,95,54,56,41,41,32,40,40,40,83,39,32,
+83,41,32,40,40,66,32,40,83,32,95,56,53,51,41,41,32,40,40,66,
+32,40,66,32,40,40,95,51,53,32,95,54,56,41,32,95,56,52,55,41,
+41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,83,39,32,
+40,95,51,53,32,95,54,56,41,41,41,32,40,40,67,32,66,41,32,95,
+56,55,57,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,95,50,
+56,50,32,40,95,51,55,32,95,54,56,41,41,41,41,41,32,40,67,32,
+95,56,53,52,41,41,41,41,41,41,32,73,41,41,41,32,40,40,65,32,
+58,56,53,51,32,40,40,67,32,40,40,67,32,40,40,80,32,40,75,32,
+95,49,51,53,41,41,32,40,75,50,32,95,49,51,52,41,41,41,32,40,
+75,50,32,95,49,51,52,41,41,41,32,40,75,32,95,49,51,53,41,41,
+41,32,40,40,65,32,58,56,53,52,32,40,40,67,32,40,40,40,83,39,
+32,67,39,41,32,40,40,66,32,83,39,41,32,40,40,67,32,40,95,50,
+50,51,32,95,49,48,55,56,41,41,32,95,49,48,57,57,41,41,41,32,
+40,40,40,83,39,32,40,83,39,32,83,41,41,32,40,40,40,67,39,32,
+40,67,39,32,40,67,39,32,83,41,41,41,32,40,40,40,67,39,32,40,
+67,39,32,40,67,39,32,83,41,41,41,32,40,40,40,67,39,32,40,67,
+39,32,67,41,41,32,40,40,66,32,40,66,32,40,67,32,83,39,41,41,
+41,32,40,40,66,32,40,67,39,32,67,41,41,32,40,40,66,32,67,41,
+32,40,95,50,50,51,32,95,49,48,55,56,41,41,41,41,41,32,40,90,
+32,75,41,41,41,32,40,90,32,75,41,41,41,32,75,41,41,32,40,40,
+40,83,39,32,66,41,32,40,40,66,32,83,41,32,40,40,67,32,40,40,
+40,67,39,32,83,39,41,32,40,40,66,32,95,52,51,50,41,32,40,67,
+32,40,95,50,50,51,32,95,49,48,55,56,41,41,41,41,32,95,56,57,
+48,41,41,32,73,41,41,41,32,40,40,66,32,40,66,32,90,41,41,32,
+40,40,40,83,39,32,40,83,39,32,40,83,39,32,80,41,41,41,32,95,
+56,56,57,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,
+40,66,32,90,41,41,32,40,40,66,32,40,67,39,32,95,56,56,48,41,
+41,32,95,56,56,49,41,41,41,41,41,41,41,41,41,32,73,41,41,32,
+40,40,65,32,58,56,53,53,32,40,40,67,32,40,40,40,83,39,32,67,
+39,41,32,40,40,66,32,83,39,41,32,40,40,67,32,40,95,50,50,51,
+32,95,49,48,55,56,41,41,32,95,49,48,57,57,41,41,41,32,95,56,
+56,57,41,41,32,73,41,41,32,40,40,65,32,58,56,53,54,32,40,40,
+66,32,89,41,32,40,40,66,32,40,40,67,39,32,83,41,32,40,40,66,
+32,40,67,32,66,41,41,32,40,40,40,83,39,32,40,83,39,32,83,41,
+41,32,40,40,66,32,40,66,32,40,40,83,39,32,83,39,41,32,40,40,
+67,32,60,41,32,35,49,53,41,41,41,41,32,40,40,66,32,40,40,83,
+39,32,83,41,32,40,40,66,32,40,40,83,39,32,83,39,41,32,40,40,
+67,32,60,41,32,35,49,56,41,41,41,32,40,40,40,67,39,32,40,67,
+39,32,66,41,41,32,40,67,32,40,40,67,32,61,61,41,32,35,49,56,
+41,41,41,32,40,85,32,73,41,41,41,41,41,32,40,40,66,32,40,40,
+67,39,32,40,67,39,32,66,41,41,32,40,67,32,40,40,67,32,61,61,
+41,32,35,49,53,41,41,41,41,32,40,40,66,32,85,41,32,75,41,41,
+41,41,41,32,40,40,66,32,40,40,67,39,32,40,67,39,32,66,41,41,
+32,40,67,32,40,40,67,32,61,61,41,32,35,49,41,41,41,41,32,40,
+40,66,32,85,41,32,90,41,41,41,41,41,41,32,40,40,67,32,95,49,
+53,49,52,41,32,40,40,80,32,95,49,48,49,53,41,32,95,57,56,50,
+41,41,41,41,41,32,40,40,65,32,58,56,53,55,32,40,40,67,32,40,
+40,67,32,66,41,32,40,40,40,83,39,32,83,41,32,40,40,66,32,40,
+40,83,39,32,83,39,41,32,40,40,67,32,60,41,32,35,52,41,41,41,
+32,40,40,40,83,39,32,83,41,32,40,40,66,32,40,40,83,39,32,83,
+39,41,32,40,40,67,32,60,41,32,35,49,56,41,41,41,32,40,40,40,
+67,39,32,40,67,39,32,66,41,41,32,40,67,32,40,40,67,32,61,61,
+41,32,35,49,56,41,41,41,32,40,85,32,40,75,32,95,53,48,50,41,
+41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,40,
+67,32,40,40,67,32,61,61,41,32,35,52,41,41,41,32,40,85,32,40,
+75,50,32,95,53,48,50,41,41,41,41,41,41,32,40,40,40,67,39,32,
+40,67,39,32,66,41,41,32,40,67,32,40,40,67,32,61,61,41,32,35,
+49,41,41,41,32,40,85,32,40,40,40,67,39,32,66,41,32,40,40,66,
+32,95,53,48,52,41,32,95,56,53,55,41,41,32,40,40,67,32,79,41,
+32,75,41,41,41,41,41,41,41,32,40,95,49,53,49,51,32,95,55,54,
+48,41,41,41,32,40,40,65,32,58,56,53,56,32,40,40,66,32,89,41,
+32,40,40,66,32,40,66,32,40,80,32,95,53,48,50,41,41,41,32,40,
+40,40,67,39,32,66,41,32,40,40,66,32,40,83,39,32,67,41,41,32,
+40,66,32,95,52,57,50,41,41,41,32,40,40,67,39,32,40,67,39,32,
+66,41,41,32,40,40,66,32,40,66,32,95,53,48,51,41,41,32,95,53,
+48,51,41,41,41,41,41,41,32,40,40,65,32,58,56,53,57,32,40,40,
+66,32,40,95,50,56,52,32,40,95,52,51,50,32,40,40,95,50,56,52,
+32,40,40,67,32,40,95,53,57,53,32,95,51,49,53,41,41,32,40,40,
+95,53,56,49,32,95,51,49,48,41,32,40,95,51,57,50,32,35,49,41,
+41,41,41,32,95,52,52,57,41,41,41,41,32,95,56,53,56,41,41,32,
+40,40,65,32,58,56,54,48,32,40,40,67,32,40,40,40,67,39,32,66,
+41,32,40,40,40,83,39,32,40,95,56,53,57,32,40,95,50,50,51,32,
+95,49,48,55,56,41,41,41,32,40,40,66,32,40,95,50,56,50,32,40,
+95,52,51,50,32,40,40,67,32,40,95,50,50,52,32,95,49,48,55,56,
+41,41,32,95,49,48,57,57,41,41,41,41,32,40,95,52,51,49,32,95,
+54,54,52,41,41,41,32,73,41,41,32,40,40,66,32,90,41,32,40,40,
+83,32,80,41,32,40,40,40,67,39,32,66,41,32,80,41,32,40,90,32,
+40,90,32,40,40,40,83,39,32,95,50,56,50,41,32,40,40,66,32,40,
+95,49,48,49,51,32,95,55,54,48,41,41,32,40,95,57,55,57,32,95,
+57,56,49,41,41,41,32,40,40,66,32,40,95,53,48,52,32,34,100,117,
+112,108,105,99,97,116,101,32,100,101,102,105,110,105,116,105,111,110,32,34,
+41,41,32,95,49,48,56,56,41,41,41,41,41,41,41,41,41,32,40,95,
+50,55,32,34,99,104,101,99,107,68,117,112,34,41,41,41,32,40,40,65,
+32,58,56,54,49,32,40,40,83,32,73,41,32,40,40,40,83,39,32,40,
+67,39,32,67,41,41,32,40,40,40,83,39,32,66,41,32,40,40,66,32,
+67,41,32,40,40,40,83,39,32,80,41,32,75,41,32,40,90,32,75,41,
+41,41,41,32,40,40,40,83,39,32,40,67,39,32,40,67,39,32,67,41,
+41,41,32,40,40,40,83,39,32,66,41,32,40,66,39,32,40,40,66,32,
+67,41,32,40,40,40,83,39,32,80,41,32,75,41,32,40,90,32,75,41,
+41,41,41,41,32,40,40,40,67,39,32,40,83,39,32,40,67,39,32,40,
+67,39,32,67,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,
+67,39,32,40,67,39,32,67,41,41,41,41,32,40,40,66,32,40,40,83,
+39,32,40,83,39,32,66,41,41,32,40,40,66,32,40,66,32,40,67,39,
+32,83,39,41,41,41,32,40,40,66,32,40,66,32,40,66,32,83,41,41,
+41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,
+95,54,57,41,41,41,41,32,40,40,66,32,40,66,32,40,67,39,32,89,
+41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,
+39,32,83,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,
+39,32,40,83,39,32,67,41,41,41,41,32,40,40,66,32,40,66,32,40,
+66,32,40,66,32,40,67,32,40,40,83,32,73,41,32,40,90,32,40,95,
+51,55,32,95,54,56,41,41,41,41,41,41,41,41,32,40,40,40,67,39,
+32,40,67,39,32,40,67,39,32,66,41,41,41,32,40,40,66,32,40,66,
+32,40,66,32,40,83,39,32,83,41,41,41,41,32,40,40,40,67,39,32,
+40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,83,41,41,41,
+41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,
+32,40,67,39,32,83,41,41,41,41,41,32,40,40,40,67,39,32,40,67,
+39,32,40,67,39,32,67,41,41,41,32,40,40,66,32,40,66,32,40,66,
+32,40,40,67,39,32,67,39,41,32,83,39,41,41,41,41,32,40,40,40,
+67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,83,39,32,67,
+41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,
+40,67,39,32,40,83,39,32,67,41,41,41,41,41,32,40,40,40,67,39,
+32,40,67,39,32,40,67,39,32,67,41,41,41,32,40,40,66,32,40,66,
+32,40,66,32,40,40,67,39,32,83,39,41,32,67,39,41,41,41,41,32,
+40,40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,
+32,40,67,39,32,40,67,39,32,67,41,41,41,41,32,40,40,66,32,40,
+66,32,67,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,
+67,39,32,67,39,41,41,32,40,40,66,32,40,66,32,95,49,51,49,41,
+41,32,40,67,32,40,95,50,50,51,32,95,49,48,55,56,41,41,41,41,
+41,32,40,67,32,40,95,50,50,51,32,95,49,48,55,56,41,41,41,41,
+41,41,32,40,40,66,32,40,40,95,51,54,32,95,54,56,41,32,40,95,
+55,50,32,95,49,51,53,41,41,41,32,40,95,51,55,32,95,54,56,41,
+41,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,41,
+32,75,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,
+41,32,75,41,41,41,32,40,40,40,83,39,32,40,67,39,32,66,41,41,
+32,40,40,66,32,40,66,32,40,95,49,53,32,95,54,55,41,41,41,32,
+40,66,32,40,40,95,50,57,56,32,95,54,54,41,32,95,56,56,48,41,
+41,41,41,32,73,41,41,41,41,32,40,40,67,39,32,66,41,32,40,40,
+66,32,40,95,50,57,56,32,95,54,54,41,41,32,95,56,56,49,41,41,
+41,41,32,40,90,32,40,95,51,55,32,95,54,56,41,41,41,41,41,32,
+95,49,51,52,41,41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,
+66,39,32,40,66,39,32,40,66,39,32,40,66,39,32,40,66,39,32,80,
+41,41,41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,66,39,32,
+40,66,39,32,40,66,39,32,40,66,39,32,80,41,41,41,41,41,32,40,
+40,40,67,39,32,66,41,32,40,66,39,32,40,66,39,32,40,66,39,32,
+40,40,66,32,95,50,56,50,41,32,95,56,56,49,41,41,41,41,41,32,
+40,40,66,32,40,40,67,39,32,67,39,41,32,95,56,50,56,41,41,32,
+95,56,56,49,41,41,41,41,41,41,32,95,56,55,57,41,41,32,40,40,
+67,32,95,49,48,57,50,41,32,40,40,79,32,35,54,52,41,32,75,41,
+41,41,41,41,32,75,41,41,41,32,75,41,41,41,32,40,40,65,32,58,
+56,54,50,32,80,41,32,40,40,65,32,58,56,54,51,32,40,40,40,83,
+39,32,83,41,32,40,40,66,32,40,40,83,39,32,83,39,41,32,40,40,
+40,67,39,32,40,95,53,57,52,32,95,51,49,53,41,41,32,95,56,55,
+56,41,32,95,56,54,54,41,41,41,32,95,56,55,53,41,41,32,95,56,
+54,55,41,41,32,40,40,65,32,58,56,54,52,32,40,40,40,67,39,32,
+67,41,32,40,40,66,32,40,40,83,39,32,67,39,41,32,40,40,83,32,
+40,95,50,50,52,32,95,51,49,52,41,41,32,73,41,41,41,32,40,40,
+40,83,39,32,83,41,32,40,40,66,32,40,40,83,39,32,83,39,41,32,
+40,40,67,32,40,95,53,57,52,32,95,51,49,53,41,41,32,95,56,54,
+54,41,41,41,32,95,56,55,51,41,41,32,95,56,54,56,41,41,41,32,
+95,50,56,41,41,32,40,40,65,32,58,56,54,53,32,95,56,54,57,41,
+32,40,40,65,32,58,56,54,54,32,35,53,41,32,40,40,65,32,58,56,
+54,55,32,40,40,66,32,40,40,83,39,32,66,41,32,40,85,32,95,50,
+56,41,41,41,32,40,40,66,32,40,66,32,40,66,32,90,41,41,41,32,
+40,40,66,32,40,66,32,40,66,32,85,41,41,41,32,40,40,66,32,40,
+66,32,40,66,32,90,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
+85,41,41,41,32,40,40,66,32,40,66,32,40,66,32,90,41,41,41,32,
+40,40,40,67,39,32,40,67,39,32,40,67,39,32,80,41,41,41,32,40,
+40,66,32,40,66,32,40,66,32,90,41,41,41,32,40,40,40,67,39,32,
+66,41,32,40,66,39,32,40,66,39,32,95,56,57,51,41,41,41,32,40,
+40,66,32,40,66,32,95,52,51,49,41,41,32,40,40,66,32,40,66,32,
+85,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,40,40,
+83,39,32,95,56,57,50,41,32,40,85,32,75,41,41,32,40,85,32,65,
+41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,
+40,95,50,56,50,32,95,52,54,56,41,41,41,41,41,32,40,40,40,67,
+39,32,66,41,32,40,40,66,32,40,67,39,32,66,41,41,32,40,40,66,
+32,40,66,32,95,53,48,52,41,41,32,40,40,67,39,32,95,52,51,48,
+41,32,40,40,66,32,85,41,32,40,40,66,32,40,67,32,66,41,41,32,
+40,40,40,67,39,32,40,67,39,32,67,41,41,32,40,40,66,32,40,66,
+32,40,67,32,67,39,41,41,41,32,40,40,66,32,40,66,32,90,41,41,
+32,40,40,40,67,39,32,66,41,32,40,66,39,32,40,40,66,32,67,41,
+32,40,40,40,67,39,32,67,41,32,40,95,50,50,51,32,95,49,48,55,
+56,41,41,32,75,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,
+79,41,41,32,40,67,32,80,41,41,32,75,41,41,41,41,41,32,40,75,
+32,75,41,41,41,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,
+32,79,41,41,32,40,40,67,39,32,80,41,32,40,40,67,32,95,52,56,
+54,41,32,95,49,48,57,57,41,41,41,32,75,41,41,41,41,41,41,41,
+41,41,32,40,75,32,95,50,56,41,41,41,41,41,41,41,41,41,32,40,
+40,65,32,58,56,54,56,32,40,40,40,67,39,32,40,67,39,32,83,41,
+41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,41,
+32,40,40,66,32,40,66,32,40,66,32,40,40,83,39,32,66,41,32,40,
+40,66,32,95,50,56,50,41,32,95,56,57,50,41,41,41,41,41,32,40,
+40,66,32,40,66,32,40,40,67,39,32,40,83,39,32,66,41,41,32,40,
+40,66,32,40,66,32,95,50,56,50,41,41,32,40,89,32,40,40,66,32,
+40,40,67,39,32,66,41,32,83,41,41,32,40,40,40,83,39,32,40,83,
+39,32,40,83,39,32,67,41,41,41,32,40,40,66,32,40,66,32,40,66,
+32,40,67,32,83,39,41,41,41,41,32,40,40,66,32,40,67,32,40,83,
+39,32,66,41,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,67,
+39,32,67,41,41,41,41,41,32,40,40,66,32,40,67,32,40,83,39,32,
+66,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,40,67,39,32,
+66,41,32,40,40,66,32,95,56,56,48,41,32,40,40,66,32,40,95,56,
+56,48,32,40,95,56,56,50,32,40,95,57,53,54,32,34,115,101,113,34,
+41,41,41,41,32,95,56,55,57,41,41,41,41,41,41,32,40,67,39,32,
+67,41,41,41,41,41,41,41,41,41,41,32,40,40,40,67,39,32,40,67,
+39,32,66,41,41,32,40,40,66,32,40,66,32,40,83,39,32,95,50,56,
+50,41,41,41,32,40,40,66,32,40,66,32,40,66,32,95,56,57,50,41,
+41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,67,39,32,
+95,52,51,49,41,41,32,40,40,66,32,67,41,32,40,40,40,67,39,32,
+67,41,32,40,67,32,40,95,50,50,51,32,95,51,49,52,41,41,41,32,
+95,49,48,57,57,41,41,41,41,32,40,40,66,32,40,40,95,50,48,55,
+32,95,50,49,57,41,32,35,48,41,41,32,40,40,67,32,40,95,53,55,
+54,32,95,51,49,48,41,41,32,35,49,41,41,41,41,41,41,32,40,40,
+66,32,40,40,67,39,32,95,56,57,51,41,32,95,56,55,57,41,41,32,
+40,95,52,51,49,32,95,56,55,57,41,41,41,41,41,41,32,40,95,49,
+48,56,51,32,34,36,102,34,41,41,41,32,40,40,66,32,40,95,52,51,
+48,32,40,85,32,40,90,32,40,40,40,67,39,32,79,41,32,40,40,66,
+32,95,49,48,56,51,41,32,40,40,66,32,40,95,53,48,52,32,34,36,
+120,34,41,41,32,40,95,49,56,52,50,32,95,51,49,54,41,41,41,41,
+32,75,41,41,41,41,41,32,40,95,52,53,48,32,40,40,95,50,48,53,
+32,95,50,49,57,41,32,35,48,41,41,41,41,41,32,40,40,65,32,58,
+56,54,57,32,40,40,66,32,67,41,32,95,56,56,52,41,41,32,40,40,
+65,32,58,56,55,48,32,40,40,95,52,51,51,32,40,95,56,56,52,32,
+95,56,55,49,41,41,32,95,56,55,50,41,41,32,40,40,65,32,58,56,
+55,49,32,40,95,56,56,50,32,40,95,57,53,54,32,40,40,79,32,35,
+55,57,41,32,75,41,41,41,41,32,40,40,65,32,58,56,55,50,32,40,
+95,56,56,50,32,40,95,57,53,54,32,40,40,79,32,35,55,53,41,32,
+75,41,41,41,41,32,40,40,65,32,58,56,55,51,32,40,90,32,40,40,
+40,67,39,32,40,83,39,32,40,40,83,39,32,95,50,56,50,41,32,95,
+56,57,50,41,41,41,32,40,40,66,32,40,40,67,39,32,40,83,39,32,
+95,50,56,50,41,41,32,40,89,32,40,40,66,32,40,40,67,39,32,66,
+41,32,83,41,41,32,40,40,40,83,39,32,40,83,39,32,40,83,39,32,
+67,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,67,32,83,39,
+41,41,41,41,32,40,40,66,32,40,67,32,40,83,39,32,66,41,41,41,
+32,40,40,66,32,40,66,32,90,41,41,32,40,67,39,32,67,41,41,41,
+41,41,32,40,40,66,32,40,67,32,40,83,39,32,66,41,41,41,32,40,
+40,66,32,40,66,32,40,66,32,40,40,67,39,32,66,41,32,40,40,66,
+32,95,56,56,48,41,32,40,40,66,32,40,95,56,56,48,32,40,95,56,
+56,50,32,40,95,57,53,54,32,34,115,101,113,34,41,41,41,41,32,95,
+56,55,57,41,41,41,41,41,41,32,40,67,39,32,67,41,41,41,41,41,
+41,41,41,32,40,40,66,32,40,66,32,95,56,55,52,41,41,32,40,40,
+40,67,39,32,66,41,32,40,40,66,32,79,41,32,40,40,66,32,95,56,
+56,50,41,32,95,57,53,48,41,41,41,32,40,40,40,67,39,32,79,41,
+32,40,40,66,32,95,56,55,52,41,32,40,95,52,51,49,32,95,56,55,
+57,41,41,41,32,75,41,41,41,41,41,32,40,40,66,32,40,95,52,51,
+48,32,40,85,32,40,90,32,40,40,40,67,39,32,79,41,32,40,40,66,
+32,95,49,48,56,51,41,32,40,40,66,32,40,95,53,48,52,32,34,36,
+120,34,41,41,32,40,95,49,56,52,50,32,95,51,49,54,41,41,41,41,
+32,75,41,41,41,41,41,32,40,95,52,53,48,32,40,40,95,50,48,53,
+32,95,50,49,57,41,32,35,48,41,41,41,41,41,41,32,40,40,65,32,
+58,56,55,52,32,40,40,40,67,39,32,40,40,83,39,32,95,50,56,50,
+41,32,95,56,56,49,41,41,32,40,40,67,39,32,95,56,57,51,41,32,
+95,56,55,57,41,41,32,40,95,49,48,56,51,32,34,36,116,34,41,41,
+41,32,40,40,65,32,58,56,55,53,32,40,40,40,67,39,32,40,67,39,
+32,67,41,41,32,40,40,67,32,40,40,40,67,39,32,67,39,41,32,40,
+40,66,32,67,39,41,32,40,40,66,32,67,39,41,32,40,66,39,32,95,
+56,56,48,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,40,
+83,39,32,95,50,56,50,41,32,95,56,56,49,41,41,41,41,32,40,40,
+66,32,40,66,32,40,40,83,39,32,66,41,32,40,40,66,32,95,50,56,
+50,41,32,95,56,56,49,41,41,41,41,32,40,40,66,32,40,67,39,32,
+67,41,41,32,40,40,40,83,39,32,40,67,39,32,67,41,41,32,40,40,
+66,32,40,40,67,39,32,67,41,32,40,40,40,67,39,32,67,41,32,40,
+40,66,32,40,40,67,39,32,95,56,55,54,41,32,95,56,55,57,41,41,
+32,95,56,55,57,41,41,32,35,48,41,41,41,32,95,56,55,56,41,41,
+32,40,40,66,32,40,95,52,57,53,32,40,40,67,32,66,41,32,40,40,
+66,32,90,41,32,40,40,66,32,90,41,32,40,40,67,32,66,41,32,40,
+40,66,32,90,41,32,40,40,66,32,90,41,32,40,95,53,57,52,32,95,
+51,49,53,41,41,41,41,41,41,41,41,41,32,40,95,52,51,48,32,40,
+85,32,40,40,67,32,66,41,32,40,40,40,67,39,32,40,67,39,32,40,
+67,39,32,79,41,41,41,32,40,40,67,39,32,40,67,39,32,67,41,41,
+32,40,40,66,32,80,41,32,95,56,55,55,41,41,41,32,75,41,41,41,
+41,41,41,41,41,41,41,41,32,40,95,49,48,56,51,32,34,36,110,34,
+41,41,41,32,40,95,49,48,56,51,32,34,36,116,116,34,41,41,41,32,
+40,40,65,32,58,56,55,54,32,40,40,66,32,89,41,32,40,40,40,67,
+39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,
+39,32,67,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
+40,66,32,40,66,32,40,83,32,40,83,39,32,66,41,41,41,41,41,41,
+41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
+32,40,66,32,40,66,32,40,67,32,66,41,41,41,41,41,41,41,41,41,
+32,40,40,40,83,39,32,66,41,32,40,40,66,32,40,83,39,32,40,83,
+39,32,40,83,39,32,66,41,41,41,41,32,40,40,66,32,40,66,32,40,
+66,32,40,66,32,40,83,39,32,40,67,39,32,67,41,41,41,41,41,41,
+32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
+40,40,67,39,32,67,39,41,32,40,40,66,32,67,39,41,32,67,39,41,
+41,41,41,41,41,41,41,32,40,40,40,67,39,32,40,83,39,32,40,67,
+39,32,67,41,41,41,32,40,40,66,32,40,66,32,40,40,67,39,32,40,
+67,39,32,67,39,41,41,32,40,40,66,32,40,66,32,83,39,41,41,32,
+40,40,66,32,40,66,32,67,39,41,41,32,40,40,66,32,40,66,32,83,
+39,41,41,32,40,40,66,32,40,66,32,83,39,41,41,32,40,40,40,67,
+39,32,40,67,39,32,40,95,50,50,51,32,95,51,49,52,41,41,41,32,
+40,67,32,40,95,53,55,54,32,95,51,49,48,41,41,41,32,35,49,41,
+41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,67,39,32,67,
+41,41,41,32,40,40,40,67,39,32,66,41,32,40,66,39,32,40,40,66,
+32,40,67,39,32,67,39,41,41,32,40,40,66,32,40,66,32,67,39,41,
+41,32,40,40,66,32,40,66,32,95,56,54,53,41,41,32,40,40,40,67,
+39,32,66,41,32,40,95,56,56,52,32,40,95,56,56,50,32,40,95,57,
+53,54,32,34,61,61,34,41,41,41,41,32,40,40,66,32,95,56,56,50,
+41,32,95,57,53,48,41,41,41,41,41,41,41,32,85,41,41,41,41,32,
+85,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,
+40,66,32,40,66,32,90,41,41,41,41,41,41,32,40,40,66,32,40,66,
+32,40,66,32,40,66,32,40,66,32,40,66,32,90,41,41,41,41,41,41,
+32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,
+67,39,32,66,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
+40,66,32,40,66,32,67,41,41,41,41,41,32,40,40,40,67,39,32,40,
+67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,83,
+41,41,41,41,41,41,32,40,40,40,67,39,32,40,83,39,32,40,83,39,
+32,40,67,39,32,66,41,41,41,41,32,40,40,66,32,40,66,32,40,66,
+32,40,66,32,40,83,39,32,40,83,39,32,83,41,41,41,41,41,41,32,
+40,40,40,67,39,32,66,41,32,40,66,39,32,40,66,39,32,40,66,39,
+32,40,66,39,32,40,40,66,32,40,83,39,32,95,56,54,53,41,41,32,
+40,40,40,67,39,32,66,41,32,40,95,56,56,52,32,40,95,56,56,50,
+32,40,95,57,53,54,32,40,40,79,32,35,54,48,41,32,75,41,41,41,
+41,41,32,40,40,66,32,95,56,56,50,41,32,95,57,53,48,41,41,41,
+41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,67,39,32,
+67,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,
+66,41,41,41,32,40,66,32,40,66,32,67,41,41,41,32,40,85,32,40,
+40,66,32,40,80,32,40,40,40,110,111,77,97,116,99,104,32,75,41,32,
+35,48,41,32,35,48,41,41,41,32,40,40,66,32,90,41,32,40,40,66,
+32,85,41,32,40,90,32,40,90,32,75,41,41,41,41,41,41,41,41,41,
+41,41,32,40,40,66,32,40,66,32,40,66,32,40,67,39,32,67,41,41,
+41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,66,41,41,
+41,32,40,40,66,32,40,66,32,40,66,32,67,41,41,41,32,40,66,32,
+67,41,41,41,32,40,85,32,40,75,32,40,40,83,32,40,85,32,40,40,
+40,110,111,77,97,116,99,104,32,75,41,32,35,48,41,32,35,48,41,41,
+41,32,40,40,66,32,90,41,32,40,40,66,32,85,41,32,40,90,32,40,
+90,32,75,41,41,41,41,41,41,41,41,41,41,41,32,40,85,32,40,75,
+32,40,40,80,32,40,40,40,110,111,77,97,116,99,104,32,75,41,32,35,
+48,41,32,35,48,41,41,32,40,90,32,40,85,32,40,90,32,75,41,41,
+41,41,41,41,41,41,41,32,40,40,40,83,39,32,95,52,54,50,41,32,
+40,40,40,67,39,32,40,95,51,57,57,32,95,51,49,49,41,41,32,95,
+52,52,57,41,32,35,50,41,41,32,73,41,41,41,41,41,41,41,41,32,
+40,40,40,67,39,32,66,41,32,40,66,39,32,40,40,66,32,95,50,56,
+50,41,32,95,56,56,48,41,41,41,32,95,56,57,50,41,41,41,41,32,
+40,40,65,32,58,56,55,55,32,40,40,80,32,40,40,66,32,40,66,32,
+40,95,50,56,50,32,95,52,52,57,41,41,41,32,40,40,67,39,32,95,
+52,54,52,41,32,40,40,40,67,39,32,95,50,56,52,41,32,40,67,32,
+40,95,50,50,52,32,95,49,48,55,56,41,41,41,32,95,54,54,52,41,
+41,41,41,32,40,75,32,95,50,56,41,41,41,32,40,40,65,32,58,56,
+55,56,32,40,40,80,32,95,50,56,41,32,40,90,32,40,85,32,40,90,
+32,40,85,32,40,90,32,40,40,80,32,40,90,32,95,52,52,57,41,41,
+32,40,75,32,95,50,56,41,41,41,41,41,41,41,41,41,32,40,40,65,
+32,58,56,55,57,32,40,40,66,32,90,41,32,40,40,66,32,90,41,32,
+40,40,66,32,90,41,32,85,41,41,41,41,32,40,40,65,32,58,56,56,
+48,32,40,40,66,32,90,41,32,40,40,66,32,40,66,32,90,41,41,32,
+40,40,66,32,40,66,32,90,41,41,32,80,41,41,41,41,32,40,40,65,
+32,58,56,56,49,32,40,40,66,32,90,41,32,40,40,66,32,90,41,32,
+40,40,66,32,40,66,32,90,41,41,32,80,41,41,41,41,32,40,40,65,
+32,58,56,56,50,32,40,90,32,40,90,32,40,90,32,85,41,41,41,41,
+32,40,40,65,32,58,56,56,51,32,40,40,95,50,50,50,32,40,40,40,
+67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,67,32,40,
+40,67,32,83,39,41,32,40,40,40,67,39,32,67,41,32,40,40,40,67,
+39,32,67,41,32,40,40,67,32,40,40,67,32,67,39,41,32,40,95,50,
+50,51,32,95,49,48,55,56,41,41,41,32,40,75,50,32,95,49,51,52,
+41,41,41,32,40,75,50,32,95,49,51,52,41,41,41,32,40,75,32,95,
+49,51,52,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,67,41,
+41,32,40,40,67,32,40,40,40,67,39,32,67,39,41,32,40,40,66,32,
+67,39,41,32,40,85,32,40,75,32,95,49,51,52,41,41,41,41,32,40,
+40,40,67,39,32,66,41,32,40,40,66,32,40,67,39,32,66,41,41,32,
+40,40,66,32,40,66,32,95,49,51,49,41,41,32,40,95,50,50,51,32,
+95,56,56,51,41,41,41,41,32,40,95,50,50,51,32,95,56,56,51,41,
+41,41,41,32,40,75,50,32,95,49,51,52,41,41,41,32,40,75,32,95,
+49,51,52,41,41,41,41,32,40,40,67,32,40,40,40,67,39,32,67,39,
+41,32,40,40,66,32,67,39,41,32,40,40,80,32,40,75,32,95,49,51,
+52,41,41,32,40,75,50,32,95,49,51,52,41,41,41,41,32,40,40,40,
+67,39,32,66,41,32,40,40,66,32,40,67,39,32,66,41,41,32,40,40,
+66,32,40,66,32,95,49,51,49,41,41,32,40,95,50,50,51,32,95,49,
+48,55,56,41,41,41,41,32,40,95,50,50,51,32,95,56,56,51,41,41,
+41,41,32,40,75,32,95,49,51,52,41,41,41,41,32,40,40,40,67,39,
+32,66,41,32,40,40,67,32,40,40,80,32,40,75,32,95,49,51,52,41,
+41,32,40,75,50,32,95,49,51,52,41,41,41,32,40,75,50,32,95,49,
+51,52,41,41,41,32,40,95,50,50,51,32,95,57,53,56,41,41,41,41,
+32,40,95,50,50,54,32,95,56,56,51,41,41,41,32,40,40,65,32,58,
+56,56,52,32,40,40,66,32,40,66,32,95,56,56,48,41,41,32,95,56,
+56,48,41,41,32,40,40,65,32,58,56,56,53,32,40,40,66,32,40,66,
+32,40,66,32,95,56,56,48,41,41,41,32,95,56,56,52,41,41,32,40,
+40,65,32,58,56,56,54,32,40,95,56,56,50,32,40,95,57,53,54,32,
+40,40,79,32,35,54,55,41,32,75,41,41,41,41,32,40,40,65,32,58,
+56,56,55,32,40,40,40,95,49,56,52,48,32,40,95,49,56,52,52,32,
+95,56,56,55,41,41,32,40,40,95,50,56,52,32,95,49,56,51,50,41,
+32,95,56,56,56,41,41,32,40,95,49,56,52,54,32,95,56,56,55,41,
+41,41,32,40,40,65,32,58,56,56,56,32,40,40,67,32,40,40,67,32,
+40,40,80,32,95,49,48,56,57,41,32,40,40,66,32,40,66,32,40,95,
+50,56,50,32,95,49,55,57,55,41,41,41,32,40,40,40,67,39,32,66,
+41,32,40,40,66,32,95,49,56,49,56,41,32,95,56,56,56,41,41,32,
+95,56,56,56,41,41,41,41,32,40,40,66,32,40,66,32,40,95,50,56,
+50,32,95,49,55,57,55,41,41,41,32,40,40,40,67,39,32,66,41,32,
+40,40,66,32,95,49,56,49,56,41,32,40,40,40,67,39,32,95,49,56,
+49,55,41,32,40,40,66,32,40,95,49,56,49,55,32,40,95,49,55,56,
+55,32,40,40,79,32,35,57,50,41,32,75,41,41,41,41,32,95,49,48,
+56,57,41,41,32,40,95,49,55,56,55,32,40,40,79,32,35,52,54,41,
+32,75,41,41,41,41,41,32,95,56,56,56,41,41,41,41,32,40,40,66,
+32,95,49,55,56,55,41,32,95,49,48,52,49,41,41,41,32,40,40,65,
+32,58,56,56,57,32,40,40,66,32,89,41,32,40,40,40,67,39,32,40,
+67,39,32,40,67,39,32,83,41,41,41,32,40,40,40,83,39,32,40,83,
+39,32,40,83,39,32,83,41,41,41,32,40,40,40,67,39,32,66,41,32,
+40,40,66,32,40,83,39,32,67,41,41,32,40,40,66,32,40,66,32,40,
+83,32,73,41,41,41,32,40,40,66,32,40,67,39,32,67,41,41,32,40,
+40,66,32,67,41,32,40,67,32,40,95,50,50,51,32,95,49,48,55,56,
+41,41,41,41,41,41,41,32,40,40,40,83,39,32,40,83,39,32,40,67,
+39,32,66,41,41,41,32,40,66,32,40,66,32,95,56,56,48,41,41,41,
+32,73,41,41,41,32,40,40,66,32,40,66,32,40,66,32,67,41,41,41,
+32,40,40,40,67,39,32,66,41,32,40,66,39,32,40,40,66,32,40,83,
+39,32,67,39,41,41,32,40,95,50,50,51,32,95,49,48,55,56,41,41,
+41,41,32,40,40,40,83,39,32,40,83,39,32,83,41,41,32,40,40,66,
+32,40,40,83,39,32,40,83,39,32,83,39,41,41,32,40,40,66,32,40,
+67,32,40,95,52,55,50,32,95,49,48,55,56,41,41,41,32,95,56,57,
+48,41,41,41,32,40,66,32,40,40,67,39,32,66,41,32,95,56,56,49,
+41,41,41,41,32,40,40,40,67,39,32,40,83,39,32,40,67,39,32,40,
+83,39,32,40,83,32,95,56,56,49,41,41,41,41,41,32,40,40,40,67,
+39,32,40,67,39,32,66,41,41,32,40,40,66,32,66,39,41,32,66,39,
+41,41,32,40,40,40,67,39,32,67,39,41,32,95,56,56,57,41,32,95,
+56,55,57,41,41,41,32,40,40,66,32,40,66,32,95,52,54,56,41,41,
+32,40,40,40,67,39,32,40,67,39,32,95,52,51,48,41,41,32,40,40,
+40,67,39,32,40,67,39,32,66,41,41,32,40,40,40,67,39,32,66,41,
+32,40,40,66,32,83,41,32,40,40,40,67,39,32,40,67,39,32,95,49,
+51,50,41,41,32,40,40,66,32,40,67,32,40,95,52,55,50,32,95,49,
+48,55,56,41,41,41,32,95,56,57,49,41,41,32,75,41,41,41,32,40,
+40,40,67,39,32,83,41,32,40,40,40,67,39,32,40,67,39,32,95,49,
+51,50,41,41,32,40,40,66,32,40,67,32,40,95,52,55,50,32,95,49,
+48,55,56,41,41,41,32,95,56,57,49,41,41,32,75,41,41,32,40,40,
+67,32,79,41,32,75,41,41,41,41,32,40,40,66,32,95,49,48,56,51,
+41,32,40,40,66,32,40,95,53,48,52,32,40,40,79,32,35,57,55,41,
+32,75,41,41,41,32,40,95,49,56,52,50,32,95,51,49,54,41,41,41,
+41,41,32,40,40,95,50,48,53,32,95,50,49,57,41,32,35,48,41,41,
+41,41,41,41,41,41,41,32,75,41,41,41,32,40,40,65,32,58,56,57,
+48,32,40,40,67,32,40,40,67,32,40,40,80,32,40,40,67,32,79,41,
+32,75,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,95,53,
+48,52,41,32,95,56,57,48,41,41,32,95,56,57,48,41,41,41,32,40,
+40,40,67,39,32,66,41,32,40,95,52,56,51,32,40,95,50,50,51,32,
+95,49,48,55,56,41,41,41,32,95,56,57,48,41,41,41,32,40,75,32,
+95,53,48,50,41,41,41,32,40,40,65,32,58,56,57,49,32,40,40,67,
+32,40,40,67,32,40,40,80,32,40,40,67,32,79,41,32,75,41,41,32,
+40,40,40,67,39,32,66,41,32,40,40,66,32,95,53,48,52,41,32,95,
+56,57,49,41,41,32,95,56,57,49,41,41,41,32,40,40,40,67,39,32,
+66,41,32,95,53,48,51,41,32,95,56,57,49,41,41,41,32,40,75,32,
+95,53,48,50,41,41,41,32,40,40,65,32,58,56,57,50,32,40,67,32,
+40,95,52,51,51,32,95,56,56,49,41,41,41,32,40,40,65,32,58,56,
+57,51,32,40,95,52,51,54,32,95,56,56,48,41,41,32,40,40,65,32,
+58,56,57,52,32,40,40,67,32,40,40,67,32,40,40,80,32,40,40,66,
+32,95,53,48,52,41,32,95,49,48,56,56,41,41,32,40,40,66,32,40,
+66,32,40,95,50,56,52,32,40,95,53,48,52,32,40,40,79,32,35,52,
+48,41,32,75,41,41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,
+40,66,32,95,50,56,52,41,32,95,56,57,52,41,41,32,40,40,66,32,
+40,95,50,56,52,32,40,95,53,48,52,32,40,40,79,32,35,51,50,41,
+32,75,41,41,41,41,32,40,40,40,67,39,32,95,50,56,52,41,32,95,
+56,57,52,41,32,40,95,53,48,52,32,40,40,79,32,35,52,49,41,32,
+75,41,41,41,41,41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,
+40,66,32,95,50,56,52,41,32,40,40,66,32,95,53,48,52,41,32,40,
+40,66,32,40,95,53,48,52,32,34,40,92,57,50,38,34,41,41,32,40,
+40,40,67,39,32,95,53,48,52,41,32,95,49,48,56,56,41,32,40,40,
+79,32,35,51,50,41,32,75,41,41,41,41,41,41,32,40,40,40,67,39,
+32,95,50,56,52,41,32,95,56,57,52,41,32,40,95,53,48,52,32,40,
+40,79,32,35,52,49,41,32,75,41,41,41,41,41,41,32,40,40,83,32,
+40,40,67,32,66,41,32,40,40,40,83,39,32,83,41,32,40,40,66,32,
+40,40,83,39,32,83,39,41,32,40,40,67,32,60,41,32,35,51,41,41,
+41,32,40,40,40,83,39,32,83,41,32,40,40,66,32,40,40,83,39,32,
+83,39,41,32,40,40,67,32,60,41,32,35,53,41,41,41,32,40,40,40,
+67,39,32,40,67,39,32,66,41,41,32,40,67,32,40,40,67,32,61,61,
+41,32,35,53,41,41,41,32,40,85,32,40,40,83,32,40,40,83,32,40,
+40,40,67,39,32,40,95,53,57,53,32,95,51,49,53,41,41,32,95,52,
+52,57,41,32,35,49,41,41,32,40,40,66,32,95,56,57,52,41,32,95,
+56,57,54,41,41,41,32,40,40,66,32,95,53,48,52,41,32,95,56,57,
+53,41,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,
+41,32,40,67,32,40,40,67,32,61,61,41,32,35,51,41,41,41,32,40,
+85,32,40,75,32,95,50,56,41,41,41,41,41,41,32,40,40,40,67,39,
+32,40,67,39,32,66,41,41,32,40,67,32,40,40,67,32,61,61,41,32,
+35,49,41,41,41,32,40,85,32,40,75,32,95,50,56,41,41,41,41,41,
+41,32,40,40,66,32,95,53,48,52,41,32,95,49,48,52,49,41,41,41,
+41,32,40,40,65,32,58,56,57,53,32,40,40,66,32,40,95,53,48,51,
+32,35,51,52,41,41,32,40,40,40,67,39,32,95,53,48,52,41,32,40,
+95,52,51,48,32,40,40,83,32,40,40,83,32,40,40,40,83,39,32,95,
+49,51,48,41,32,40,40,67,32,40,95,50,50,51,32,95,49,52,49,41,
+41,32,35,51,52,41,41,32,40,40,40,83,39,32,95,49,51,48,41,32,
+40,40,67,32,40,95,50,50,51,32,95,49,52,49,41,41,32,35,57,50,
+41,41,32,40,40,40,83,39,32,95,49,51,48,41,32,40,40,67,32,40,
+95,53,57,51,32,95,49,52,50,41,41,32,35,51,50,41,41,32,40,40,
+67,32,40,95,53,57,53,32,95,49,52,50,41,41,32,35,49,50,54,41,
+41,41,41,41,32,40,40,67,32,79,41,32,75,41,41,41,32,40,40,66,
+32,40,95,53,48,51,32,35,57,50,41,41,32,40,40,40,67,39,32,95,
+53,48,52,41,32,40,40,66,32,40,95,49,56,52,50,32,95,51,49,54,
+41,41,32,95,49,52,55,41,41,32,40,40,79,32,35,51,56,41,32,75,
+41,41,41,41,41,41,32,40,40,79,32,35,51,52,41,32,75,41,41,41,
+41,32,40,40,65,32,58,56,57,54,32,40,40,95,50,56,52,32,95,56,
+55,48,41,32,40,95,52,51,49,32,40,40,95,50,56,52,32,95,56,56,
+50,41,32,40,40,95,50,56,52,32,95,57,53,48,41,32,95,49,52,55,
+41,41,41,41,41,32,40,40,65,32,58,56,57,55,32,40,40,66,32,40,
+66,32,67,41,41,32,80,41,41,32,40,40,65,32,58,56,57,56,32,40,
+40,66,32,90,41,32,40,40,66,32,90,41,32,40,40,66,32,90,41,32,
+85,41,41,41,41,32,40,40,65,32,58,56,57,57,32,40,90,32,40,40,
+66,32,90,41,32,40,40,66,32,90,41,32,85,41,41,41,41,32,40,40,
+65,32,58,57,48,48,32,40,90,32,40,90,32,40,40,66,32,90,41,32,
+85,41,41,41,41,32,40,40,65,32,58,57,48,49,32,40,90,32,40,90,
+32,40,90,32,85,41,41,41,41,32,40,40,65,32,58,57,48,50,32,40,
+40,66,32,40,66,32,40,80,32,35,48,41,41,41,32,80,41,41,32,40,
+40,65,32,58,57,48,51,32,40,40,66,32,40,66,32,40,80,32,35,49,
+41,41,41,32,80,41,41,32,40,40,65,32,58,57,48,52,32,40,40,66,
+32,40,66,32,40,80,32,35,50,41,41,41,32,80,41,41,32,40,40,65,
+32,58,57,48,53,32,40,40,66,32,40,66,32,40,80,32,35,51,41,41,
+41,32,80,41,41,32,40,40,65,32,58,57,48,54,32,40,40,66,32,40,
+66,32,40,80,32,35,52,41,41,41,32,80,41,41,32,40,40,65,32,58,
+57,48,55,32,40,40,66,32,40,80,32,35,53,41,41,32,85,41,41,32,
+40,40,65,32,58,57,48,56,32,40,40,66,32,40,66,32,40,66,32,40,
+80,32,35,54,41,41,41,41,32,40,40,66,32,40,66,32,67,41,41,32,
+80,41,41,41,32,40,40,65,32,58,57,48,57,32,40,40,66,32,40,66,
+32,40,80,32,35,55,41,41,41,32,80,41,41,32,40,40,65,32,58,57,
+49,48,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,80,32,35,
+56,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,67,41,41,
+41,32,40,40,66,32,40,66,32,67,41,41,32,80,41,41,41,41,32,40,
+40,65,32,58,57,49,49,32,40,40,66,32,40,66,32,40,80,32,35,57,
+41,41,41,32,80,41,41,32,40,40,65,32,58,57,49,50,32,40,40,66,
+32,40,80,32,35,49,48,41,41,32,85,41,41,32,40,40,65,32,58,57,
+49,51,32,40,40,66,32,40,66,32,40,66,32,67,41,41,41,32,40,40,
+66,32,40,66,32,67,41,41,32,80,41,41,41,32,40,40,65,32,58,57,
+49,52,32,40,40,66,32,90,41,32,40,40,66,32,90,41,32,85,41,41,
+41,32,40,40,65,32,58,57,49,53,32,40,90,32,40,40,66,32,90,41,
+32,85,41,41,41,32,40,40,65,32,58,57,49,54,32,40,90,32,40,90,
+32,85,41,41,41,32,40,40,65,32,58,57,49,55,32,40,40,66,32,40,
+80,32,35,48,41,41,32,85,41,41,32,40,40,65,32,58,57,49,56,32,
+40,40,66,32,40,66,32,40,80,32,35,49,41,41,41,32,80,41,41,32,
+40,40,65,32,58,57,49,57,32,40,40,66,32,40,66,32,40,80,32,35,
+50,41,41,41,32,80,41,41,32,40,40,65,32,58,57,50,48,32,40,40,
+66,32,40,80,32,35,51,41,41,32,85,41,41,32,40,40,65,32,58,57,
+50,49,32,40,40,66,32,40,66,32,40,80,32,35,52,41,41,41,32,80,
+41,41,32,40,40,65,32,58,57,50,50,32,40,40,66,32,40,66,32,40,
+80,32,35,53,41,41,41,32,80,41,41,32,40,40,65,32,58,57,50,51,
+32,40,40,66,32,40,66,32,40,80,32,35,54,41,41,41,32,80,41,41,
+32,40,40,65,32,58,57,50,52,32,40,40,66,32,40,80,32,35,55,41,
+41,32,85,41,41,32,40,40,65,32,58,57,50,53,32,40,40,66,32,40,
+80,32,35,56,41,41,32,85,41,41,32,40,40,65,32,58,57,50,54,32,
+40,40,66,32,40,66,32,40,80,32,35,57,41,41,41,32,80,41,41,32,
+40,40,65,32,58,57,50,55,32,40,40,66,32,40,66,32,40,80,32,35,
+49,48,41,41,41,32,80,41,41,32,40,40,65,32,58,57,50,56,32,40,
+40,66,32,40,66,32,40,80,32,35,49,49,41,41,41,32,80,41,41,32,
+40,40,65,32,58,57,50,57,32,40,40,66,32,40,66,32,40,66,32,40,
+80,32,35,49,50,41,41,41,41,32,40,40,66,32,40,66,32,67,41,41,
+32,80,41,41,41,32,40,40,65,32,58,57,51,48,32,40,40,66,32,40,
+66,32,40,80,32,35,49,51,41,41,41,32,80,41,41,32,40,40,65,32,
+58,57,51,49,32,40,40,66,32,40,80,32,35,49,52,41,41,32,85,41,
+41,32,40,40,65,32,58,57,51,50,32,40,40,66,32,40,66,32,40,80,
+32,35,49,53,41,41,41,32,80,41,41,32,40,40,65,32,58,57,51,51,
+32,40,40,66,32,40,66,32,40,80,32,35,49,54,41,41,41,32,80,41,
+41,32,40,40,65,32,58,57,51,52,32,40,40,66,32,40,80,32,35,49,
+55,41,41,32,85,41,41,32,40,40,65,32,58,57,51,53,32,40,40,66,
+32,40,80,32,35,49,56,41,41,32,85,41,41,32,40,40,65,32,58,57,
+51,54,32,40,40,66,32,40,66,32,40,80,32,35,49,57,41,41,41,32,
+80,41,41,32,40,40,65,32,58,57,51,55,32,40,40,66,32,40,66,32,
+40,95,50,56,50,32,95,57,50,48,41,41,41,32,95,57,51,56,41,41,
+32,40,40,65,32,58,57,51,56,32,40,40,40,67,39,32,40,67,39,32,
+79,41,41,32,40,40,40,67,39,32,66,41,32,95,57,54,53,41,32,40,
+40,40,67,39,32,95,57,54,54,41,32,40,40,40,67,39,32,79,41,32,
+40,80,32,95,53,48,50,41,41,32,75,41,41,32,95,53,48,50,41,41,
+41,32,75,41,41,32,40,40,65,32,58,57,51,57,32,40,40,66,32,40,
+66,32,90,41,41,32,80,41,41,32,40,40,65,32,58,57,52,48,32,40,
+90,32,85,41,41,32,40,40,65,32,58,57,52,49,32,40,40,66,32,40,
+80,32,35,48,41,41,32,85,41,41,32,40,40,65,32,58,57,52,50,32,
+40,40,66,32,40,66,32,40,80,32,35,49,41,41,41,32,80,41,41,32,
+40,40,65,32,58,57,52,51,32,40,40,66,32,40,80,32,35,50,41,41,
+32,85,41,41,32,40,40,65,32,58,57,52,52,32,40,40,66,32,40,66,
+32,40,80,32,35,51,41,41,41,32,80,41,41,32,40,40,65,32,58,57,
+52,53,32,40,40,66,32,40,66,32,40,80,32,35,52,41,41,41,32,80,
+41,41,32,40,40,65,32,58,57,52,54,32,40,40,66,32,40,66,32,40,
+66,32,40,80,32,35,53,41,41,41,41,32,40,40,66,32,40,66,32,67,
+41,41,32,80,41,41,41,32,40,40,65,32,58,57,52,55,32,40,75,32,
+40,40,80,32,65,41,32,73,41,41,41,32,40,40,65,32,58,57,52,56,
+32,40,40,80,32,40,40,66,32,40,66,32,40,95,50,56,50,32,40,95,
+53,49,54,32,40,95,50,55,32,34,99,111,110,65,114,105,116,121,34,41,
+41,41,41,41,32,40,67,32,40,95,52,55,54,32,95,49,48,55,56,41,
+41,41,41,32,40,75,32,35,49,41,41,41,32,40,40,65,32,58,57,52,
+57,32,40,40,95,50,50,50,32,40,40,67,32,40,40,67,32,83,39,41,
+32,40,90,32,40,40,67,32,40,40,67,32,67,39,41,32,40,90,32,40,
+95,50,50,51,32,95,49,48,55,56,41,41,41,41,32,40,75,32,95,49,
+51,52,41,41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,85,32,
+40,75,50,32,95,49,51,52,41,41,41,32,40,95,50,50,51,32,95,49,
+48,55,56,41,41,41,41,32,40,95,50,50,54,32,95,57,52,57,41,41,
+41,32,40,40,65,32,58,57,53,48,32,40,40,66,32,40,80,32,35,48,
+41,41,32,85,41,41,32,40,40,65,32,58,57,53,49,32,40,40,66,32,
+40,80,32,35,49,41,41,32,85,41,41,32,40,40,65,32,58,57,53,50,
+32,40,40,66,32,40,80,32,35,50,41,41,32,85,41,41,32,40,40,65,
+32,58,57,53,51,32,40,40,66,32,40,80,32,35,51,41,41,32,85,41,
+41,32,40,40,65,32,58,57,53,52,32,40,40,66,32,40,80,32,35,52,
+41,41,32,85,41,41,32,40,40,65,32,58,57,53,53,32,40,40,66,32,
+40,80,32,35,53,41,41,32,85,41,41,32,40,40,65,32,58,57,53,54,
+32,40,40,66,32,40,80,32,35,54,41,41,32,85,41,41,32,40,40,65,
+32,58,57,53,55,32,40,40,66,32,40,80,32,35,55,41,41,32,85,41,
+41,32,40,40,65,32,58,57,53,56,32,40,40,95,50,50,50,32,40,40,
+67,32,66,41,32,40,40,40,83,39,32,83,41,32,40,40,66,32,40,40,
+83,39,32,83,39,41,32,40,40,67,32,60,41,32,35,52,41,41,41,32,
+40,40,40,83,39,32,83,41,32,40,40,66,32,40,40,83,39,32,83,39,
+41,32,40,40,67,32,60,41,32,35,54,41,41,41,32,40,40,40,83,39,
+32,67,41,32,40,40,66,32,40,40,67,39,32,83,39,41,32,40,40,67,
+32,60,41,32,35,55,41,41,41,32,40,40,66,32,85,41,32,40,40,67,
+32,66,41,32,40,40,66,32,40,40,67,39,32,66,41,32,40,40,67,32,
+40,40,67,32,61,61,41,32,35,55,41,41,32,95,49,51,52,41,41,41,
+32,40,40,66,32,85,41,32,40,95,50,50,51,32,95,49,52,51,41,41,
+41,41,41,41,41,32,40,40,66,32,85,41,32,40,40,67,32,66,41,32,
+40,40,66,32,40,40,67,39,32,66,41,32,40,40,67,32,40,40,67,32,
+61,61,41,32,35,54,41,41,32,95,49,51,52,41,41,41,32,40,40,66,
+32,85,41,32,40,95,50,50,51,32,95,49,52,51,41,41,41,41,41,41,
+41,41,32,40,40,40,83,39,32,67,41,32,40,40,66,32,40,40,67,39,
+32,83,39,41,32,40,40,67,32,60,41,32,35,53,41,41,41,32,40,40,
+66,32,85,41,32,40,40,67,32,66,41,32,40,40,66,32,40,40,67,39,
+32,66,41,32,40,40,67,32,40,40,67,32,61,61,41,32,35,53,41,41,
+32,95,49,51,52,41,41,41,32,40,40,66,32,85,41,32,40,95,50,50,
+51,32,95,49,52,51,41,41,41,41,41,41,41,32,40,40,66,32,85,41,
+32,40,40,67,32,66,41,32,40,40,66,32,40,40,67,39,32,66,41,32,
+40,40,67,32,40,40,67,32,61,61,41,32,35,52,41,41,32,95,49,51,
+52,41,41,41,32,40,40,66,32,85,41,32,40,95,50,50,51,32,95,49,
+52,49,41,41,41,41,41,41,41,41,41,32,40,40,40,83,39,32,83,41,
+32,40,40,66,32,40,40,83,39,32,83,39,41,32,40,40,67,32,60,41,
+32,35,50,41,41,41,32,40,40,40,83,39,32,67,41,32,40,40,66,32,
+40,40,67,39,32,83,39,41,32,40,40,67,32,60,41,32,35,51,41,41,
+41,32,40,40,66,32,85,41,32,40,40,67,32,66,41,32,40,40,66,32,
+40,40,67,39,32,66,41,32,40,40,67,32,40,40,67,32,61,61,41,32,
+35,51,41,41,32,95,49,51,52,41,41,41,32,40,40,66,32,85,41,32,
+40,95,50,50,51,32,40,95,54,49,51,32,95,51,51,56,41,41,41,41,
+41,41,41,41,32,40,40,66,32,85,41,32,40,40,67,32,66,41,32,40,
+40,66,32,40,40,67,39,32,66,41,32,40,40,67,32,40,40,67,32,61,
+61,41,32,35,50,41,41,32,95,49,51,52,41,41,41,32,40,40,66,32,
+85,41,32,40,95,50,50,51,32,95,49,54,51,41,41,41,41,41,41,41,
+41,32,40,40,40,83,39,32,67,41,32,40,40,66,32,40,40,67,39,32,
+83,39,41,32,40,40,67,32,60,41,32,35,49,41,41,41,32,40,40,66,
+32,85,41,32,40,40,67,32,66,41,32,40,40,66,32,40,40,67,39,32,
+66,41,32,40,40,67,32,40,40,67,32,61,61,41,32,35,49,41,41,32,
+95,49,51,52,41,41,41,32,40,40,66,32,85,41,32,40,95,50,50,51,
+32,95,51,51,56,41,41,41,41,41,41,41,32,40,40,66,32,85,41,32,
+40,40,67,32,66,41,32,40,40,66,32,40,40,67,39,32,66,41,32,40,
+40,67,32,40,40,67,32,61,61,41,32,35,48,41,41,32,95,49,51,52,
+41,41,41,32,40,40,66,32,85,41,32,40,95,50,50,51,32,95,51,49,
+52,41,41,41,41,41,41,41,41,41,41,32,40,95,50,50,54,32,95,57,
+53,56,41,41,41,32,40,40,65,32,58,57,53,57,32,40,40,66,32,40,
+66,32,90,41,41,32,40,40,66,32,40,66,32,90,41,41,32,80,41,41,
+41,32,40,40,65,32,58,57,54,48,32,40,90,32,40,40,66,32,90,41,
+32,85,41,41,41,32,40,40,65,32,58,57,54,49,32,40,90,32,40,90,
+32,85,41,41,41,32,40,40,65,32,58,57,54,50,32,40,40,66,32,40,
+66,32,90,41,41,32,40,40,66,32,40,66,32,90,41,41,32,80,41,41,
+41,32,40,40,65,32,58,57,54,51,32,40,40,66,32,90,41,32,40,40,
+66,32,40,66,32,90,41,41,32,80,41,41,41,32,40,40,65,32,58,57,
+54,52,32,40,40,66,32,90,41,32,79,41,41,32,40,40,65,32,58,57,
+54,53,32,80,41,32,40,40,65,32,58,57,54,54,32,80,41,32,40,40,
+65,32,58,57,54,55,32,40,85,32,40,40,67,32,40,40,40,83,39,32,
+83,39,41,32,40,40,67,32,60,41,32,35,49,41,41,32,40,40,83,32,
+40,40,40,83,39,32,83,39,41,32,40,40,67,32,60,41,32,35,49,53,
+41,41,32,40,40,40,67,39,32,66,41,32,40,40,67,32,40,40,67,32,
+61,61,41,32,35,49,53,41,41,32,95,49,51,53,41,41,32,40,85,32,
+40,75,32,95,57,54,55,41,41,41,41,41,32,40,40,40,67,39,32,66,
+41,32,40,40,67,32,40,40,67,32,61,61,41,32,35,49,41,41,32,95,
+49,51,53,41,41,32,40,85,32,40,90,32,95,57,54,55,41,41,41,41,
+41,41,32,40,85,32,95,49,48,57,53,41,41,41,41,32,40,40,65,32,
+58,57,54,56,32,40,40,67,32,40,40,83,32,40,40,40,67,39,32,67,
+39,41,32,66,41,32,40,40,40,83,39,32,40,83,39,32,83,41,41,32,
+40,40,66,32,40,66,32,40,40,83,39,32,83,39,41,32,40,40,67,32,
+60,41,32,35,56,41,41,41,41,32,40,40,40,67,39,32,40,83,39,32,
+83,41,41,32,40,40,66,32,40,66,32,40,40,83,39,32,83,39,41,32,
+40,40,67,32,60,41,32,35,49,53,41,41,41,41,32,40,40,66,32,40,
+40,67,39,32,67,41,32,40,40,66,32,40,40,83,39,32,83,39,41,32,
+40,40,67,32,60,41,32,35,49,54,41,41,41,32,40,40,40,83,39,32,
+83,41,32,40,40,66,32,40,40,83,39,32,83,39,41,32,40,40,67,32,
+60,41,32,35,49,56,41,41,41,32,40,40,40,67,39,32,40,67,39,32,
+66,41,41,32,40,67,32,40,40,67,32,61,61,41,32,35,49,56,41,41,
+41,32,40,85,32,40,75,32,95,53,48,50,41,41,41,41,41,32,40,40,
+40,67,39,32,40,67,39,32,66,41,41,32,40,67,32,40,40,67,32,61,
+61,41,32,35,49,54,41,41,41,32,40,85,32,40,75,32,95,57,54,56,
+41,41,41,41,41,41,41,32,40,40,66,32,85,41,32,40,40,67,32,40,
+67,39,32,66,41,41,32,95,57,54,56,41,41,41,41,41,32,40,40,40,
+83,39,32,83,41,32,40,40,66,32,40,40,83,39,32,83,39,41,32,40,
+40,67,32,60,41,32,35,49,51,41,41,41,32,40,40,40,67,39,32,40,
+67,39,32,66,41,41,32,40,67,32,40,40,67,32,61,61,41,32,35,49,
+51,41,41,41,32,40,85,32,40,90,32,95,57,54,56,41,41,41,41,41,
+32,40,40,40,83,39,32,40,67,39,32,66,41,41,32,40,67,32,40,40,
+67,32,61,61,41,32,35,56,41,41,41,32,40,40,66,32,85,41,32,40,
+40,66,32,85,41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,
+40,67,32,40,40,67,32,61,61,41,32,35,48,41,41,41,32,40,85,32,
+40,95,52,51,48,32,95,57,54,56,41,41,41,41,41,41,41,41,41,41,
+32,40,40,40,83,39,32,40,67,39,32,83,41,41,32,40,40,66,32,40,
+66,32,40,40,83,39,32,83,39,41,32,40,40,67,32,60,41,32,35,50,
+41,41,41,41,32,40,40,66,32,40,40,83,39,32,83,41,32,40,40,66,
+32,40,40,83,39,32,83,39,41,32,40,40,67,32,60,41,32,35,52,41,
+41,41,32,40,40,66,32,40,83,32,40,40,40,67,39,32,83,39,41,32,
+40,40,67,32,60,41,32,35,55,41,41,32,40,85,32,40,95,52,51,48,
+32,95,57,54,56,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,
+32,66,41,41,32,40,67,32,40,40,67,32,61,61,41,32,35,52,41,41,
+41,32,40,85,32,40,75,50,32,95,53,48,50,41,41,41,41,41,41,41,
+32,40,40,66,32,40,40,67,39,32,40,67,39,32,66,41,41,32,40,67,
+32,40,40,67,32,61,61,41,32,35,50,41,41,41,41,32,40,40,66,32,
+85,41,32,40,40,66,32,40,40,67,39,32,66,41,32,40,40,66,32,95,
+53,48,52,41,32,95,57,54,56,41,41,41,32,40,40,66,32,95,52,51,
+48,41,32,40,40,66,32,85,41,32,40,40,67,32,40,67,39,32,66,41,
+41,32,95,57,54,56,41,41,41,41,41,41,41,41,41,32,40,40,66,32,
+40,67,32,40,40,40,67,39,32,83,39,41,32,40,40,67,32,60,41,32,
+35,49,41,41,32,40,85,32,40,40,40,67,39,32,66,41,32,40,40,66,
+32,95,53,48,52,41,32,95,57,54,56,41,41,32,95,57,54,56,41,41,
+41,41,41,32,40,40,66,32,85,41,32,40,82,32,95,53,48,50,41,41,
+41,41,41,41,41,32,40,40,66,32,40,95,50,56,50,32,95,50,55,41,
+41,32,40,40,66,32,40,95,53,48,52,32,34,112,97,116,86,97,114,115,
+32,34,41,41,32,95,49,48,49,55,41,41,41,41,32,40,40,67,32,40,
+40,40,83,39,32,83,39,41,32,40,40,40,83,39,32,95,49,51,48,41,
+32,95,49,48,57,53,41,32,95,49,49,48,48,41,41,32,95,53,48,51,
+41,41,32,73,41,41,41,32,40,40,65,32,58,57,54,57,32,40,40,66,
+32,40,66,32,40,66,32,67,41,41,41,32,40,40,66,32,40,66,32,67,
+41,41,32,80,41,41,41,32,40,40,65,32,58,57,55,48,32,80,41,32,
+40,40,65,32,58,57,55,49,32,40,40,40,95,49,56,52,48,32,40,95,
+49,56,52,52,32,95,57,55,49,41,41,32,40,85,32,40,40,66,32,40,
+66,32,40,95,53,48,52,32,40,40,79,32,35,52,48,41,32,75,41,41,
+41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,95,53,48,52,
+41,32,40,95,49,56,52,50,32,95,49,48,56,48,41,41,41,32,40,40,
+66,32,40,95,53,48,52,32,34,58,58,34,41,41,32,40,40,40,67,39,
+32,95,53,48,52,41,32,40,95,49,56,52,50,32,95,49,48,49,53,41,
+41,32,40,40,79,32,35,52,49,41,32,75,41,41,41,41,41,41,41,32,
+40,95,49,56,52,54,32,95,57,55,49,41,41,41,32,40,40,65,32,58,
+57,55,50,32,40,85,32,75,41,41,32,40,40,65,32,58,57,55,51,32,
+40,95,57,49,55,32,40,40,95,49,48,55,55,32,95,49,48,56,49,41,
+32,34,80,114,105,109,105,116,105,118,101,115,46,84,121,112,101,34,41,41,
+41,32,40,40,65,32,58,57,55,52,32,40,95,57,49,55,32,40,40,95,
+49,48,55,55,32,95,49,48,56,49,41,32,34,80,114,105,109,105,116,105,
+118,101,115,46,67,111,110,115,116,114,97,105,110,116,34,41,41,41,32,40,
+40,65,32,58,57,55,53,32,40,40,40,67,39,32,66,41,32,95,49,48,
+56,52,41,32,40,40,40,67,39,32,95,52,56,54,41,32,40,40,67,32,
+40,95,53,55,54,32,95,51,49,48,41,41,32,35,49,41,41,32,35,52,
+52,41,41,41,32,40,40,65,32,58,57,55,54,32,40,40,67,32,40,40,
+67,32,95,49,48,56,54,41,32,95,53,50,49,41,41,32,40,40,40,67,
+39,32,66,41,32,40,40,67,32,40,40,95,50,50,51,32,95,49,52,49,
+41,32,35,52,52,41,41,32,95,53,50,49,41,41,32,40,40,66,32,95,
+53,50,50,41,32,40,40,40,67,39,32,40,95,53,55,53,32,95,51,49,
+48,41,41,32,95,52,52,57,41,32,35,50,41,41,41,41,41,32,40,40,
+65,32,58,57,55,55,32,40,40,40,67,39,32,67,41,32,40,40,40,67,
+39,32,40,67,39,32,40,83,39,32,95,57,51,55,41,41,41,32,40,40,
+40,67,39,32,40,67,39,32,40,67,39,32,79,41,41,41,32,40,40,66,
+32,40,66,32,40,66,32,95,57,50,52,41,41,41,32,40,40,40,67,39,
+32,66,41,32,40,40,66,32,40,67,39,32,95,52,51,48,41,41,32,40,
+40,40,67,39,32,40,67,39,32,40,67,39,32,79,41,41,41,32,40,40,
+66,32,40,66,32,40,66,32,40,95,50,56,50,32,95,57,49,55,41,41,
+41,41,32,40,40,66,32,67,41,32,40,40,40,67,39,32,67,41,32,40,
+67,32,40,95,50,50,51,32,95,51,49,52,41,41,41,32,95,49,48,57,
+57,41,41,41,41,32,75,41,41,41,32,40,40,66,32,40,40,95,50,48,
+55,32,95,50,49,57,41,32,40,40,95,53,56,49,32,95,51,49,48,41,
+32,40,95,51,57,50,32,35,48,41,41,41,41,32,40,40,67,32,40,95,
+53,55,54,32,95,51,49,48,41,41,32,35,49,41,41,41,41,41,32,75,
+41,41,32,95,57,49,55,41,41,32,40,95,49,48,56,51,32,34,36,120,
+34,41,41,41,32,40,40,65,32,58,57,55,56,32,85,41,32,40,40,65,
+32,58,57,55,57,32,40,85,32,73,41,41,32,40,40,65,32,58,57,56,
+48,32,40,75,32,40,110,111,68,101,102,97,117,108,116,32,34,72,97,115,
+76,111,99,46,103,101,116,83,76,111,99,34,41,41,41,32,40,40,65,32,
+58,57,56,49,32,40,95,57,55,56,32,40,85,32,75,41,41,41,32,40,
+40,65,32,58,57,56,50,32,40,95,57,55,56,32,40,85,32,40,40,83,
+32,40,40,40,83,39,32,83,39,41,32,40,40,67,32,60,41,32,35,49,
+48,41,41,32,40,40,83,32,40,40,40,83,39,32,83,39,41,32,40,40,
+67,32,60,41,32,35,49,53,41,41,32,40,40,83,32,40,40,40,83,39,
+32,83,39,41,32,40,40,67,32,60,41,32,35,49,55,41,41,32,40,40,
+67,32,40,40,40,83,39,32,83,39,41,32,40,40,67,32,60,41,32,35,
+49,56,41,41,32,40,40,67,32,40,40,40,67,39,32,83,39,41,32,40,
+40,67,32,60,41,32,35,49,57,41,41,32,40,85,32,40,40,83,32,40,
+40,67,32,67,39,41,32,40,95,57,55,57,32,95,57,56,50,41,41,41,
+32,40,90,32,40,90,32,40,95,57,55,57,32,40,95,57,56,51,32,95,
+57,56,52,41,41,41,41,41,41,41,41,32,40,85,32,40,95,57,55,57,
+32,95,57,56,53,41,41,41,41,41,32,40,85,32,40,75,32,40,95,50,
+55,32,34,103,101,116,83,76,111,99,32,69,85,86,97,114,34,41,41,41,
+41,41,41,32,40,40,67,32,40,40,40,67,39,32,83,39,41,32,40,40,
+67,32,60,41,32,35,49,54,41,41,32,40,85,32,40,90,32,40,95,57,
+55,57,32,95,57,56,50,41,41,41,41,41,32,40,85,32,40,90,32,40,
+95,57,55,57,32,95,57,56,49,41,41,41,41,41,41,41,32,40,40,83,
+32,40,40,40,83,39,32,83,39,41,32,40,40,67,32,60,41,32,35,49,
+50,41,41,32,40,40,67,32,40,40,40,83,39,32,83,39,41,32,40,40,
+67,32,60,41,32,35,49,51,41,41,32,40,40,67,32,40,40,40,67,39,
+32,83,39,41,32,40,40,67,32,60,41,32,35,49,52,41,41,32,40,85,
+32,40,95,57,55,57,32,95,57,56,50,41,41,41,41,32,40,85,32,40,
+90,32,40,95,57,55,57,32,95,57,56,50,41,41,41,41,41,41,32,40,
+85,32,40,90,32,40,90,32,40,95,57,55,57,32,95,57,56,50,41,41,
+41,41,41,41,41,32,40,40,67,32,40,40,40,67,39,32,83,39,41,32,
+40,40,67,32,60,41,32,35,49,49,41,41,32,40,85,32,40,90,32,40,
+95,57,55,57,32,95,57,56,49,41,41,41,41,41,32,40,85,32,40,90,
+32,40,95,57,55,57,32,95,57,56,50,41,41,41,41,41,41,41,41,32,
+40,40,83,32,40,40,40,83,39,32,83,39,41,32,40,40,67,32,60,41,
+32,35,53,41,41,32,40,40,83,32,40,40,40,83,39,32,83,39,41,32,
+40,40,67,32,60,41,32,35,55,41,41,32,40,40,67,32,40,40,40,83,
+39,32,83,39,41,32,40,40,67,32,60,41,32,35,56,41,41,32,40,40,
+67,32,40,40,40,67,39,32,83,39,41,32,40,40,67,32,60,41,32,35,
+57,41,41,32,40,85,32,40,40,67,32,40,40,67,32,67,39,41,32,40,
+95,57,55,57,32,40,95,57,56,51,32,95,57,56,55,41,41,41,41,32,
+40,95,57,55,57,32,95,57,56,49,41,41,41,41,41,32,40,85,32,40,
+95,57,55,57,32,95,57,56,54,41,41,41,41,41,32,40,85,32,40,95,
+57,55,57,32,40,95,57,56,51,32,95,57,56,50,41,41,41,41,41,41,
+32,40,40,67,32,40,40,40,67,39,32,83,39,41,32,40,40,67,32,60,
+41,32,35,54,41,41,32,40,85,32,40,90,32,40,95,57,55,57,32,40,
+95,57,56,51,32,95,57,56,56,41,41,41,41,41,41,32,40,85,32,40,
+90,32,40,95,57,55,57,32,95,57,56,50,41,41,41,41,41,41,41,32,
+40,40,83,32,40,40,40,83,39,32,83,39,41,32,40,40,67,32,60,41,
+32,35,50,41,41,32,40,40,67,32,40,40,40,83,39,32,83,39,41,32,
+40,40,67,32,60,41,32,35,51,41,41,32,40,40,67,32,40,40,40,67,
+39,32,83,39,41,32,40,40,67,32,60,41,32,35,52,41,41,32,40,85,
+32,75,41,41,41,32,40,85,32,40,95,57,55,57,32,40,95,57,56,51,
+32,95,57,56,57,41,41,41,41,41,41,32,40,85,32,40,90,32,40,95,
+57,55,57,32,95,57,56,50,41,41,41,41,41,41,32,40,40,67,32,40,
+40,40,67,39,32,83,39,41,32,40,40,67,32,60,41,32,35,49,41,41,
+32,40,85,32,40,90,32,40,95,57,55,57,32,95,57,56,50,41,41,41,
+41,41,32,40,85,32,40,95,57,55,57,32,95,57,56,49,41,41,41,41,
+41,41,41,41,41,32,40,40,65,32,58,57,56,51,32,40,40,66,32,95,
+57,55,56,41,32,40,40,66,32,40,80,32,40,95,50,55,32,34,103,101,
+116,83,76,111,99,32,91,93,34,41,41,41,32,40,40,66,32,90,41,32,
+95,57,55,57,41,41,41,41,32,40,40,65,32,58,57,56,52,32,40,95,
+57,55,56,32,40,85,32,40,90,32,40,95,57,55,57,32,95,57,56,49,
+41,41,41,41,41,32,40,40,65,32,58,57,56,53,32,40,95,57,55,56,
+32,40,40,80,32,40,75,32,40,95,57,55,57,32,95,57,56,49,41,41,
+41,32,40,95,57,55,57,32,95,57,56,49,41,41,41,41,32,40,40,65,
+32,58,57,56,54,32,40,95,57,55,56,32,40,85,32,40,40,83,32,40,
+40,40,83,39,32,83,39,41,32,40,40,67,32,60,41,32,35,51,41,41,
+32,40,40,67,32,40,40,40,83,39,32,83,39,41,32,40,40,67,32,60,
+41,32,35,52,41,41,32,40,40,67,32,40,40,40,67,39,32,83,39,41,
+32,40,40,67,32,60,41,32,35,53,41,41,32,40,85,32,40,90,32,40,
+90,32,40,95,57,55,57,32,95,57,56,50,41,41,41,41,41,41,32,40,
+85,32,40,90,32,40,95,57,55,57,32,95,57,56,50,41,41,41,41,41,
+41,32,40,85,32,40,90,32,40,95,57,55,57,32,95,57,56,50,41,41,
+41,41,41,41,32,40,40,67,32,40,40,40,83,39,32,83,39,41,32,40,
+40,67,32,60,41,32,35,49,41,41,32,40,40,67,32,40,40,40,67,39,
+32,83,39,41,32,40,40,67,32,60,41,32,35,50,41,41,32,40,85,32,
+40,95,57,55,57,32,95,57,56,50,41,41,41,41,32,40,85,32,40,90,
+32,40,95,57,55,57,32,95,57,56,50,41,41,41,41,41,41,32,40,85,
+32,40,95,57,55,57,32,40,95,57,56,51,32,95,57,56,50,41,41,41,
+41,41,41,41,41,32,40,40,65,32,58,57,56,55,32,40,95,57,55,56,
+32,40,40,67,32,40,40,80,32,40,90,32,40,95,57,55,57,32,95,57,
+56,50,41,41,41,32,40,95,57,55,57,32,95,57,56,50,41,41,41,32,
+40,95,57,55,57,32,40,95,57,56,51,32,95,57,56,56,41,41,41,41,
+41,32,40,40,65,32,58,57,56,56,32,40,95,57,55,56,32,40,40,67,
+32,40,40,80,32,40,90,32,40,95,57,55,57,32,95,57,56,49,41,41,
+41,32,40,90,32,40,95,57,55,57,32,95,57,56,50,41,41,41,41,32,
+40,90,32,40,95,57,55,57,32,95,57,56,49,41,41,41,41,41,32,40,
+40,65,32,58,57,56,57,32,40,95,57,55,56,32,40,85,32,40,40,67,
+32,40,40,67,32,67,39,41,32,40,95,57,55,57,32,95,57,57,48,41,
+41,41,32,40,90,32,40,95,57,55,57,32,95,57,56,50,41,41,41,41,
+41,41,32,40,40,65,32,58,57,57,48,32,40,95,57,55,56,32,40,85,
+32,40,90,32,40,95,57,55,57,32,40,95,57,56,51,32,95,57,57,49,
+41,41,41,41,41,41,32,40,40,65,32,58,57,57,49,32,40,95,57,55,
+56,32,40,85,32,40,40,83,32,40,40,67,32,67,39,41,32,40,95,57,
+55,57,32,95,57,56,50,41,41,41,32,40,90,32,40,90,32,40,95,57,
+55,57,32,40,95,57,56,51,32,95,57,56,55,41,41,41,41,41,41,41,
+41,32,40,40,65,32,58,57,57,50,32,40,90,32,75,41,41,32,40,40,
+65,32,58,57,57,51,32,40,75,32,75,41,41,32,40,40,65,32,58,57,
+57,52,32,40,75,32,65,41,41,32,40,40,65,32,58,57,57,53,32,40,
+40,95,50,50,50,32,40,40,40,67,39,32,83,41,32,40,40,67,32,40,
+40,67,32,83,39,41,32,40,40,67,32,40,40,80,32,95,49,51,53,41,
+32,95,49,51,52,41,41,32,95,49,51,52,41,41,41,32,40,40,67,32,
+40,40,80,32,95,49,51,52,41,32,95,49,51,53,41,41,32,95,49,51,
+52,41,41,41,32,40,40,67,32,40,40,80,32,95,49,51,52,41,32,95,
+49,51,52,41,41,32,95,49,51,53,41,41,41,32,40,95,50,50,54,32,
+95,57,57,53,41,41,41,32,40,40,65,32,58,57,57,54,32,40,40,83,
+32,40,85,32,95,50,56,53,41,41,32,40,90,32,40,90,32,40,40,66,
+32,89,41,32,40,40,40,67,39,32,40,67,39,32,67,41,41,32,40,40,
+66,32,40,66,32,40,83,32,66,41,41,41,32,40,40,40,83,39,32,40,
+83,39,32,40,83,39,32,40,83,39,32,83,41,41,41,41,32,40,40,66,
+32,40,66,32,40,66,32,40,66,32,40,40,83,39,32,83,39,41,32,40,
+40,67,32,60,41,32,35,49,51,41,41,41,41,41,41,32,40,40,40,67,
+39,32,66,41,32,40,40,66,32,40,67,39,32,40,83,39,32,83,41,41,
+41,32,40,40,66,32,40,66,32,40,66,32,40,40,83,39,32,83,39,41,
+32,40,40,67,32,60,41,32,35,49,55,41,41,41,41,41,32,40,40,40,
+67,39,32,66,41,32,40,66,39,32,40,40,66,32,83,41,32,40,40,66,
+32,40,40,67,39,32,83,39,41,32,40,40,67,32,60,41,32,35,49,57,
+41,41,41,32,40,40,66,32,85,41,32,40,40,66,32,40,40,83,39,32,
+66,41,32,40,40,66,32,95,50,56,50,41,32,95,57,51,54,41,41,41,
+32,40,40,66,32,40,66,32,95,57,57,54,41,41,32,40,40,67,39,32,
+95,52,51,48,41,32,40,40,66,32,40,83,32,73,41,41,32,40,40,66,
+32,40,66,32,90,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,
+32,67,41,32,40,40,40,67,39,32,40,67,39,32,95,49,51,50,41,41,
+32,40,40,66,32,40,67,32,40,95,52,55,50,32,95,49,48,55,56,41,
+41,41,32,40,95,52,51,49,32,95,57,55,50,41,41,41,32,75,41,41,
+41,32,40,40,67,32,79,41,32,75,41,41,41,41,41,41,41,41,41,41,
+41,41,32,40,40,66,32,40,40,67,39,32,40,67,39,32,66,41,41,32,
+40,67,32,40,40,67,32,61,61,41,32,35,49,55,41,41,41,41,32,40,
+40,66,32,85,41,32,75,41,41,41,41,41,41,32,40,40,66,32,40,40,
+67,39,32,40,67,39,32,66,41,41,32,40,67,32,40,40,67,32,61,61,
+41,32,35,49,51,41,41,41,41,32,40,40,66,32,85,41,32,40,66,32,
+95,57,51,48,41,41,41,41,41,41,32,40,40,66,32,40,40,67,39,32,
+40,83,39,32,40,67,39,32,67,41,41,41,32,40,40,66,32,40,66,32,
+40,66,32,40,40,83,39,32,83,39,41,32,40,40,67,32,60,41,32,35,
+49,41,41,41,41,41,32,40,40,66,32,40,40,67,39,32,40,83,39,32,
+83,41,41,32,40,40,66,32,40,66,32,40,40,83,39,32,83,39,41,32,
+40,40,67,32,60,41,32,35,52,41,41,41,41,32,40,40,66,32,40,40,
+67,39,32,40,67,39,32,66,41,41,32,40,67,32,40,40,67,32,61,61,
+41,32,35,52,41,41,41,41,32,40,40,66,32,85,41,32,40,90,32,75,
+41,41,41,41,41,41,32,40,40,66,32,40,40,67,39,32,40,67,39,32,
+66,41,41,32,40,67,32,40,40,67,32,61,61,41,32,35,49,41,41,41,
+41,32,40,40,66,32,85,41,32,40,40,40,83,39,32,40,67,39,32,66,
+41,41,32,40,66,32,95,57,49,56,41,41,32,73,41,41,41,41,41,41,
+41,32,40,40,66,32,40,66,32,85,41,41,32,40,40,66,32,40,40,67,
+39,32,66,41,32,40,40,66,32,95,50,56,50,41,32,95,53,49,54,41,
+41,41,32,40,67,32,40,95,52,55,54,32,95,49,48,55,56,41,41,41,
+41,41,41,41,41,32,40,95,50,55,32,34,115,117,98,115,116,32,117,110,
+105,109,112,108,101,109,101,110,116,101,100,34,41,41,41,41,41,41,41,32,
+40,40,65,32,58,57,57,55,32,40,95,57,57,56,32,95,55,54,48,41,
+41,32,40,40,65,32,58,57,57,56,32,40,75,32,40,89,32,40,40,66,
+32,40,67,32,66,41,41,32,40,40,40,67,39,32,40,83,39,32,67,41,
+41,32,40,40,66,32,40,66,32,40,40,83,39,32,83,39,41,32,40,40,
+67,32,60,41,32,35,49,41,41,41,41,32,40,40,66,32,40,40,83,39,
+32,83,41,32,40,40,66,32,40,40,83,39,32,83,39,41,32,40,40,67,
+32,60,41,32,35,52,41,41,41,32,40,40,66,32,40,40,67,39,32,66,
+41,32,40,40,67,32,40,40,67,32,61,61,41,32,35,52,41,41,32,95,
+49,51,52,41,41,41,32,40,40,66,32,85,41,32,40,90,32,40,40,67,
+32,66,41,32,40,40,66,32,40,40,67,39,32,66,41,32,40,40,67,32,
+40,40,67,32,61,61,41,32,35,52,41,41,32,95,49,51,52,41,41,41,
+32,40,40,66,32,85,41,32,40,90,32,40,95,50,50,51,32,95,57,53,
+56,41,41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,
+40,40,67,39,32,66,41,32,40,40,67,32,40,40,67,32,61,61,41,32,
+35,49,41,41,32,95,49,51,52,41,41,41,41,32,40,40,66,32,40,66,
+32,85,41,41,32,40,40,66,32,40,40,67,39,32,66,41,32,66,41,41,
+32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,41,32,
+40,40,66,32,40,66,32,40,66,32,40,40,83,39,32,83,39,41,32,40,
+40,67,32,60,41,32,35,49,41,41,41,41,41,32,40,40,66,32,40,66,
+32,40,66,32,40,40,67,39,32,66,41,32,40,40,67,32,40,40,67,32,
+61,61,41,32,35,49,41,41,32,95,49,51,52,41,41,41,41,41,32,40,
+40,66,32,40,66,32,40,66,32,85,41,41,41,32,40,40,40,83,39,32,
+40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,40,67,39,32,66,
+41,41,41,32,40,66,32,40,66,32,95,49,51,49,41,41,41,41,32,73,
+41,41,41,41,41,32,40,85,32,40,75,32,95,49,51,52,41,41,41,41,
+41,41,41,41,41,32,40,40,66,32,85,41,32,40,40,67,32,66,41,32,
+40,40,66,32,40,67,32,40,40,40,83,39,32,83,39,41,32,40,40,67,
+32,60,41,32,35,49,41,41,32,40,40,40,67,39,32,66,41,32,40,40,
+67,32,40,40,67,32,61,61,41,32,35,49,41,41,32,95,49,51,52,41,
+41,32,40,85,32,40,75,50,32,95,49,51,52,41,41,41,41,41,41,32,
+40,40,66,32,85,41,32,40,95,50,50,51,32,95,49,48,55,56,41,41,
+41,41,41,41,41,41,41,41,32,40,40,65,32,58,57,57,57,32,40,40,
+66,32,89,41,32,40,40,66,32,40,66,32,40,80,32,95,50,56,53,41,
+41,41,32,40,40,66,32,40,67,39,32,66,41,41,32,40,66,32,95,50,
+56,52,41,41,41,41,41,32,40,40,65,32,58,49,48,48,48,32,40,40,
+67,32,95,49,48,48,49,41,32,95,53,48,50,41,41,32,40,40,65,32,
+58,49,48,48,49,32,40,40,67,32,40,40,80,32,40,40,40,67,39,32,
+66,41,32,40,40,66,32,95,50,56,52,41,32,95,53,48,51,41,41,32,
+40,95,57,57,57,32,95,49,48,48,50,41,41,41,32,40,40,40,67,39,
+32,66,41,32,40,40,66,32,95,50,56,52,41,32,95,49,48,48,53,41,
+41,32,95,49,48,48,55,41,41,41,32,40,90,32,95,53,48,51,41,41,
+41,32,40,40,65,32,58,49,48,48,50,32,40,85,32,40,40,40,67,39,
+32,66,41,32,40,40,66,32,95,50,56,52,41,32,40,95,57,57,57,32,
+95,49,48,48,53,41,41,41,32,95,49,48,48,51,41,41,41,32,40,40,
+65,32,58,49,48,48,51,32,40,85,32,40,40,40,67,39,32,66,41,32,
+40,40,66,32,95,50,56,52,41,32,40,95,57,57,57,32,95,49,48,48,
+52,41,41,41,32,40,95,57,57,57,32,95,49,48,48,49,41,41,41,41,
+32,40,40,65,32,58,49,48,48,52,32,40,85,32,40,40,40,67,39,32,
+66,41,32,40,40,66,32,95,50,56,52,41,32,40,95,57,57,57,32,95,
+49,48,49,48,41,41,41,32,95,49,48,48,55,41,41,41,32,40,40,65,
+32,58,49,48,48,53,32,95,49,48,48,55,41,32,40,40,65,32,58,49,
+48,48,54,32,40,40,67,32,95,49,48,48,55,41,32,95,53,48,50,41,
+41,32,40,40,65,32,58,49,48,48,55,32,40,85,32,40,40,83,32,40,
+40,40,83,39,32,83,39,41,32,40,40,67,32,60,41,32,35,49,48,41,
+41,32,40,40,83,32,40,40,40,83,39,32,83,39,41,32,40,40,67,32,
+60,41,32,35,49,53,41,41,32,40,40,83,32,40,40,40,83,39,32,83,
+39,41,32,40,40,67,32,60,41,32,35,49,55,41,41,32,40,40,67,32,
+40,40,40,83,39,32,83,39,41,32,40,40,67,32,60,41,32,35,49,56,
+41,41,32,40,40,67,32,40,40,40,67,39,32,83,39,41,32,40,40,67,
+32,60,41,32,35,49,57,41,41,32,40,85,32,40,40,40,67,39,32,66,
+41,32,40,40,66,32,95,50,56,52,41,32,40,40,66,32,95,53,48,52,
+41,32,40,95,52,51,49,32,40,85,32,75,41,41,41,41,41,32,95,49,
+48,48,55,41,41,41,41,32,40,85,32,40,40,66,32,95,53,48,51,41,
+32,40,95,57,52,55,32,95,55,54,48,41,41,41,41,41,41,32,40,85,
+32,40,75,32,95,50,56,53,41,41,41,41,41,32,40,40,67,32,40,40,
+40,67,39,32,83,39,41,32,40,40,67,32,60,41,32,35,49,54,41,41,
+32,40,85,32,40,40,40,67,39,32,66,41,32,40,40,66,32,95,50,56,
+52,41,32,95,49,48,48,55,41,41,32,95,49,48,48,55,41,41,41,41,
+32,40,85,32,40,40,40,67,39,32,66,41,32,40,40,66,32,95,50,56,
+52,41,32,95,53,48,51,41,41,32,95,49,48,48,55,41,41,41,41,41,
+41,32,40,40,83,32,40,40,40,83,39,32,83,39,41,32,40,40,67,32,
+60,41,32,35,49,50,41,41,32,40,40,67,32,40,40,40,83,39,32,83,
+39,41,32,40,40,67,32,60,41,32,35,49,51,41,41,32,40,40,67,32,
+40,40,40,67,39,32,83,39,41,32,40,40,67,32,60,41,32,35,49,52,
+41,41,32,40,85,32,95,49,48,48,55,41,41,41,32,40,85,32,40,90,
+32,95,49,48,48,55,41,41,41,41,41,32,40,85,32,40,40,40,67,39,
+32,66,41,32,40,66,39,32,40,40,66,32,95,50,56,52,41,32,95,49,
+48,48,55,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,
+95,50,56,52,41,32,95,49,48,48,55,41,41,32,95,49,48,48,55,41,
+41,41,41,41,41,32,40,40,67,32,40,40,40,67,39,32,83,39,41,32,
+40,40,67,32,60,41,32,35,49,49,41,41,32,40,85,32,40,40,40,67,
+39,32,66,41,32,40,40,66,32,95,50,56,52,41,32,95,53,48,51,41,
+41,32,95,49,48,48,55,41,41,41,41,32,40,85,32,40,40,66,32,40,
+40,67,39,32,95,50,56,52,41,32,95,53,48,51,41,41,32,95,49,48,
+48,55,41,41,41,41,41,41,41,32,40,40,83,32,40,40,40,83,39,32,
+83,39,41,32,40,40,67,32,60,41,32,35,53,41,41,32,40,40,83,32,
+40,40,40,83,39,32,83,39,41,32,40,40,67,32,60,41,32,35,55,41,
+41,32,40,40,67,32,40,40,40,83,39,32,83,39,41,32,40,40,67,32,
+60,41,32,35,56,41,41,32,40,40,67,32,40,40,40,67,39,32,83,39,
+41,32,40,40,67,32,60,41,32,35,57,41,41,32,40,85,32,40,40,40,
+67,39,32,66,41,32,40,40,66,32,95,50,56,52,41,32,40,40,95,53,
+49,53,32,95,50,56,53,41,32,95,53,48,51,41,41,41,32,40,95,57,
+57,57,32,95,49,48,49,48,41,41,41,41,41,32,40,85,32,40,40,83,
+32,73,41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,
+66,32,40,67,32,40,40,67,32,61,61,41,32,35,48,41,41,41,32,95,
+49,48,48,56,41,41,32,40,85,32,40,95,57,57,57,32,95,49,48,48,
+55,41,41,41,41,41,41,41,41,32,40,85,32,40,95,57,57,57,32,95,
+49,48,48,55,41,41,41,41,41,32,40,40,67,32,40,40,40,67,39,32,
+83,39,41,32,40,40,67,32,60,41,32,35,54,41,41,32,40,85,32,40,
+40,40,67,39,32,66,41,32,40,40,66,32,95,50,56,52,41,32,40,95,
+57,57,57,32,95,49,48,48,49,41,41,41,32,95,49,48,48,55,41,41,
+41,41,32,40,85,32,40,40,40,67,39,32,66,41,32,40,40,66,32,95,
+50,56,52,41,32,95,49,48,48,55,41,41,32,40,95,57,57,57,32,95,
+49,48,48,57,41,41,41,41,41,41,41,32,40,40,83,32,40,40,40,83,
+39,32,83,39,41,32,40,40,67,32,60,41,32,35,50,41,41,32,40,40,
+67,32,40,40,40,83,39,32,83,39,41,32,40,40,67,32,60,41,32,35,
+51,41,41,32,40,40,67,32,40,40,40,67,39,32,83,39,41,32,40,40,
+67,32,60,41,32,35,52,41,41,32,40,85,32,40,75,50,32,95,50,56,
+53,41,41,41,41,32,40,85,32,40,95,57,57,57,32,95,49,48,48,50,
+41,41,41,41,41,32,40,85,32,40,40,40,67,39,32,66,41,32,40,40,
+66,32,95,50,56,52,41,32,95,49,48,48,55,41,41,32,40,95,57,57,
+57,32,40,85,32,40,40,40,67,39,32,66,41,32,40,40,66,32,95,50,
+56,52,41,32,95,53,48,51,41,41,32,95,49,48,48,55,41,41,41,41,
+41,41,41,41,32,40,40,67,32,40,40,40,67,39,32,83,39,41,32,40,
+40,67,32,60,41,32,35,49,41,41,32,40,85,32,40,40,40,67,39,32,
+66,41,32,40,40,66,32,95,50,56,52,41,32,95,49,48,48,55,41,41,
+32,95,49,48,48,55,41,41,41,41,32,40,85,32,95,53,48,51,41,41,
+41,41,41,41,41,32,40,40,65,32,58,49,48,48,56,32,40,85,32,40,
+40,83,32,40,40,40,83,39,32,83,39,41,32,40,40,67,32,60,41,32,
+35,51,41,41,32,40,40,67,32,40,40,40,83,39,32,83,39,41,32,40,
+40,67,32,60,41,32,35,52,41,41,32,40,40,67,32,40,40,40,67,39,
+32,83,39,41,32,40,40,67,32,60,41,32,35,53,41,41,32,40,85,32,
+40,40,40,67,39,32,66,41,32,40,66,39,32,40,40,66,32,95,50,56,
+52,41,32,95,49,48,48,55,41,41,41,32,40,40,40,67,39,32,66,41,
+32,40,40,66,32,95,50,56,52,41,32,95,49,48,48,55,41,41,32,95,
+49,48,48,55,41,41,41,41,41,32,40,85,32,40,40,40,67,39,32,66,
+41,32,40,40,66,32,95,50,56,52,41,32,95,49,48,48,55,41,41,32,
+95,49,48,48,55,41,41,41,41,41,32,40,85,32,40,40,40,67,39,32,
+66,41,32,40,40,66,32,95,50,56,52,41,32,95,49,48,48,55,41,41,
+32,95,49,48,48,55,41,41,41,41,41,32,40,40,67,32,40,40,40,83,
+39,32,83,39,41,32,40,40,67,32,60,41,32,35,49,41,41,32,40,40,
+67,32,40,40,40,67,39,32,83,39,41,32,40,40,67,32,60,41,32,35,
+50,41,41,32,40,85,32,95,49,48,48,55,41,41,41,32,40,85,32,40,
+40,40,67,39,32,66,41,32,40,40,66,32,95,50,56,52,41,32,95,49,
+48,48,55,41,41,32,40,95,57,57,57,32,95,49,48,49,48,41,41,41,
+41,41,41,32,40,85,32,40,95,57,57,57,32,95,49,48,48,55,41,41,
+41,41,41,41,32,40,40,65,32,58,49,48,48,57,32,40,85,32,40,40,
+40,67,39,32,66,41,32,40,40,66,32,95,50,56,52,41,32,95,49,48,
+48,53,41,41,32,95,49,48,48,51,41,41,41,32,40,40,65,32,58,49,
+48,49,48,32,40,40,67,32,40,40,80,32,40,40,40,67,39,32,66,41,
+32,40,40,66,32,95,50,56,52,41,32,95,49,48,48,53,41,41,32,95,
+49,48,48,55,41,41,32,95,49,48,48,55,41,41,32,40,95,57,57,57,
+32,95,49,48,48,49,41,41,41,32,40,40,65,32,58,49,48,49,49,32,
+40,40,40,67,39,32,67,41,32,40,40,66,32,40,67,32,66,41,41,32,
+40,40,40,83,39,32,40,83,39,32,83,41,41,32,40,40,66,32,40,66,
+32,40,40,83,39,32,83,39,41,32,40,40,67,32,60,41,32,35,52,41,
+41,41,41,32,40,40,40,83,39,32,40,83,39,32,83,41,41,32,40,40,
+66,32,40,66,32,40,40,83,39,32,83,39,41,32,40,40,67,32,60,41,
+32,35,49,56,41,41,41,41,32,40,40,66,32,40,40,67,39,32,40,67,
+39,32,66,41,41,32,40,67,32,40,40,67,32,61,61,41,32,35,49,56,
+41,41,41,41,32,40,40,66,32,85,41,32,40,40,66,32,40,66,32,95,
+57,51,53,41,41,32,95,49,48,49,50,41,41,41,41,41,32,40,40,66,
+32,40,40,67,39,32,40,67,39,32,66,41,41,32,40,67,32,40,40,67,
+32,61,61,41,32,35,52,41,41,41,41,32,40,40,66,32,85,41,32,40,
+90,32,95,57,50,49,41,41,41,41,41,41,32,40,40,66,32,40,40,67,
+39,32,40,67,39,32,66,41,41,32,40,67,32,40,40,67,32,61,61,41,
+32,35,48,41,41,41,41,32,40,40,66,32,85,41,32,40,40,66,32,40,
+66,32,95,57,49,55,41,41,32,95,49,48,56,55,41,41,41,41,41,41,
+32,40,95,50,55,32,34,115,101,116,83,76,111,99,69,120,112,114,34,41,
+41,41,32,40,40,65,32,58,49,48,49,50,32,40,40,40,83,39,32,80,
+41,32,40,40,66,32,40,40,67,39,32,66,41,32,95,57,51,57,41,41,
+32,95,49,48,56,55,41,41,32,40,40,66,32,40,66,32,95,57,52,48,
+41,41,32,95,49,48,56,55,41,41,41,32,40,40,65,32,58,49,48,49,
+51,32,40,75,32,40,40,66,32,40,66,32,40,95,50,56,50,32,95,50,
+55,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,95,53,
+48,52,41,32,95,49,49,48,49,41,41,32,40,95,53,48,52,32,34,58,
+32,34,41,41,41,41,41,32,40,40,65,32,58,49,48,49,52,32,40,40,
+40,95,49,56,52,48,32,40,95,49,56,52,52,32,95,49,48,49,52,41,
+41,32,40,85,32,40,90,32,40,40,66,32,40,66,32,40,95,53,48,52,
+32,34,109,111,100,117,108,101,32,34,41,41,41,32,40,40,40,67,39,32,
+66,41,32,40,40,66,32,95,53,48,52,41,32,95,49,48,56,56,41,41,
+32,40,40,66,32,40,95,53,48,52,32,34,40,46,46,46,41,32,119,104,
+101,114,101,92,49,48,38,34,41,41,32,95,49,48,49,56,41,41,41,41,
+41,41,32,40,95,49,56,52,54,32,95,49,48,49,52,41,41,41,32,40,
+40,65,32,58,49,48,49,53,32,40,40,40,95,49,56,52,48,32,40,95,
+49,56,52,52,32,95,49,48,49,53,41,41,32,95,49,48,49,55,41,32,
+40,95,49,56,52,54,32,95,49,48,49,53,41,41,41,32,40,40,65,32,
+58,49,48,49,54,32,40,40,40,95,49,56,52,48,32,40,95,49,56,52,
+52,32,95,49,48,49,54,41,41,32,40,40,66,32,40,95,50,56,50,32,
+95,49,56,51,50,41,41,32,40,40,66,32,40,40,95,49,48,50,54,32,
+40,95,49,55,56,55,32,40,40,79,32,35,57,53,41,32,75,41,41,41,
+32,40,95,49,55,56,55,32,40,40,79,32,35,54,49,41,32,75,41,41,
+41,41,32,40,40,67,32,79,41,32,75,41,41,41,41,32,40,95,49,56,
+52,54,32,95,49,48,49,54,41,41,41,32,40,40,65,32,58,49,48,49,
+55,32,40,40,95,50,56,52,32,95,49,56,51,50,41,32,95,49,48,51,
+54,41,41,32,40,40,65,32,58,49,48,49,56,32,40,40,95,50,56,52,
+32,95,49,56,51,50,41,32,95,49,48,51,49,41,41,32,40,40,65,32,
+58,49,48,49,57,32,40,40,95,50,56,52,32,95,49,56,51,50,41,32,
+95,49,48,52,51,41,41,32,40,40,65,32,58,49,48,50,48,32,40,40,
+95,50,56,52,32,95,49,56,51,50,41,32,40,40,95,50,56,52,32,95,
+49,55,57,50,41,32,40,95,52,51,49,32,95,49,48,52,51,41,41,41,
+41,32,40,40,65,32,58,49,48,50,49,32,40,40,95,50,56,52,32,95,
+49,56,51,50,41,32,95,49,48,52,54,41,41,32,40,40,65,32,58,49,
+48,50,50,32,40,40,67,32,40,40,80,32,40,40,40,67,39,32,95,49,
+56,49,55,41,32,95,49,48,56,57,41,32,40,95,49,55,56,55,32,34,
+40,46,46,41,34,41,41,41,32,95,49,48,56,57,41,41,32,95,49,48,
+56,57,41,41,32,40,40,65,32,58,49,48,50,51,32,40,85,32,40,40,
+83,32,40,40,40,83,39,32,83,39,41,32,40,40,67,32,60,41,32,35,
+53,41,41,32,40,40,83,32,40,40,40,83,39,32,83,39,41,32,40,40,
+67,32,60,41,32,35,56,41,41,32,40,40,67,32,40,40,40,83,39,32,
+83,39,41,32,40,40,67,32,60,41,32,35,57,41,41,32,40,40,67,32,
+40,40,40,67,39,32,83,39,41,32,40,40,67,32,60,41,32,35,49,48,
+41,41,32,40,85,32,40,40,66,32,40,95,49,56,49,56,32,40,95,49,
+55,56,55,32,34,100,101,102,97,117,108,116,34,41,41,41,32,40,40,66,
+32,95,49,55,57,55,41,32,40,40,66,32,95,49,55,57,49,41,32,40,
+40,66,32,40,95,49,55,57,53,32,40,95,49,55,56,55,32,34,44,32,
+34,41,41,41,32,40,95,52,51,49,32,95,49,48,52,54,41,41,41,41,
+41,41,41,41,32,40,85,32,40,40,66,32,95,49,48,51,51,41,32,40,
+40,66,32,40,95,49,56,49,56,32,40,95,49,55,56,55,32,34,105,110,
+115,116,97,110,99,101,34,41,41,41,32,95,49,48,52,54,41,41,41,41,
+41,41,32,40,85,32,40,40,66,32,40,66,32,40,66,32,95,49,48,51,
+51,41,41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,40,
+40,66,32,40,66,32,95,49,56,49,56,41,41,32,40,40,40,67,39,32,
+66,41,32,40,40,66,32,95,49,56,49,56,41,32,40,40,66,32,40,95,
+49,56,49,56,32,40,95,49,55,56,55,32,34,99,108,97,115,115,34,41,
+41,41,32,95,49,48,50,52,41,41,41,32,95,49,48,50,57,41,41,41,
+32,95,49,48,50,53,41,41,41,41,41,41,32,40,40,67,32,40,40,40,
+83,39,32,83,39,41,32,40,40,67,32,60,41,32,35,54,41,41,32,40,
+40,67,32,40,40,40,67,39,32,83,39,41,32,40,40,67,32,60,41,32,
+35,55,41,41,32,40,85,32,40,40,67,32,66,41,32,40,40,66,32,40,
+40,67,39,32,40,67,39,32,95,49,56,49,56,41,41,32,40,40,40,67,
+39,32,66,41,32,40,40,66,32,95,49,56,49,56,41,32,40,40,66,32,
+95,49,55,56,55,41,32,40,40,66,32,40,95,53,48,52,32,34,105,110,
+102,105,120,34,41,41,32,40,40,67,32,40,40,80,32,40,40,79,32,35,
+49,48,56,41,32,75,41,41,32,40,40,79,32,35,49,49,52,41,32,75,
+41,41,41,32,75,41,41,41,41,41,32,40,40,66,32,95,49,55,56,55,
+41,32,40,95,49,56,52,50,32,95,51,49,54,41,41,41,41,41,32,40,
+40,66,32,95,49,55,57,49,41,32,40,40,66,32,40,95,49,55,57,53,
+32,40,95,49,55,56,55,32,34,44,32,34,41,41,41,32,40,95,52,51,
+49,32,95,49,48,56,57,41,41,41,41,41,41,41,41,32,40,85,32,40,
+40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,
+95,49,56,49,56,41,41,32,40,40,40,67,39,32,40,67,39,32,95,49,
+56,49,56,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,95,
+49,56,49,56,41,32,40,40,66,32,95,49,55,56,55,41,32,40,40,66,
+32,40,95,53,48,52,32,34,102,111,114,101,105,103,110,32,105,109,112,111,
+114,116,32,99,99,97,108,108,32,34,41,41,32,40,95,49,56,52,50,32,
+40,95,52,50,52,32,95,49,53,57,41,41,41,41,41,41,32,95,49,48,
+56,57,41,41,32,40,95,49,55,56,55,32,34,58,58,34,41,41,41,41,
+32,95,49,48,52,54,41,41,41,41,41,32,40,85,32,40,85,32,40,40,
+40,67,39,32,40,67,39,32,40,67,39,32,66,41,41,41,32,40,40,66,
+32,40,66,32,40,66,32,95,49,56,49,55,41,41,41,32,40,40,40,67,
+39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,95,49,56,
+49,55,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,95,49,
+56,49,56,41,32,40,40,66,32,40,95,49,56,49,56,32,40,95,49,55,
+56,55,32,34,105,109,112,111,114,116,34,41,41,41,32,40,40,80,32,95,
+49,55,56,56,41,32,40,95,49,55,56,55,32,34,113,117,97,108,105,102,
+105,101,100,34,41,41,41,41,41,32,95,49,48,56,57,41,41,41,32,40,
+40,66,32,95,49,55,56,55,41,32,40,40,95,53,49,53,32,75,41,32,
+40,40,95,50,56,52,32,40,95,53,48,52,32,34,32,97,115,32,34,41,
+41,32,95,49,48,56,54,41,41,41,41,41,41,32,40,40,80,32,95,49,
+55,56,56,41,32,40,85,32,40,40,40,67,39,32,66,41,32,40,40,66,
+32,95,49,56,49,55,41,32,40,40,66,32,95,49,55,56,55,41,32,40,
+40,80,32,75,41,32,34,32,104,105,100,105,110,103,34,41,41,41,41,32,
+40,40,66,32,95,49,55,57,55,41,32,40,40,66,32,40,95,50,56,50,
+32,95,49,55,57,49,41,41,32,40,40,66,32,40,95,49,55,57,53,32,
+40,95,49,55,56,55,32,34,44,32,34,41,41,41,32,40,95,52,51,49,
+32,95,49,48,50,50,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+32,40,40,83,32,40,40,40,83,39,32,83,39,41,32,40,40,67,32,60,
+41,32,35,50,41,41,32,40,40,67,32,40,40,40,83,39,32,83,39,41,
+32,40,40,67,32,60,41,32,35,51,41,41,32,40,40,67,32,40,40,40,
+67,39,32,83,39,41,32,40,40,67,32,60,41,32,35,52,41,41,32,40,
+85,32,40,40,40,67,39,32,66,41,32,40,40,66,32,95,49,56,49,56,
+41,32,40,40,40,67,39,32,95,49,56,49,56,41,32,95,49,48,56,57,
+41,32,40,95,49,55,56,55,32,34,58,58,34,41,41,41,41,32,95,49,
+48,52,54,41,41,41,41,32,40,85,32,40,40,40,67,39,32,95,49,48,
+50,54,41,32,95,49,48,56,57,41,32,40,95,49,55,56,55,32,40,40,
+79,32,35,54,49,41,32,75,41,41,41,41,41,41,41,32,40,85,32,40,
+40,40,67,39,32,66,41,32,40,40,66,32,95,49,56,49,56,41,32,40,
+40,40,67,39,32,95,49,56,49,56,41,32,40,40,66,32,40,95,49,56,
+49,56,32,40,95,49,55,56,55,32,34,116,121,112,101,34,41,41,41,32,
+95,49,48,50,57,41,41,32,40,95,49,55,56,55,32,40,40,79,32,35,
+54,49,41,32,75,41,41,41,41,41,32,95,49,48,52,54,41,41,41,41,
+41,32,40,40,67,32,40,40,40,67,39,32,83,39,41,32,40,40,67,32,
+60,41,32,35,49,41,41,32,40,85,32,40,40,40,67,39,32,66,41,32,
+40,40,66,32,95,49,56,49,56,41,32,40,40,40,67,39,32,95,49,56,
+49,56,41,32,40,40,66,32,40,95,49,56,49,56,32,40,95,49,55,56,
+55,32,34,110,101,119,116,121,112,101,34,41,41,41,32,95,49,48,50,57,
+41,41,32,40,95,49,55,56,55,32,40,40,79,32,35,54,49,41,32,75,
+41,41,41,41,41,32,95,49,48,50,55,41,41,41,41,32,40,85,32,40,
+40,40,83,39,32,83,41,32,40,40,66,32,85,41,32,40,40,66,32,40,
+95,49,56,49,56,32,40,95,49,55,56,55,32,34,100,97,116,97,34,41,
+41,41,32,95,49,48,50,57,41,41,41,32,40,40,66,32,90,41,32,40,
+40,66,32,90,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,95,
+49,56,49,56,41,32,40,40,40,67,39,32,95,49,56,49,56,41,32,40,
+40,66,32,40,95,49,56,49,56,32,40,95,49,55,56,55,32,34,100,97,
+116,97,34,41,41,41,32,95,49,48,50,57,41,41,32,40,95,49,55,56,
+55,32,40,40,79,32,35,54,49,41,32,75,41,41,41,41,41,32,40,40,
+66,32,95,49,55,57,49,41,32,40,40,66,32,40,95,49,55,57,53,32,
+40,95,49,55,56,55,32,34,32,124,34,41,41,41,32,40,95,52,51,49,
+32,95,49,48,50,55,41,41,41,41,41,41,41,41,41,41,41,41,41,32,
+40,40,65,32,58,49,48,50,52,32,40,40,83,32,40,85,32,95,49,55,
+56,56,41,41,32,40,90,32,40,90,32,40,40,40,67,39,32,95,49,56,
+49,56,41,32,40,40,66,32,95,49,48,52,54,41,32,95,57,50,52,41,
+41,32,40,95,49,55,56,55,32,34,61,62,34,41,41,41,41,41,41,32,
+40,40,65,32,58,49,48,50,53,32,40,40,83,32,40,85,32,95,49,55,
+56,56,41,41,32,40,90,32,40,90,32,40,40,66,32,40,95,49,56,49,
+56,32,40,95,49,55,56,55,32,40,40,79,32,35,49,50,52,41,32,75,
+41,41,41,41,32,40,40,66,32,95,49,55,57,49,41,32,40,40,66,32,
+40,95,49,55,57,53,32,40,95,49,55,56,55,32,40,40,79,32,35,52,
+52,41,32,75,41,41,41,41,32,40,95,52,51,49,32,40,85,32,40,40,
+40,67,39,32,66,41,32,40,40,66,32,95,49,56,49,56,41,32,40,40,
+40,67,39,32,95,49,56,49,56,41,32,40,40,66,32,95,49,55,57,49,
+41,32,40,95,52,51,49,32,95,49,48,56,57,41,41,41,32,40,95,49,
+55,56,55,32,40,40,79,32,35,52,53,41,32,75,41,41,41,41,41,32,
+40,40,66,32,95,49,55,57,49,41,32,40,95,52,51,49,32,95,49,48,
+56,57,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,
+49,48,50,54,32,40,40,66,32,40,66,32,40,95,50,56,52,32,95,49,
+55,57,50,41,41,41,32,40,40,66,32,40,66,32,95,52,51,49,41,41,
+32,40,40,66,32,40,66,32,85,41,41,32,40,40,66,32,40,66,32,40,
+66,32,40,66,32,95,49,56,50,50,41,41,41,41,32,40,40,40,67,39,
+32,66,41,32,40,40,66,32,40,67,39,32,66,41,41,32,40,40,66,32,
+40,66,32,79,41,41,32,40,40,40,67,39,32,66,41,32,95,49,56,49,
+56,41,32,40,40,66,32,95,49,55,57,49,41,32,40,95,52,51,49,32,
+95,49,48,52,53,41,41,41,41,41,41,32,40,40,40,67,39,32,40,67,
+39,32,79,41,41,32,95,49,48,51,50,41,32,75,41,41,41,41,41,41,
+41,32,40,40,65,32,58,49,48,50,55,32,40,85,32,40,40,40,67,39,
+32,40,67,39,32,40,67,39,32,66,41,41,41,32,40,40,66,32,40,66,
+32,40,66,32,95,49,56,49,56,41,41,41,32,40,40,40,67,39,32,40,
+67,39,32,66,41,41,32,40,40,66,32,40,66,32,95,49,56,49,56,41,
+41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,95,49,56,49,56,
+41,32,95,49,48,51,56,41,41,32,95,49,48,50,52,41,41,41,32,95,
+49,48,56,57,41,41,41,32,40,40,80,32,40,40,66,32,95,49,55,57,
+49,41,32,40,95,52,51,49,32,95,49,48,50,56,41,41,41,32,40,40,
+66,32,95,49,55,57,56,41,32,40,40,66,32,40,95,50,56,50,32,95,
+49,55,57,49,41,41,32,40,95,52,51,49,32,40,85,32,40,40,40,67,
+39,32,40,67,39,32,95,49,56,49,55,41,41,32,40,40,40,67,39,32,
+66,41,32,40,40,66,32,95,49,56,49,56,41,32,40,40,40,67,39,32,
+95,49,56,49,56,41,32,95,49,48,56,57,41,32,40,95,49,55,56,55,
+32,34,58,58,34,41,41,41,41,32,95,49,48,50,56,41,41,32,40,95,
+49,55,56,55,32,40,40,79,32,35,52,52,41,32,75,41,41,41,41,41,
+41,41,41,41,41,41,32,40,40,65,32,58,49,48,50,56,32,40,85,32,
+40,40,67,32,40,40,67,32,83,39,41,32,95,49,48,52,54,41,41,32,
+40,40,66,32,40,95,49,56,49,55,32,40,95,49,55,56,55,32,40,40,
+79,32,35,51,51,41,32,75,41,41,41,41,32,95,49,48,52,54,41,41,
+41,41,32,40,40,65,32,58,49,48,50,57,32,40,85,32,40,40,66,32,
+40,66,32,95,49,55,57,49,41,41,32,40,40,40,67,39,32,66,41,32,
+40,40,66,32,95,53,48,51,41,32,95,49,48,56,57,41,41,32,40,95,
+52,51,49,32,95,49,48,51,48,41,41,41,41,41,32,40,40,65,32,58,
+49,48,51,48,32,40,85,32,40,40,66,32,40,66,32,40,95,50,56,50,
+32,95,49,55,57,55,41,41,41,32,40,40,40,67,39,32,66,41,32,40,
+40,66,32,95,49,56,49,55,41,32,40,40,40,67,39,32,95,49,56,49,
+55,41,32,95,49,48,56,57,41,32,40,95,49,55,56,55,32,34,58,58,
+34,41,41,41,41,32,95,49,48,52,55,41,41,41,41,32,40,40,65,32,
+58,49,48,51,49,32,40,40,66,32,95,49,55,57,50,41,32,40,95,52,
+51,49,32,40,40,83,32,40,40,83,32,66,41,32,40,40,40,83,39,32,
+40,83,39,32,83,41,41,32,40,40,66,32,40,66,32,40,40,83,39,32,
+83,39,41,32,40,40,67,32,60,41,32,35,53,41,41,41,41,32,40,40,
+66,32,40,40,67,39,32,40,67,39,32,66,41,41,32,40,67,32,40,40,
+67,32,61,61,41,32,35,53,41,41,41,41,32,40,40,66,32,85,41,32,
+40,90,32,95,49,48,50,51,41,41,41,41,41,32,40,40,66,32,40,40,
+67,39,32,40,67,39,32,66,41,41,32,40,67,32,40,40,67,32,61,61,
+41,32,35,52,41,41,41,41,32,40,40,66,32,85,41,32,40,90,32,40,
+90,32,95,49,48,50,51,41,41,41,41,41,41,41,32,40,40,40,67,39,
+32,95,49,56,49,50,41,32,95,49,48,50,51,41,32,40,95,49,55,56,
+55,32,75,41,41,41,41,41,41,32,40,40,65,32,58,49,48,51,50,32,
+40,40,66,32,85,41,32,40,40,66,32,40,66,32,95,49,48,51,51,41,
+41,32,95,49,48,51,52,41,41,41,32,40,40,65,32,58,49,48,51,51,
+32,40,40,40,83,39,32,83,41,32,85,41,32,40,40,66,32,90,41,32,
+40,40,66,32,90,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,
+95,49,56,49,50,41,32,40,40,67,32,95,49,56,49,56,41,32,40,95,
+49,55,56,55,32,34,119,104,101,114,101,34,41,41,41,41,32,40,40,66,
+32,40,95,49,55,57,51,32,35,50,41,41,32,40,40,66,32,95,49,55,
+57,50,41,32,40,95,52,51,49,32,95,49,48,52,51,41,41,41,41,41,
+41,41,41,32,40,40,65,32,58,49,48,51,52,32,40,40,40,83,39,32,
+83,41,32,40,40,66,32,40,67,32,83,41,41,32,40,40,66,32,40,66,
+32,40,67,32,66,41,41,41,32,40,40,40,67,39,32,40,83,39,32,40,
+67,39,32,67,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,67,
+32,67,39,41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,
+32,67,41,32,40,40,66,32,40,67,32,67,39,41,41,32,40,40,40,67,
+39,32,66,41,32,40,40,66,32,95,49,56,49,56,41,32,40,95,49,56,
+49,56,32,40,95,49,55,56,55,32,75,41,41,41,41,32,95,49,48,51,
+54,41,41,41,41,32,40,90,32,75,41,41,41,41,32,40,90,32,75,41,
+41,41,41,41,32,40,40,66,32,40,66,32,95,49,55,57,50,41,41,32,
+40,40,66,32,95,52,51,49,41,32,95,49,48,51,53,41,41,41,41,32,
+40,40,65,32,58,49,48,51,53,32,40,40,66,32,85,41,32,40,40,40,
+67,39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,95,49,
+56,49,56,41,41,32,40,40,67,39,32,95,49,56,49,56,41,32,40,40,
+66,32,40,95,49,56,49,56,32,40,95,49,55,56,55,32,34,32,124,34,
+41,41,41,32,40,40,66,32,95,49,55,57,49,41,32,40,40,66,32,40,
+95,49,55,57,53,32,40,95,49,55,56,55,32,40,40,79,32,35,52,52,
+41,32,75,41,41,41,41,32,40,95,52,51,49,32,95,49,48,52,50,41,
+41,41,41,41,41,41,32,95,49,48,51,54,41,41,41,32,40,40,65,32,
+58,49,48,51,54,32,40,40,83,32,73,41,32,40,40,66,32,40,83,32,
+40,40,40,83,39,32,83,39,41,32,40,40,67,32,60,41,32,35,49,48,
+41,41,32,40,40,83,32,40,40,40,83,39,32,83,39,41,32,40,40,67,
+32,60,41,32,35,49,53,41,41,32,40,40,83,32,40,40,40,83,39,32,
+83,39,41,32,40,40,67,32,60,41,32,35,49,55,41,41,32,40,40,67,
+32,40,40,40,83,39,32,83,39,41,32,40,40,67,32,60,41,32,35,49,
+56,41,41,32,40,40,67,32,40,40,40,67,39,32,83,39,41,32,40,40,
+67,32,60,41,32,35,49,57,41,41,32,40,85,32,40,40,40,67,39,32,
+66,41,32,40,40,66,32,95,49,56,49,56,41,32,95,49,48,51,56,41,
+41,32,95,49,48,52,54,41,41,41,41,32,40,85,32,95,49,48,52,48,
+41,41,41,41,32,40,85,32,40,40,66,32,95,49,55,56,55,41,32,40,
+40,66,32,40,95,53,48,52,32,40,40,79,32,35,57,55,41,32,75,41,
+41,41,32,40,95,49,56,52,50,32,95,51,49,54,41,41,41,41,41,41,
+41,32,40,40,67,32,40,40,40,67,39,32,83,39,41,32,40,40,67,32,
+60,41,32,35,49,54,41,41,32,40,85,32,40,40,66,32,40,66,32,40,
+95,50,56,50,32,95,49,55,57,55,41,41,41,32,40,40,40,67,39,32,
+66,41,32,40,40,66,32,95,49,56,49,56,41,32,40,40,40,67,39,32,
+95,49,56,49,56,41,32,95,49,48,51,54,41,32,40,95,49,55,56,55,
+32,34,45,62,34,41,41,41,41,32,95,49,48,51,54,41,41,41,41,41,
+32,40,85,32,40,40,40,67,39,32,66,41,32,40,40,66,32,95,49,56,
+49,55,41,32,40,40,40,67,39,32,95,49,56,49,55,41,32,95,49,48,
+56,57,41,32,40,95,49,55,56,55,32,40,40,79,32,35,54,52,41,32,
+75,41,41,41,41,41,32,95,49,48,51,54,41,41,41,41,41,41,32,40,
+40,83,32,40,40,40,83,39,32,83,39,41,32,40,40,67,32,60,41,32,
+35,49,50,41,41,32,40,40,67,32,40,40,40,83,39,32,83,39,41,32,
+40,40,67,32,60,41,32,35,49,51,41,41,32,40,40,67,32,40,40,40,
+67,39,32,83,39,41,32,40,40,67,32,60,41,32,35,49,52,41,41,32,
+40,85,32,40,40,66,32,40,95,49,56,49,56,32,40,95,49,55,56,55,
+32,40,40,79,32,35,52,53,41,32,75,41,41,41,41,32,95,49,48,51,
+54,41,41,41,41,32,40,85,32,40,40,40,67,39,32,66,41,32,40,40,
+66,32,95,49,56,49,56,41,32,40,40,40,67,39,32,95,49,56,49,56,
+41,32,95,49,48,51,54,41,32,40,95,49,55,56,55,32,34,58,58,34,
+41,41,41,41,32,95,49,48,52,54,41,41,41,41,41,32,40,85,32,40,
+40,66,32,40,66,32,40,66,32,40,95,50,56,50,32,95,49,55,57,55,
+41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,95,49,56,50,50,
+41,41,41,32,40,40,40,67,39,32,66,41,32,40,66,39,32,40,40,66,
+32,79,41,32,40,40,66,32,40,95,49,56,49,56,32,40,95,49,55,56,
+55,32,34,105,102,34,41,41,41,32,95,49,48,51,54,41,41,41,41,32,
+40,40,40,67,39,32,66,41,32,40,40,66,32,79,41,32,40,40,66,32,
+40,95,49,56,49,56,32,40,95,49,55,56,55,32,34,116,104,101,110,34,
+41,41,41,32,95,49,48,51,54,41,41,41,32,40,40,40,67,39,32,79,
+41,32,40,40,66,32,40,95,49,56,49,56,32,40,95,49,55,56,55,32,
+34,101,108,115,101,34,41,41,41,32,95,49,48,51,54,41,41,32,75,41,
+41,41,41,41,41,41,41,41,32,40,40,67,32,40,40,40,67,39,32,83,
+39,41,32,40,40,67,32,60,41,32,35,49,49,41,41,32,40,85,32,40,
+40,66,32,40,66,32,40,95,50,56,50,32,95,49,55,57,55,41,41,41,
+32,40,40,40,67,39,32,66,41,32,40,40,66,32,95,49,56,49,56,41,
+32,95,49,48,56,57,41,41,32,95,49,48,51,54,41,41,41,41,41,32,
+40,85,32,40,40,66,32,40,66,32,40,95,50,56,50,32,95,49,55,57,
+55,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,95,49,
+56,49,56,41,32,95,49,48,51,54,41,41,32,95,49,48,56,57,41,41,
+41,41,41,41,41,41,41,32,40,40,66,32,40,83,32,40,40,40,83,39,
+32,83,39,41,32,40,40,67,32,60,41,32,35,53,41,41,32,40,40,83,
+32,40,40,40,83,39,32,83,39,41,32,40,40,67,32,60,41,32,35,55,
+41,41,32,40,40,67,32,40,40,40,83,39,32,83,39,41,32,40,40,67,
+32,60,41,32,35,56,41,41,32,40,40,67,32,40,40,40,67,39,32,83,
+39,41,32,40,40,67,32,60,41,32,35,57,41,41,32,40,85,32,40,40,
+40,67,39,32,66,41,32,40,40,66,32,95,49,56,49,49,41,32,40,40,
+95,53,49,53,32,40,95,49,55,56,55,32,34,100,111,34,41,41,32,40,
+40,40,67,39,32,95,49,56,49,55,41,32,95,49,48,56,57,41,32,40,
+95,49,55,56,55,32,34,46,100,111,34,41,41,41,41,41,32,40,40,66,
+32,40,95,49,55,57,51,32,35,50,41,41,32,40,40,66,32,95,49,55,
+57,50,41,32,40,95,52,51,49,32,95,49,48,52,50,41,41,41,41,41,
+41,41,32,40,85,32,40,40,83,32,73,41,32,40,40,40,67,39,32,40,
+67,39,32,66,41,41,32,40,40,66,32,40,67,32,40,40,67,32,61,61,
+41,32,35,48,41,41,41,32,95,49,48,51,57,41,41,32,40,85,32,40,
+95,49,48,52,56,32,95,49,48,51,54,41,41,41,41,41,41,41,41,32,
+40,85,32,40,40,66,32,40,95,50,56,50,32,95,49,55,57,55,41,41,
+32,40,40,66,32,40,95,50,56,50,32,95,49,55,57,49,41,41,32,40,
+40,66,32,40,95,49,55,57,53,32,40,95,49,55,56,55,32,40,40,79,
+32,35,52,52,41,32,75,41,41,41,41,32,40,95,52,51,49,32,95,49,
+48,51,54,41,41,41,41,41,41,41,41,32,40,40,67,32,40,40,40,67,
+39,32,83,39,41,32,40,40,67,32,60,41,32,35,54,41,41,32,40,85,
+32,40,40,40,67,39,32,66,41,32,40,40,66,32,95,49,56,49,49,41,
+32,40,40,66,32,40,95,49,56,49,49,32,40,95,49,55,56,55,32,34,
+108,101,116,34,41,41,41,32,40,40,66,32,40,95,49,55,57,51,32,35,
+50,41,41,32,40,40,66,32,95,49,55,57,50,41,32,40,95,52,51,49,
+32,95,49,48,52,51,41,41,41,41,41,41,32,40,40,66,32,40,95,49,
+56,49,56,32,40,95,49,55,56,55,32,34,105,110,34,41,41,41,32,95,
+49,48,51,54,41,41,41,41,41,32,40,85,32,40,40,40,67,39,32,66,
+41,32,40,40,66,32,95,49,56,49,49,41,32,40,40,40,67,39,32,95,
+49,56,49,56,41,32,40,40,66,32,40,95,49,56,49,56,32,40,95,49,
+55,56,55,32,34,99,97,115,101,34,41,41,41,32,95,49,48,51,54,41,
+41,32,40,95,49,55,56,55,32,34,111,102,34,41,41,41,41,32,40,40,
+66,32,40,95,49,55,57,51,32,35,50,41,41,32,40,40,66,32,95,49,
+55,57,50,41,32,40,95,52,51,49,32,95,49,48,52,52,41,41,41,41,
+41,41,41,41,41,41,32,40,40,66,32,40,83,32,40,40,40,83,39,32,
+83,39,41,32,40,40,67,32,60,41,32,35,50,41,41,32,40,40,67,32,
+40,40,40,83,39,32,83,39,41,32,40,40,67,32,60,41,32,35,51,41,
+41,32,40,40,67,32,40,40,40,67,39,32,83,39,41,32,40,40,67,32,
+60,41,32,35,52,41,41,32,40,85,32,40,75,32,40,40,66,32,95,49,
+55,56,55,41,32,95,49,48,52,49,41,41,41,41,41,32,40,85,32,40,
+40,66,32,40,95,50,56,50,32,95,49,55,57,55,41,41,32,40,40,66,
+32,40,95,49,56,49,55,32,40,95,49,55,56,55,32,40,40,79,32,35,
+57,50,41,32,75,41,41,41,41,32,40,40,95,49,48,50,54,32,95,49,
+55,56,56,41,32,40,95,49,55,56,55,32,34,45,62,34,41,41,41,41,
+41,41,41,41,32,40,85,32,40,40,66,32,40,66,32,95,49,48,51,54,
+41,41,32,40,95,52,51,54,32,40,40,66,32,85,41,32,40,40,66,32,
+40,66,32,95,57,49,56,41,41,32,40,40,67,39,32,95,57,49,56,41,
+32,95,57,49,55,41,41,41,41,41,41,41,41,41,41,32,40,40,40,67,
+39,32,67,41,32,40,40,66,32,40,40,67,39,32,83,39,41,32,40,40,
+67,32,60,41,32,35,49,41,41,41,32,40,40,66,32,85,41,32,40,90,
+32,40,90,32,40,95,49,48,51,55,32,95,53,48,50,41,41,41,41,41,
+41,32,40,85,32,40,40,83,32,40,40,40,67,39,32,83,41,32,40,40,
+66,32,40,40,83,39,32,95,49,48,57,54,41,32,95,52,54,56,41,41,
+32,40,40,66,32,40,66,32,95,49,55,56,55,41,41,32,40,40,66,32,
+40,67,32,40,40,83,32,40,40,95,52,53,56,32,95,49,52,49,41,32,
+34,105,110,115,116,36,34,41,41,32,73,41,41,41,32,95,49,48,56,54,
+41,41,41,41,32,40,40,66,32,95,49,55,57,55,41,32,95,49,55,56,
+55,41,41,41,32,40,40,66,32,95,49,48,56,54,41,32,95,49,48,57,
+52,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,49,48,51,55,
+32,40,40,40,83,39,32,83,41,32,40,40,66,32,40,67,32,66,41,41,
+32,40,40,40,83,39,32,40,83,39,32,67,41,41,32,40,40,66,32,40,
+66,32,40,40,83,39,32,83,39,41,32,40,40,67,32,60,41,32,35,49,
+41,41,41,41,32,40,40,66,32,40,40,67,39,32,40,67,39,32,66,41,
+41,32,40,67,32,40,40,67,32,61,61,41,32,35,49,41,41,41,41,32,
+40,40,66,32,85,41,32,40,40,66,32,40,67,39,32,95,49,48,51,55,
+41,41,32,40,67,32,95,53,48,51,41,41,41,41,41,41,32,40,40,66,
+32,40,66,32,85,41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,
+41,32,40,40,40,67,39,32,40,67,39,32,83,41,41,32,40,40,40,83,
+39,32,66,41,32,40,40,66,32,40,83,39,32,83,41,41,32,40,40,66,
+32,40,66,32,40,40,67,39,32,83,41,32,95,49,48,57,54,41,41,41,
+32,40,40,40,67,39,32,66,41,32,83,41,32,40,40,66,32,40,40,83,
+39,32,66,41,32,80,41,41,32,40,40,40,67,39,32,66,41,32,40,40,
+66,32,40,67,39,32,40,67,39,32,80,41,41,41,32,40,40,66,32,40,
+66,32,40,66,32,40,95,50,56,50,32,95,49,55,57,55,41,41,41,41,
+32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,
+66,32,95,49,56,49,56,41,41,32,40,40,66,32,40,40,67,39,32,95,
+49,56,49,56,41,32,95,49,48,51,54,41,41,32,95,49,55,56,55,41,
+41,41,32,95,49,48,51,54,41,41,41,41,32,40,90,32,75,41,41,41,
+41,41,41,41,32,40,40,40,83,39,32,66,41,32,40,40,66,32,40,83,
+39,32,83,41,41,32,40,40,66,32,40,66,32,40,40,67,39,32,83,41,
+32,95,49,48,57,54,41,41,41,32,40,40,40,67,39,32,66,41,32,83,
+41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,67,39,32,80,
+41,41,32,40,40,66,32,40,66,32,40,95,50,56,50,32,95,49,55,57,
+55,41,41,41,32,40,40,66,32,40,40,67,39,32,95,49,56,49,56,41,
+32,95,49,48,51,54,41,41,32,95,49,55,56,55,41,41,41,41,32,40,
+90,32,75,41,41,41,41,41,41,32,40,40,40,83,39,32,40,67,39,32,
+40,67,39,32,67,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,
+67,32,40,40,67,32,40,95,50,50,51,32,95,49,52,49,41,41,32,35,
+52,52,41,41,41,41,41,32,40,40,66,32,67,41,32,40,40,66,32,40,
+40,67,39,32,83,41,32,40,40,67,32,40,95,50,50,51,32,95,49,52,
+51,41,41,32,34,91,93,34,41,41,41,32,40,40,40,83,39,32,67,41,
+32,40,40,40,67,39,32,40,95,50,50,51,32,95,51,49,52,41,41,32,
+95,52,52,57,41,32,35,49,41,41,32,40,40,66,32,95,49,48,51,54,
+41,32,40,40,66,32,95,57,50,53,41,32,95,57,52,49,41,41,41,41,
+41,41,41,32,40,40,66,32,95,49,48,51,54,41,32,95,57,50,52,41,
+41,41,41,41,32,95,52,54,56,41,41,32,40,40,66,32,95,49,48,56,
+54,41,32,95,49,48,57,52,41,41,41,41,41,41,32,40,40,66,32,40,
+66,32,40,95,50,56,50,32,95,49,55,57,55,41,41,41,32,40,40,66,
+32,40,66,32,95,49,55,57,49,41,41,32,40,40,66,32,40,66,32,40,
+95,52,51,49,32,95,49,48,51,54,41,41,41,32,40,67,32,95,53,48,
+51,41,41,41,41,41,41,32,40,40,65,32,58,49,48,51,56,32,40,40,
+40,67,39,32,95,49,56,49,56,41,32,40,40,66,32,40,95,49,56,49,
+56,32,40,95,49,55,56,55,32,34,102,111,114,97,108,108,34,41,41,41,
+32,40,40,66,32,95,49,55,57,49,41,32,40,95,52,51,49,32,95,49,
+48,51,48,41,41,41,41,32,40,95,49,55,56,55,32,40,40,79,32,35,
+52,54,41,32,75,41,41,41,41,32,40,40,65,32,58,49,48,51,57,32,
+40,75,32,40,95,49,55,56,55,32,34,60,60,76,105,115,116,105,115,104,
+62,62,34,41,41,41,32,40,40,65,32,58,49,48,52,48,32,40,40,80,
+32,40,75,32,95,49,48,56,57,41,41,32,95,49,48,56,57,41,41,32,
+40,40,65,32,58,49,48,52,49,32,40,85,32,40,40,83,32,40,40,40,
+83,39,32,83,39,41,32,40,40,67,32,60,41,32,35,52,41,41,32,40,
+40,83,32,40,40,40,83,39,32,83,39,41,32,40,40,67,32,60,41,32,
+35,54,41,41,32,40,40,67,32,40,40,40,67,39,32,83,39,41,32,40,
+40,67,32,60,41,32,35,55,41,41,32,40,85,32,40,95,53,48,51,32,
+35,57,52,41,41,41,41,32,40,85,32,73,41,41,41,41,32,40,40,67,
+32,40,40,40,67,39,32,83,39,41,32,40,40,67,32,60,41,32,35,53,
+41,41,32,40,85,32,40,95,49,56,52,50,32,40,95,52,50,52,32,95,
+49,53,57,41,41,41,41,41,32,40,85,32,40,95,49,56,52,50,32,95,
+49,53,57,41,41,41,41,41,41,32,40,40,83,32,40,40,40,83,39,32,
+83,39,41,32,40,40,67,32,60,41,32,35,50,41,41,32,40,40,67,32,
+40,40,40,67,39,32,83,39,41,32,40,40,67,32,60,41,32,35,51,41,
+41,32,40,85,32,40,40,66,32,40,95,53,48,51,32,35,51,55,41,41,
+32,40,95,49,56,52,50,32,40,95,54,49,55,32,95,51,52,48,41,41,
+41,41,41,41,32,40,85,32,40,40,66,32,40,95,53,48,51,32,35,51,
+56,41,41,32,40,95,49,56,52,50,32,95,49,54,53,41,41,41,41,41,
+41,32,40,40,67,32,40,40,40,67,39,32,83,39,41,32,40,40,67,32,
+60,41,32,35,49,41,41,32,40,85,32,40,40,66,32,40,95,53,48,51,
+32,35,51,53,41,41,32,40,40,66,32,40,95,53,48,51,32,35,51,53,
+41,41,32,40,95,49,56,52,50,32,95,51,52,48,41,41,41,41,41,41,
+32,40,85,32,40,40,66,32,40,95,53,48,51,32,35,51,53,41,41,32,
+40,95,49,56,52,50,32,95,51,49,54,41,41,41,41,41,41,41,41,32,
+40,40,65,32,58,49,48,52,50,32,40,40,67,32,40,40,80,32,40,40,
+40,67,39,32,66,41,32,40,40,66,32,95,49,56,49,56,41,32,40,40,
+40,67,39,32,95,49,56,49,56,41,32,95,49,48,52,53,41,32,40,95,
+49,55,56,55,32,34,60,45,34,41,41,41,41,32,95,49,48,51,54,41,
+41,32,95,49,48,51,54,41,41,32,40,40,66,32,40,95,49,56,49,49,
+32,40,95,49,55,56,55,32,34,108,101,116,34,41,41,41,32,40,40,66,
+32,40,95,49,55,57,51,32,35,50,41,41,32,40,40,66,32,95,49,55,
+57,50,41,32,40,95,52,51,49,32,95,49,48,52,51,41,41,41,41,41,
+41,32,40,40,65,32,58,49,48,52,51,32,40,40,67,32,40,40,80,32,
+40,40,66,32,40,66,32,95,49,48,50,51,41,41,32,95,57,48,53,41,
+41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,95,49,56,49,56,
+41,32,40,40,40,67,39,32,95,49,56,49,56,41,32,95,49,48,52,53,
+41,32,40,95,49,55,56,55,32,40,40,79,32,35,54,49,41,32,75,41,
+41,41,41,41,32,95,49,48,51,54,41,41,41,32,40,40,40,67,39,32,
+66,41,32,40,40,66,32,95,49,56,49,56,41,32,40,40,40,67,39,32,
+95,49,56,49,56,41,32,95,49,48,56,57,41,32,40,95,49,55,56,55,
+32,34,58,58,34,41,41,41,41,32,95,49,48,52,54,41,41,41,32,40,
+40,65,32,58,49,48,52,52,32,40,85,32,40,40,40,67,39,32,66,41,
+32,40,40,66,32,95,49,56,49,55,41,32,95,49,48,52,53,41,41,32,
+40,95,49,48,51,50,32,40,95,49,55,56,55,32,34,45,62,34,41,41,
+41,41,41,32,40,40,65,32,58,49,48,52,53,32,95,49,48,51,54,41,
+32,40,40,65,32,58,49,48,52,54,32,95,49,48,51,54,41,32,40,40,
+65,32,58,49,48,52,55,32,95,49,48,52,54,41,32,40,40,65,32,58,
+49,48,52,56,32,40,40,66,32,40,66,32,40,95,50,56,50,32,95,49,
+55,57,57,41,41,41,32,40,40,66,32,40,66,32,40,95,50,56,50,32,
+95,49,55,57,49,41,41,41,32,40,40,66,32,40,66,32,40,95,49,55,
+57,53,32,40,95,49,55,56,55,32,40,40,79,32,35,52,52,41,32,75,
+41,41,41,41,41,32,95,52,51,49,41,41,41,41,32,40,40,65,32,58,
+49,48,52,57,32,40,40,67,32,40,40,80,32,40,90,32,40,40,67,32,
+79,41,32,75,41,41,41,32,40,90,32,95,57,54,56,41,41,41,32,40,
+75,50,32,95,53,48,50,41,41,41,32,40,40,65,32,58,49,48,53,48,
+32,40,95,52,51,48,32,95,49,48,52,57,41,41,32,40,40,65,32,58,
+49,48,53,49,32,75,41,32,40,40,65,32,58,49,48,53,50,32,65,41,
+32,40,40,65,32,58,49,48,53,51,32,40,40,66,32,40,66,32,40,66,
+32,90,41,41,41,32,40,40,66,32,40,66,32,67,41,41,32,80,41,41,
+41,32,40,40,65,32,58,49,48,53,52,32,40,90,32,85,41,41,32,40,
+40,65,32,58,49,48,53,53,32,40,40,66,32,95,57,49,55,41,32,40,
+40,67,32,95,49,48,56,52,41,32,34,110,101,103,97,116,101,34,41,41,
+41,32,40,40,65,32,58,49,48,53,54,32,40,40,80,32,95,57,57,50,
+41,32,40,40,95,53,56,49,32,95,51,49,48,41,32,40,95,51,57,50,
+32,35,54,41,41,41,41,32,40,40,65,32,58,49,48,53,55,32,40,40,
+40,67,39,32,67,41,32,40,40,40,67,39,32,40,67,39,32,67,41,41,
+32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,41,32,
+40,40,40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,41,32,40,
+40,66,32,40,66,32,40,40,67,39,32,40,67,39,32,67,39,41,41,32,
+40,40,66,32,40,66,32,67,41,41,32,40,40,40,67,39,32,40,67,39,
+32,67,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,89,
+41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,83,32,
+40,40,40,67,39,32,83,39,41,32,40,40,66,32,83,39,41,32,83,41,
+41,32,40,40,40,67,39,32,40,67,39,32,40,83,39,32,40,67,39,32,
+80,41,41,41,41,32,40,40,67,32,40,40,40,67,39,32,67,39,41,32,
+40,40,66,32,83,39,41,32,67,39,41,41,32,40,40,40,67,39,32,66,
+41,32,40,40,67,32,67,39,41,32,95,49,57,51,41,41,32,40,90,32,
+75,41,41,41,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,41,
+41,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,
+32,40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,41,41,41,41,
+32,40,40,66,32,40,40,83,39,32,66,41,32,40,40,66,32,40,83,39,
+32,40,83,39,32,40,83,39,32,40,83,39,32,66,41,41,41,41,41,32,
+40,40,66,32,40,40,83,39,32,40,83,39,32,67,41,41,32,40,40,66,
+32,40,66,32,40,40,67,39,32,83,39,41,32,83,39,41,41,41,32,40,
+40,66,32,40,66,32,40,40,67,39,32,66,41,32,40,85,32,95,50,56,
+41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,40,
+40,66,32,40,66,32,67,41,41,32,40,40,66,32,40,66,32,40,83,32,
+67,39,41,41,41,32,40,40,66,32,40,66,32,40,66,32,90,41,41,41,
+32,40,40,66,32,40,66,32,40,66,32,90,41,41,41,32,40,40,66,32,
+40,66,32,40,66,32,90,41,41,41,32,40,40,67,32,40,67,39,32,66,
+41,41,32,40,40,67,32,79,41,32,75,41,41,41,41,41,41,41,41,32,
+75,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,
+32,40,67,39,32,66,41,41,41,41,32,40,40,66,32,40,66,32,40,66,
+32,40,40,67,39,32,67,39,41,32,67,39,41,41,41,41,32,40,40,40,
+67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,41,41,
+32,40,40,66,32,40,40,67,39,32,66,41,32,66,41,41,32,67,41,41,
+32,95,53,48,50,41,41,41,32,40,90,32,75,41,41,41,41,41,41,32,
+40,40,66,32,40,66,32,40,66,32,40,40,83,39,32,40,83,39,32,40,
+83,39,32,40,83,39,32,66,41,41,41,41,32,40,40,66,32,40,66,32,
+40,66,32,40,67,32,83,41,41,41,41,32,40,40,66,32,40,66,32,40,
+66,32,40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,66,32,85,
+41,32,40,90,32,40,90,32,75,41,41,41,41,41,41,41,32,40,40,66,
+32,40,66,32,40,66,32,67,41,41,41,32,40,40,40,67,39,32,66,41,
+32,67,39,41,32,40,67,32,95,53,48,51,41,41,41,41,41,41,41,41,
+41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,40,
+83,39,32,66,41,32,83,41,41,41,41,41,41,32,40,40,66,32,40,66,
+32,40,66,32,40,66,32,40,66,32,40,66,32,40,40,83,39,32,40,83,
+39,32,66,41,41,32,66,39,41,41,41,41,41,41,41,32,40,40,40,67,
+39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,
+39,32,40,67,39,32,66,41,41,41,41,41,41,41,32,40,40,66,32,40,
+66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,67,39,
+32,40,67,39,32,67,41,41,41,41,41,41,41,41,41,32,40,40,66,32,
+40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
+32,40,66,32,40,83,32,67,39,41,41,41,41,41,41,41,41,41,41,32,
+40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
+66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,90,41,41,
+41,41,41,41,41,41,41,41,41,41,32,40,40,40,83,39,32,40,67,39,
+32,40,67,39,32,40,83,39,32,40,83,39,32,40,83,39,32,40,67,39,
+32,40,83,39,32,40,67,39,32,40,83,39,32,40,83,39,32,67,41,41,
+41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
+40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
+32,40,66,32,40,67,32,83,39,41,41,41,41,41,41,41,41,41,41,41,
+41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,
+40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,
+40,67,39,32,40,67,39,32,66,41,41,41,41,41,41,41,41,41,41,41,
+32,40,40,40,83,39,32,66,41,32,40,40,66,32,40,83,39,32,66,41,
+41,32,40,40,66,32,66,39,41,32,40,40,66,32,66,39,41,32,40,40,
+66,32,66,39,41,32,40,40,66,32,40,66,32,40,83,39,32,66,41,41,
+41,32,40,40,66,32,40,66,32,40,66,32,40,83,39,32,66,41,41,41,
+41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,83,39,32,40,
+83,39,32,95,49,51,49,41,41,41,32,40,40,40,83,39,32,66,41,32,
+40,67,39,32,40,95,50,50,51,32,95,51,49,52,41,41,41,32,73,41,
+41,41,32,40,40,40,83,39,32,40,67,39,32,40,83,39,32,95,49,51,
+48,41,41,41,32,40,40,40,83,39,32,66,41,32,40,67,39,32,40,95,
+50,50,52,32,95,57,57,53,41,41,41,32,73,41,41,32,40,40,67,32,
+40,67,39,32,40,95,50,50,51,32,95,57,57,53,41,41,41,32,95,57,
+57,52,41,41,41,41,41,41,41,41,41,41,32,40,40,40,67,39,32,66,
+41,32,40,40,66,32,40,67,39,32,40,83,39,32,40,83,39,32,40,67,
+39,32,66,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,
+66,32,40,66,32,40,83,39,32,66,41,41,41,41,41,41,32,40,40,66,
+32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,
+41,41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,
+66,32,66,39,41,32,40,40,66,32,66,39,41,32,40,40,66,32,40,66,
+32,40,67,39,32,40,83,39,32,67,39,41,41,41,41,32,40,40,40,83,
+39,32,66,41,32,40,40,66,32,40,83,39,32,40,83,39,32,95,49,51,
+48,41,41,41,32,40,40,40,83,39,32,66,41,32,40,67,39,32,40,95,
+53,57,51,32,95,51,49,53,41,41,41,32,73,41,41,41,32,40,40,40,
+67,39,32,66,41,32,40,40,66,32,40,83,39,32,40,67,39,32,95,49,
+51,49,41,41,41,32,40,40,40,83,39,32,66,41,32,40,67,39,32,40,
+95,50,50,51,32,95,51,49,52,41,41,41,32,73,41,41,41,32,40,40,
+67,32,40,67,39,32,40,95,50,50,51,32,95,57,57,53,41,41,41,32,
+95,57,57,50,41,41,41,41,41,41,41,32,40,40,40,67,39,32,40,67,
+39,32,66,41,41,32,66,39,41,32,40,67,32,95,53,48,51,41,41,41,
+41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,67,39,32,67,
+41,41,41,41,32,40,40,66,32,40,40,67,39,32,66,41,32,66,41,41,
+32,67,41,41,41,41,41,32,40,40,66,32,95,49,57,50,41,32,40,40,
+40,67,39,32,80,41,32,40,95,57,55,57,32,95,57,56,50,41,41,32,
+34,97,109,98,105,103,117,111,117,115,32,111,112,101,114,97,116,111,114,32,
+101,120,112,114,101,115,115,105,111,110,34,41,41,41,41,41,32,40,40,40,
+67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,
+67,39,32,40,67,39,32,66,41,41,41,41,41,41,41,32,40,40,40,67,
+39,32,66,41,32,40,66,39,32,40,66,39,32,40,40,66,32,40,67,39,
+32,40,83,39,32,66,41,41,41,32,40,40,40,83,39,32,66,41,32,40,
+67,39,32,40,95,53,57,52,32,95,51,49,53,41,41,41,32,73,41,41,
+41,41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,66,39,
+41,32,40,67,32,95,53,48,51,41,41,41,41,32,40,40,66,32,95,49,
+57,50,41,32,40,40,40,67,39,32,80,41,32,40,95,57,55,57,32,95,
+57,56,50,41,41,32,34,98,97,100,32,112,114,101,102,105,120,32,101,120,
+112,114,101,115,115,105,111,110,34,41,41,41,41,41,41,41,41,32,75,41,
+41,41,41,41,41,32,40,40,40,110,111,77,97,116,99,104,32,34,115,114,
+99,47,77,105,99,114,111,72,115,47,70,105,120,105,116,121,46,104,115,34,
+41,32,35,54,52,41,32,35,55,41,41,41,41,32,95,53,48,50,41,41,
+32,95,53,48,50,41,41,41,41,41,32,40,40,40,67,39,32,66,41,32,
+40,40,66,32,40,83,39,32,95,53,48,52,41,41,32,85,41,41,32,40,
+40,67,39,32,95,52,51,48,41,32,40,40,66,32,85,41,32,40,40,66,
+32,40,67,32,66,41,41,32,40,66,32,40,40,67,39,32,40,67,39,32,
+95,53,48,51,41,41,32,40,95,49,48,53,51,32,95,49,48,53,49,41,
+41,41,41,41,41,41,41,41,32,40,40,80,32,40,75,50,32,40,85,32,
+75,41,41,41,32,40,75,32,95,50,56,41,41,41,41,32,40,89,32,40,
+40,66,32,40,83,32,73,41,41,32,40,40,66,32,40,40,67,39,32,40,
+67,39,32,66,41,41,32,40,40,66,32,40,67,32,40,40,67,32,61,61,
+41,32,35,49,52,41,41,41,32,40,40,40,67,39,32,79,41,32,95,49,
+48,53,52,41,32,75,41,41,41,41,32,40,40,66,32,85,41,32,40,40,
+83,39,32,95,53,48,51,41,32,40,40,40,67,39,32,40,95,49,48,53,
+51,32,95,49,48,53,50,41,41,32,40,40,66,32,95,49,48,53,53,41,
+32,40,95,57,55,57,32,95,57,56,50,41,41,41,32,95,49,48,53,54,
+41,41,41,41,41,41,41,41,32,40,40,67,32,40,40,67,32,67,39,41,
+32,40,40,66,32,40,66,32,90,41,41,32,40,40,40,83,39,32,67,41,
+32,40,40,66,32,40,67,32,83,39,41,41,32,40,40,40,67,39,32,66,
+41,32,40,85,32,95,50,56,41,41,32,40,40,66,32,40,66,32,40,80,
+32,95,50,56,41,41,41,32,40,40,66,32,40,66,32,40,66,32,95,53,
+48,51,41,41,41,32,40,40,66,32,40,67,39,32,95,57,49,56,41,41,
+32,95,57,49,56,41,41,41,41,41,41,32,40,40,40,67,39,32,66,41,
+32,40,85,32,95,50,56,41,41,32,40,40,66,32,40,66,32,95,53,48,
+51,41,41,32,95,57,49,56,41,41,41,41,41,41,32,40,75,32,95,50,
+56,41,41,41,41,32,40,40,80,32,40,75,50,32,40,85,32,65,41,41,
+41,32,40,75,32,95,50,56,41,41,41,41,32,40,40,65,32,58,49,48,
+53,56,32,80,41,32,40,40,65,32,58,49,48,53,57,32,40,40,66,32,
+90,41,32,85,41,41,32,40,40,65,32,58,49,48,54,48,32,40,90,32,
+85,41,41,32,40,40,65,32,58,49,48,54,49,32,40,40,66,32,40,66,
+32,40,95,52,51,49,32,40,40,80,32,40,85,32,40,90,32,40,90,32,
+95,49,48,53,57,41,41,41,41,32,40,40,66,32,95,49,48,54,48,41,
+32,40,95,52,51,48,32,40,85,32,40,90,32,40,90,32,40,40,67,32,
+79,41,32,75,41,41,41,41,41,41,41,41,41,41,32,95,49,48,54,50,
+41,41,32,40,40,65,32,58,49,48,54,50,32,40,40,66,32,40,83,32,
+40,85,32,95,53,48,50,41,41,41,32,40,40,66,32,90,41,32,40,40,
+66,32,90,41,32,40,40,66,32,40,66,32,40,40,40,83,39,32,40,67,
+32,40,40,40,67,39,32,40,83,39,32,95,52,51,49,41,41,32,40,40,
+66,32,40,66,32,40,83,32,73,41,41,41,32,40,40,40,83,39,32,40,
+67,39,32,66,41,41,32,40,40,66,32,40,66,32,40,67,39,32,80,41,
+41,41,32,40,40,40,83,39,32,40,67,39,32,83,41,41,32,40,40,66,
+32,40,40,67,39,32,83,41,32,40,40,66,32,40,83,32,40,95,52,55,
+52,32,40,95,50,50,51,32,95,51,49,52,41,41,41,41,32,95,51,51,
+48,41,41,41,32,40,66,32,95,49,48,53,57,41,41,41,32,40,40,66,
+32,40,66,32,95,49,48,54,48,41,41,32,40,40,67,32,40,67,39,32,
+79,41,41,32,75,41,41,41,41,41,32,40,40,66,32,90,41,32,40,40,
+66,32,90,41,32,40,40,66,32,40,66,32,95,49,48,54,48,41,41,32,
+40,40,40,67,39,32,67,41,32,40,40,66,32,89,41,32,40,40,66,32,
+40,66,32,40,67,32,66,41,41,41,32,40,40,40,67,39,32,66,41,32,
+40,66,39,32,40,40,66,32,40,67,39,32,66,41,41,32,40,66,32,95,
+53,48,51,41,41,41,41,32,95,52,51,51,41,41,41,41,32,95,53,48,
+50,41,41,41,41,41,41,41,32,95,49,48,55,52,41,41,41,32,40,85,
+32,75,41,41,32,40,85,32,65,41,41,41,41,32,95,49,48,54,56,41,
+41,41,41,41,32,40,40,65,32,58,49,48,54,51,32,95,51,50,57,41,
+32,40,40,65,32,58,49,48,54,52,32,40,40,40,83,39,32,95,52,51,
+48,41,32,40,40,66,32,40,40,83,39,32,95,52,51,48,41,32,40,40,
+40,67,39,32,40,67,39,32,79,41,41,32,80,41,32,75,41,41,41,32,
+95,51,51,48,41,41,32,95,49,48,54,51,41,41,32,40,40,65,32,58,
+49,48,54,53,32,40,40,66,32,40,95,52,51,51,32,40,85,32,40,40,
+40,67,39,32,66,41,32,40,95,51,51,49,32,95,53,48,52,41,41,32,
+40,40,67,32,79,41,32,75,41,41,41,41,41,32,40,40,66,32,95,51,
+50,54,41,32,40,40,67,32,95,52,53,48,41,32,40,95,52,56,55,32,
+95,53,48,50,41,41,41,41,41,32,40,40,65,32,58,49,48,54,54,32,
+40,40,40,83,39,32,95,49,48,54,53,41,32,95,49,48,54,51,41,32,
+95,49,48,54,55,41,41,32,40,40,65,32,58,49,48,54,55,32,40,40,
+66,32,40,95,52,51,48,32,40,85,32,40,40,40,67,39,32,40,67,39,
+32,79,41,41,32,40,67,32,80,41,41,32,75,41,41,41,41,32,95,49,
+48,54,52,41,41,32,40,40,65,32,58,49,48,54,56,32,40,40,40,83,
+39,32,83,41,32,40,40,40,67,39,32,40,67,39,32,40,83,39,32,80,
+41,41,41,32,40,40,66,32,40,66,32,40,66,32,95,51,50,54,41,41,
+41,32,40,40,40,67,39,32,40,67,39,32,40,83,39,32,95,52,51,48,
+41,41,41,32,40,40,66,32,40,66,32,40,66,32,85,41,41,41,32,40,
+40,66,32,40,66,32,40,66,32,40,66,32,85,41,41,41,41,32,40,40,
+66,32,40,66,32,40,66,32,90,41,41,41,32,40,40,66,32,40,66,32,
+40,66,32,90,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,
+39,32,40,67,39,32,40,67,39,32,79,41,41,41,41,41,32,40,40,66,
+32,40,66,32,40,66,32,40,40,67,39,32,66,41,32,80,41,41,41,41,
+32,40,40,66,32,40,66,32,40,66,32,95,53,49,57,41,41,41,32,40,
+40,40,67,39,32,66,41,32,40,40,66,32,40,67,39,32,67,41,41,32,
+40,40,40,67,39,32,40,67,39,32,40,67,39,32,89,41,41,41,32,40,
+40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,
+32,67,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,
+32,40,40,83,39,32,83,41,32,40,95,53,57,53,32,95,51,49,53,41,
+41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,
+40,67,39,32,40,83,39,32,83,41,41,41,41,41,32,40,40,40,67,39,
+32,66,41,32,40,40,66,32,40,67,39,32,40,67,39,32,40,67,39,32,
+40,67,39,32,83,41,41,41,41,41,32,40,40,40,83,39,32,40,83,39,
+32,40,83,39,32,66,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
+40,67,39,32,40,83,39,32,83,41,41,41,41,41,32,40,40,40,67,39,
+32,40,67,39,32,66,41,41,32,40,40,66,32,66,39,41,32,40,40,66,
+32,66,39,41,32,40,66,32,67,41,41,41,41,32,40,40,67,32,67,39,
+41,32,40,40,67,32,40,95,53,55,53,32,95,51,49,48,41,41,32,35,
+49,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,
+32,40,67,39,32,40,83,39,32,67,41,41,41,41,41,32,40,40,40,67,
+39,32,40,67,39,32,66,41,41,32,40,40,66,32,66,39,41,32,40,40,
+66,32,66,39,41,32,40,40,66,32,40,66,32,67,41,41,32,67,41,41,
+41,41,32,40,40,67,32,40,67,39,32,66,41,41,32,40,40,67,32,40,
+95,53,55,54,32,95,51,49,48,41,41,32,35,49,41,41,41,41,32,95,
+53,50,50,41,41,41,41,32,40,40,66,32,95,51,51,48,41,32,40,40,
+66,32,95,51,50,54,41,32,40,95,52,51,48,32,40,85,32,40,40,66,
+32,85,41,32,40,90,32,40,40,66,32,90,41,32,40,40,40,67,39,32,
+40,67,39,32,79,41,41,32,80,41,32,75,41,41,41,41,41,41,41,41,
+41,41,32,40,40,40,83,39,32,66,41,32,40,95,53,55,53,32,95,51,
+49,48,41,41,32,40,40,40,67,39,32,40,67,39,32,40,95,51,57,57,
+32,95,51,49,49,41,41,41,32,40,67,32,40,95,53,55,54,32,95,51,
+49,48,41,41,41,32,40,40,95,53,56,49,32,95,51,49,48,41,32,40,
+95,51,57,50,32,35,50,41,41,41,41,41,41,41,32,95,53,50,49,41,
+41,32,35,48,41,41,41,32,40,40,40,67,39,32,40,95,53,55,54,32,
+95,51,49,48,41,41,32,95,52,52,57,41,32,35,49,41,41,41,41,41,
+32,75,41,41,41,41,41,41,32,73,41,41,41,32,40,40,66,32,95,51,
+51,48,41,32,95,51,50,54,41,41,41,32,40,40,66,32,40,66,32,40,
+95,52,53,48,32,40,40,95,50,48,53,32,95,50,49,57,41,32,40,40,
+95,53,56,49,32,95,51,49,48,41,32,40,95,51,57,50,32,35,48,41,
+41,41,41,41,41,32,40,40,66,32,95,52,57,53,41,32,40,40,66,32,
+40,67,32,66,41,41,32,40,40,66,32,90,41,32,40,40,66,32,40,66,
+32,90,41,41,32,40,40,66,32,40,67,32,66,41,41,32,40,40,66,32,
+90,41,32,40,66,32,90,41,41,41,41,41,41,41,41,41,41,32,40,40,
+65,32,58,49,48,54,57,32,40,40,83,32,95,49,48,55,48,41,32,95,
+49,48,54,51,41,41,32,40,40,65,32,58,49,48,55,48,32,40,40,66,
+32,40,66,32,40,95,50,56,50,32,95,54,54,53,41,41,41,32,40,40,
+40,67,39,32,89,41,32,40,40,66,32,40,66,32,40,40,83,39,32,80,
+41,32,40,40,67,32,80,41,32,95,53,48,50,41,41,41,41,32,40,40,
+40,67,39,32,40,83,39,32,40,83,39,32,67,41,41,41,32,40,40,66,
+32,40,66,32,40,40,83,39,32,40,83,39,32,83,39,41,41,32,40,67,
+32,95,51,51,52,41,41,41,41,32,40,40,66,32,40,40,83,39,32,66,
+41,32,40,40,66,32,83,41,32,40,40,66,32,40,40,67,39,32,67,39,
+41,32,40,40,66,32,40,83,39,32,40,40,83,39,32,80,41,32,40,85,
+32,75,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,
+32,40,40,66,32,40,66,32,95,53,48,51,41,41,32,40,40,40,67,39,
+32,66,41,32,95,49,48,53,56,41,32,40,85,32,65,41,41,41,41,32,
+40,85,32,65,41,41,41,41,41,32,40,40,67,32,67,39,41,32,40,85,
+32,75,41,41,41,41,41,41,32,40,40,66,32,40,67,32,40,40,40,67,
+39,32,67,39,41,32,83,39,41,32,40,67,32,95,51,51,53,41,41,41,
+41,32,95,51,51,48,41,41,41,41,32,73,41,41,41,32,95,51,51,51,
+41,41,41,32,40,40,65,32,58,49,48,55,49,32,40,85,32,40,40,66,
+32,40,40,67,39,32,95,50,56,52,41,32,95,49,48,55,50,41,41,32,
+95,53,48,51,41,41,41,32,40,40,65,32,58,49,48,55,50,32,40,40,
+66,32,40,95,50,56,50,32,40,40,95,52,51,51,32,95,50,56,52,41,
+32,95,50,56,53,41,41,41,32,40,95,52,51,49,32,95,49,48,55,49,
+41,41,41,32,40,40,65,32,58,49,48,55,51,32,40,40,40,67,39,32,
+95,49,48,55,50,41,32,95,49,48,54,57,41,32,95,53,48,50,41,41,
+32,40,40,65,32,58,49,48,55,52,32,40,40,83,32,95,49,48,55,48,
+41,32,40,40,66,32,95,52,54,51,41,32,40,40,66,32,95,49,48,55,
+51,41,32,95,49,48,54,54,41,41,41,41,32,40,40,65,32,58,49,48,
+55,53,32,40,40,40,83,39,32,66,41,32,40,66,39,32,115,101,113,41,
+41,32,40,40,66,32,40,40,83,39,32,66,41,32,115,101,113,41,41,32,
+40,40,66,32,40,66,32,40,83,32,115,101,113,41,41,41,32,40,40,66,
+32,40,66,32,67,41,41,32,80,41,41,41,41,41,32,40,40,65,32,58,
+49,48,55,54,32,40,40,40,95,49,56,52,48,32,40,95,49,56,52,52,
+32,95,49,48,55,54,41,41,32,40,85,32,40,40,40,67,39,32,66,41,
+32,40,66,39,32,40,40,66,32,95,53,48,52,41,32,40,95,49,56,52,
+50,32,40,95,52,50,52,32,95,49,53,57,41,41,41,41,41,32,40,40,
+66,32,40,66,32,40,95,53,48,52,32,40,40,79,32,35,52,52,41,32,
+75,41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,95,
+53,48,52,41,32,40,95,49,56,52,50,32,95,51,49,54,41,41,41,32,
+40,40,66,32,40,95,53,48,52,32,40,40,79,32,35,53,56,41,32,75,
+41,41,41,32,40,95,49,56,52,50,32,95,51,49,54,41,41,41,41,41,
+41,41,32,40,95,49,56,52,54,32,95,49,48,55,54,41,41,41,32,40,
+40,65,32,58,49,48,55,55,32,40,40,40,83,39,32,66,41,32,115,101,
+113,41,32,80,41,41,32,40,40,65,32,58,49,48,55,56,32,40,40,95,
+50,50,50,32,40,40,67,32,66,41,32,40,90,32,40,40,67,32,66,41,
+32,40,90,32,40,95,50,50,51,32,95,49,52,51,41,41,41,41,41,41,
+32,40,95,50,50,54,32,95,49,48,55,56,41,41,41,32,40,40,65,32,
+58,49,48,55,57,32,40,40,40,40,40,40,40,40,95,53,57,48,32,95,
+49,48,55,56,41,32,40,40,67,32,66,41,32,40,90,32,40,40,67,32,
+66,41,32,40,90,32,40,95,53,57,50,32,95,49,52,52,41,41,41,41,
+41,41,32,40,40,67,32,66,41,32,40,90,32,40,40,67,32,66,41,32,
+40,90,32,40,95,53,57,51,32,95,49,52,52,41,41,41,41,41,41,32,
+40,40,67,32,66,41,32,40,90,32,40,40,67,32,66,41,32,40,90,32,
+40,95,53,57,52,32,95,49,52,52,41,41,41,41,41,41,32,40,40,67,
+32,66,41,32,40,90,32,40,40,67,32,66,41,32,40,90,32,40,95,53,
+57,53,32,95,49,52,52,41,41,41,41,41,41,32,40,40,67,32,66,41,
+32,40,90,32,40,40,67,32,66,41,32,40,90,32,40,95,53,57,54,32,
+95,49,52,52,41,41,41,41,41,41,32,40,95,54,48,52,32,95,49,48,
+55,57,41,41,32,40,95,54,48,53,32,95,49,48,55,57,41,41,41,32,
+40,40,65,32,58,49,48,56,48,32,40,40,40,95,49,56,52,48,32,40,
+95,49,56,52,52,32,95,49,48,56,48,41,41,32,95,49,48,56,56,41,
+32,40,95,49,56,52,54,32,95,49,48,56,48,41,41,41,32,40,40,65,
+32,58,49,48,56,49,32,40,40,40,95,49,48,55,53,32,75,41,32,35,
+48,41,32,35,48,41,41,32,40,40,65,32,58,49,48,56,50,32,40,85,
+32,40,75,32,40,40,40,67,39,32,66,41,32,40,40,67,32,40,40,95,
+50,50,51,32,95,51,49,52,41,32,40,40,95,53,56,49,32,95,51,49,
+48,41,32,40,95,51,57,50,32,35,48,41,41,41,41,32,95,49,51,52,
+41,41,32,40,40,67,32,40,40,67,32,40,40,95,50,50,51,32,95,51,
+49,52,41,32,40,40,95,53,56,49,32,95,51,49,48,41,32,40,95,51,
+57,50,32,35,48,41,41,41,41,32,95,49,51,52,41,41,32,95,49,51,
+53,41,41,41,41,41,32,40,40,65,32,58,49,48,56,51,32,40,95,49,
+48,55,55,32,95,49,48,56,49,41,41,32,40,40,65,32,58,49,48,56,
+52,32,95,49,48,55,55,41,32,40,40,65,32,58,49,48,56,53,32,40,
+40,66,32,40,67,32,66,41,41,32,40,40,66,32,40,67,39,32,40,67,
+39,32,95,49,48,55,55,41,41,41,32,95,49,48,55,53,41,41,41,32,
+40,40,65,32,58,49,48,56,54,32,40,85,32,65,41,41,32,40,40,65,
+32,58,49,48,56,55,32,40,40,66,32,85,41,32,40,90,32,95,49,48,
+55,55,41,41,41,32,40,40,65,32,58,49,48,56,56,32,40,85,32,65,
+41,41,32,40,40,65,32,58,49,48,56,57,32,40,85,32,40,75,32,95,
+49,55,56,55,41,41,41,32,40,40,65,32,58,49,48,57,48,32,40,40,
+66,32,85,41,32,40,90,32,40,95,50,50,51,32,95,49,52,51,41,41,
+41,41,32,40,40,65,32,58,49,48,57,49,32,40,75,32,40,40,67,32,
+66,41,32,40,90,32,40,40,67,32,66,41,32,40,40,66,32,40,40,67,
+39,32,66,41,32,95,49,48,55,55,41,41,32,40,40,40,67,39,32,66,
+41,32,95,53,48,52,41,32,40,95,53,48,52,32,40,40,79,32,35,52,
+54,41,32,75,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,49,
+48,57,50,32,40,40,67,32,66,41,32,40,40,66,32,40,40,67,39,32,
+66,41,32,95,49,48,55,55,41,41,32,40,67,32,95,53,48,52,41,41,
+41,41,32,40,40,65,32,58,49,48,57,51,32,40,75,32,40,89,32,40,
+40,66,32,40,83,32,40,85,32,75,41,41,41,32,40,40,66,32,40,66,
+32,90,41,41,32,40,40,66,32,40,40,83,39,32,67,41,32,40,67,32,
+95,49,48,57,55,41,41,41,32,40,40,40,67,39,32,83,41,32,40,40,
+66,32,67,41,32,40,40,66,32,40,83,32,40,40,95,50,50,51,32,95,
+49,52,51,41,32,75,41,41,41,32,40,40,66,32,40,80,32,95,50,56,
+41,41,32,40,40,67,39,32,66,41,32,40,40,67,32,40,40,95,50,50,
+51,32,95,49,52,49,41,32,35,52,54,41,41,32,95,50,56,41,41,41,
+41,41,41,32,40,95,52,54,53,32,40,40,67,32,40,95,50,50,52,32,
+95,49,52,49,41,41,32,35,52,54,41,41,41,41,41,41,41,41,41,32,
+40,40,65,32,58,49,48,57,52,32,40,85,32,40,40,40,67,39,32,66,
+41,32,95,49,48,55,55,41,32,40,95,49,48,57,51,32,95,55,54,48,
+41,41,41,41,32,40,40,65,32,58,49,48,57,53,32,40,85,32,40,75,
+32,40,40,40,83,39,32,40,40,83,39,32,95,49,51,48,41,32,95,49,
+52,57,41,41,32,40,40,66,32,40,40,83,39,32,95,49,51,48,41,32,
+40,40,67,32,40,95,50,50,51,32,95,49,52,49,41,41,32,35,53,56,
+41,41,41,32,40,40,66,32,40,40,67,39,32,95,49,51,48,41,32,40,
+40,67,32,40,95,50,50,51,32,95,49,52,49,41,41,32,35,52,52,41,
+41,41,32,40,40,40,83,39,32,95,49,51,48,41,32,40,40,67,32,40,
+95,50,50,51,32,95,49,52,51,41,41,32,34,91,93,34,41,41,32,40,
+40,67,32,40,95,50,50,51,32,95,49,52,51,41,41,32,34,40,41,34,
+41,41,41,41,41,32,95,52,54,56,41,41,41,41,32,40,40,65,32,58,
+49,48,57,54,32,40,40,67,32,40,95,52,55,50,32,95,49,52,49,41,
+41,32,34,64,92,57,50,38,61,43,45,58,60,62,46,33,35,36,37,94,
+38,42,47,124,126,63,34,41,41,32,40,40,65,32,58,49,48,57,55,32,
+40,40,40,83,39,32,95,49,51,48,41,32,95,49,48,57,56,41,32,40,
+40,40,83,39,32,95,49,51,48,41,32,95,49,52,57,41,32,40,40,40,
+83,39,32,95,49,51,48,41,32,95,49,53,49,41,32,40,40,67,32,40,
+95,50,50,51,32,95,49,52,49,41,41,32,35,51,57,41,41,41,41,41,
+32,40,40,65,32,58,49,48,57,56,32,40,40,40,83,39,32,95,49,51,
+48,41,32,95,49,52,56,41,32,40,40,67,32,40,95,50,50,51,32,95,
+49,52,49,41,41,32,35,57,53,41,41,41,32,40,40,65,32,58,49,48,
+57,57,32,40,95,49,48,56,51,32,40,40,79,32,35,57,53,41,32,75,
+41,41,41,32,40,40,65,32,58,49,49,48,48,32,40,85,32,40,75,32,
+40,40,67,32,40,40,67,32,40,40,95,50,50,51,32,95,49,52,51,41,
+32,40,40,79,32,35,57,53,41,32,75,41,41,41,32,95,49,51,52,41,
+41,32,95,49,51,53,41,41,41,41,32,40,40,65,32,58,49,49,48,49,
+32,40,85,32,40,40,67,32,40,40,40,83,39,32,67,39,41,32,40,40,
+66,32,67,39,41,32,95,52,50,56,41,41,32,40,40,40,67,39,32,66,
+41,32,40,66,39,32,40,40,66,32,95,53,48,52,41,32,40,95,49,56,
+52,50,32,40,95,52,50,52,32,95,49,53,57,41,41,41,41,41,32,40,
+40,40,67,39,32,67,41,32,40,40,83,32,40,40,40,67,39,32,83,39,
+41,32,40,40,66,32,95,49,51,49,41,32,40,40,67,32,40,95,50,50,
+51,32,95,51,49,52,41,41,32,35,48,41,41,41,32,40,40,67,32,40,
+95,50,50,51,32,95,51,49,52,41,41,32,35,48,41,41,41,32,40,40,
+66,32,40,66,32,40,95,53,48,52,32,34,58,32,108,105,110,101,32,34,
+41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,95,53,48,
+52,41,32,40,95,49,56,52,50,32,95,51,49,54,41,41,41,32,40,40,
+66,32,40,95,53,48,52,32,34,44,32,99,111,108,32,34,41,41,32,40,
+95,49,56,52,50,32,95,51,49,54,41,41,41,41,41,41,32,75,41,41,
+41,41,32,34,110,111,32,108,111,99,97,116,105,111,110,34,41,41,41,32,
+40,40,65,32,58,49,49,48,50,32,40,90,32,75,41,41,32,40,40,65,
+32,58,49,49,48,51,32,40,40,66,32,90,41,32,40,40,66,32,40,66,
+32,90,41,41,32,80,41,41,41,32,40,40,65,32,58,49,49,48,52,32,
+40,40,66,32,40,66,32,40,66,32,40,66,32,90,41,41,41,41,32,40,
+40,66,32,40,66,32,40,66,32,40,66,32,90,41,41,41,41,32,40,40,
+66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,32,40,40,66,
+32,40,66,32,40,66,32,67,41,41,41,32,40,40,66,32,40,66,32,67,
+41,41,32,80,41,41,41,41,41,41,32,40,40,65,32,58,49,49,48,53,
+32,95,49,49,48,50,41,32,40,40,65,32,58,49,49,48,54,32,95,49,
+49,48,51,41,32,40,40,65,32,58,49,49,48,55,32,40,40,95,50,56,
+52,32,40,95,52,51,49,32,95,54,54,53,41,41,32,95,49,49,48,57,
+41,41,32,40,40,65,32,58,49,49,48,56,32,40,40,95,50,56,52,32,
+40,95,52,51,49,32,95,54,54,52,41,41,32,95,49,49,48,57,41,41,
+32,40,40,65,32,58,49,49,48,57,32,40,40,67,32,40,89,32,40,40,
+66,32,40,40,67,39,32,83,41,32,40,40,67,32,83,41,32,40,40,67,
+39,32,40,67,39,32,95,53,48,51,41,41,32,80,41,41,41,41,32,40,
+40,66,32,40,66,32,90,41,41,32,40,40,40,83,39,32,66,41,32,40,
+40,66,32,40,67,39,32,66,41,41,32,40,40,66,32,66,39,41,32,66,
+39,41,41,41,32,40,40,66,32,40,66,32,40,40,67,39,32,40,67,39,
+32,66,41,41,32,40,40,66,32,40,66,32,95,53,48,51,41,41,32,80,
+41,41,41,41,32,67,41,41,41,41,41,41,32,95,53,48,50,41,41,32,
+40,40,65,32,58,49,49,49,48,32,40,95,49,49,49,49,32,95,50,56,
+54,41,41,32,40,40,65,32,58,49,49,49,49,32,40,40,40,67,39,32,
+95,52,51,51,41,32,40,40,66,32,95,50,56,57,41,32,95,49,49,49,
+54,41,41,32,95,49,49,48,53,41,41,32,40,40,65,32,58,49,49,49,
+50,32,40,40,67,32,40,40,80,32,35,48,41,32,40,75,50,32,35,49,
+41,41,41,32,40,75,32,40,90,32,40,90,32,75,41,41,41,41,41,32,
+40,40,65,32,58,49,49,49,51,32,40,40,40,83,39,32,40,83,39,32,
+40,83,39,32,83,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,
+67,39,32,40,67,39,32,83,41,41,41,41,32,40,40,67,32,40,40,40,
+67,39,32,67,39,41,32,40,40,66,32,67,39,41,32,40,40,66,32,67,
+39,41,32,83,39,41,41,41,32,40,40,40,67,39,32,40,67,39,32,67,
+41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,83,39,41,
+41,41,32,40,40,66,32,40,66,32,85,41,41,32,95,49,49,48,51,41,
+41,32,40,90,32,75,41,41,41,32,40,90,32,40,90,32,40,90,32,40,
+90,32,75,41,41,41,41,41,41,41,32,40,90,32,75,41,41,41,32,40,
+90,32,40,90,32,40,90,32,40,90,32,75,41,41,41,41,41,41,32,40,
+40,40,67,39,32,40,67,39,32,40,67,39,32,83,41,41,41,32,40,40,
+66,32,40,66,32,67,41,41,32,40,40,40,83,39,32,67,39,41,32,95,
+49,49,48,52,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,
+95,53,55,53,32,95,51,49,48,41,41,32,40,40,40,67,39,32,40,95,
+53,55,53,32,95,51,49,48,41,41,32,95,49,49,49,50,41,32,35,49,
+41,41,41,32,95,49,49,49,50,41,41,41,41,32,73,41,41,41,32,40,
+40,65,32,58,49,49,49,52,32,40,40,66,32,89,41,32,40,40,40,83,
+39,32,66,41,32,40,40,66,32,67,41,32,40,40,66,32,40,80,32,95,
+53,50,49,41,41,32,40,40,40,67,39,32,67,41,32,40,40,40,67,39,
+32,40,67,39,32,67,39,41,41,32,40,40,40,67,39,32,67,41,32,40,
+95,53,57,50,32,95,49,48,55,57,41,41,32,95,53,50,49,41,41,32,
+95,53,50,50,41,41,32,95,53,50,49,41,41,41,41,32,40,40,66,32,
+40,66,32,90,41,41,32,40,40,40,67,39,32,40,83,39,32,40,67,39,
+32,40,67,39,32,40,67,39,32,66,41,41,41,41,41,32,40,40,40,67,
+39,32,40,67,39,32,40,67,39,32,40,67,39,32,66,41,41,41,41,32,
+40,66,39,32,40,40,66,32,67,41,32,40,95,53,57,50,32,95,49,48,
+55,57,41,41,41,41,32,95,53,50,50,41,41,32,73,41,41,41,41,41,
+32,40,40,65,32,58,49,49,49,53,32,40,95,49,49,49,54,32,95,50,
+56,54,41,41,32,40,40,65,32,58,49,49,49,54,32,40,40,66,32,40,
+66,32,40,66,32,89,41,41,41,32,40,40,66,32,40,40,83,39,32,40,
+83,39,32,40,83,39,32,67,41,41,41,32,40,40,40,67,39,32,40,67,
+39,32,66,41,41,32,40,40,66,32,40,66,32,80,41,41,32,95,49,49,
+48,51,41,41,32,40,40,40,67,39,32,66,41,32,66,41,32,40,40,40,
+67,39,32,67,41,32,40,40,95,49,49,48,52,32,95,49,49,48,50,41,
+32,35,49,41,41,32,95,49,49,48,50,41,41,41,41,41,32,40,40,66,
+32,40,66,32,40,66,32,40,66,32,90,41,41,41,41,32,40,40,40,67,
+39,32,40,67,39,32,40,67,39,32,40,83,39,32,40,83,39,32,40,83,
+39,32,40,83,39,32,83,41,41,41,41,41,41,41,32,40,40,66,32,40,
+40,83,39,32,66,41,32,40,40,66,32,40,67,39,32,40,83,39,32,67,
+41,41,41,32,40,40,40,67,39,32,66,41,32,40,66,39,32,40,40,66,
+32,40,83,39,32,83,39,41,41,32,40,40,66,32,40,66,32,83,39,41,
+41,32,40,95,53,57,50,32,95,49,48,55,57,41,41,41,41,41,32,40,
+66,32,95,49,49,50,51,41,41,41,41,41,32,40,40,67,39,32,66,41,
+32,40,40,66,32,40,67,39,32,66,41,41,32,40,67,32,95,49,49,49,
+51,41,41,41,41,41,32,40,40,67,39,32,40,67,39,32,40,67,39,32,
+66,41,41,41,32,95,49,49,50,51,41,41,41,41,41,41,32,40,40,65,
+32,58,49,49,49,55,32,40,40,66,32,89,41,32,40,40,40,83,39,32,
+66,41,32,40,40,66,32,67,41,32,40,40,66,32,40,83,32,40,85,32,
+95,49,49,48,50,41,41,41,32,40,40,66,32,40,66,32,90,41,41,32,
+40,40,40,67,39,32,40,67,39,32,67,41,41,32,40,40,66,32,67,41,
+32,40,40,40,67,39,32,40,67,39,32,40,95,50,50,51,32,95,54,48,
+54,41,41,41,32,40,95,53,57,50,32,95,49,48,55,57,41,41,32,95,
+54,49,49,41,41,41,32,95,49,49,48,50,41,41,41,41,41,32,40,40,
+66,32,40,66,32,90,41,41,32,40,40,40,67,39,32,40,83,39,32,40,
+83,39,32,40,83,39,32,40,83,39,32,83,41,41,41,41,41,32,40,40,
+40,67,39,32,40,67,39,32,40,83,39,32,67,41,41,41,32,40,40,40,
+67,39,32,66,41,32,40,66,39,32,40,40,66,32,40,83,39,32,67,39,
+41,41,32,40,40,66,32,40,66,32,83,39,41,41,32,40,95,53,57,50,
+32,95,49,48,55,57,41,41,41,41,41,32,40,66,32,95,49,49,50,51,
+41,41,41,32,40,40,40,83,39,32,83,41,32,40,40,40,67,39,32,67,
+41,32,40,40,67,32,40,67,39,32,83,39,41,41,32,40,90,32,75,41,
+41,41,32,40,90,32,40,90,32,40,90,32,40,90,32,75,41,41,41,41,
+41,41,32,40,40,40,83,39,32,83,41,32,40,40,40,67,39,32,67,41,
+32,40,40,40,67,39,32,40,67,39,32,83,39,41,41,32,85,41,32,40,
+90,32,75,41,41,41,32,40,90,32,40,90,32,40,90,32,40,90,32,75,
+41,41,41,41,41,41,32,40,40,40,83,39,32,83,41,32,40,40,83,32,
+40,40,40,67,39,32,83,39,41,32,40,40,66,32,40,95,53,57,53,32,
+95,51,49,53,41,41,32,95,49,49,49,50,41,41,32,95,49,49,49,50,
+41,41,32,40,40,40,67,39,32,66,41,32,40,40,40,67,39,32,83,41,
+32,40,40,67,32,40,40,40,67,39,32,83,39,41,32,95,49,49,49,51,
+41,32,40,85,32,40,90,32,75,41,41,41,41,32,40,85,32,40,75,32,
+75,41,41,41,41,32,40,85,32,40,75,32,65,41,41,41,41,32,95,49,
+49,49,56,41,41,41,32,40,40,66,32,40,67,32,40,67,32,40,40,83,
+32,40,40,40,83,39,32,95,49,49,49,51,41,32,40,85,32,40,75,32,
+65,41,41,41,32,40,85,32,40,90,32,75,41,41,41,41,32,40,85,32,
+40,75,32,75,41,41,41,41,41,41,32,95,49,49,49,57,41,41,41,41,
+41,41,32,40,40,67,39,32,40,67,39,32,40,67,39,32,66,41,41,41,
+32,95,49,49,50,51,41,41,41,41,41,41,32,40,40,65,32,58,49,49,
+49,56,32,40,40,67,32,40,40,80,32,95,50,56,41,32,40,40,40,67,
+39,32,40,67,39,32,67,41,41,32,80,41,32,95,49,49,48,50,41,41,
+41,32,40,90,32,40,40,40,83,39,32,40,83,39,32,40,83,39,32,83,
+41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,67,41,
+41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,
+32,83,39,41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,66,39,
+32,66,41,41,32,40,40,66,32,40,66,32,67,41,41,32,80,41,41,41,
+32,40,90,32,75,41,41,41,32,40,90,32,40,90,32,40,90,32,40,90,
+32,75,41,41,41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,66,
+39,32,40,66,39,32,95,49,49,49,56,41,41,41,32,40,40,66,32,40,
+66,32,40,66,32,40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,
+66,32,40,66,32,67,41,41,32,80,41,41,41,41,41,32,40,40,66,32,
+40,66,32,67,41,41,32,40,40,66,32,67,41,32,40,67,32,95,49,49,
+50,51,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,49,49,49,
+57,32,40,40,67,32,40,40,80,32,95,50,56,41,32,40,40,40,67,39,
+32,40,67,39,32,67,41,41,32,80,41,32,95,49,49,48,50,41,41,41,
+32,40,90,32,40,40,40,83,39,32,40,83,39,32,40,83,39,32,83,41,
+41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,
+41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,
+83,39,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,85,41,41,
+41,32,40,40,67,39,32,40,67,39,32,67,41,41,32,80,41,41,41,32,
+40,90,32,75,41,41,41,32,40,90,32,40,90,32,40,90,32,40,90,32,
+75,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,67,
+32,95,49,49,49,57,41,41,41,41,32,40,40,66,32,40,66,32,40,66,
+32,40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,
+32,67,41,41,32,80,41,41,41,41,41,32,95,49,49,50,51,41,41,41,
+41,41,41,32,40,40,65,32,58,49,49,50,48,32,35,51,41,32,40,40,
+65,32,58,49,49,50,49,32,35,50,41,32,40,40,65,32,58,49,49,50,
+50,32,35,48,41,32,40,40,65,32,58,49,49,50,51,32,40,40,66,32,
+89,41,32,40,40,40,83,39,32,40,67,39,32,40,83,39,32,40,83,39,
+32,83,41,41,41,41,32,40,40,40,83,39,32,66,41,32,40,66,39,32,
+40,66,39,32,40,40,66,32,83,41,32,40,40,40,67,39,32,40,67,39,
+32,40,95,53,57,52,32,95,51,49,53,41,41,41,32,40,40,40,67,39,
+32,66,41,32,40,40,66,32,40,95,53,55,53,32,95,51,49,48,41,41,
+32,95,49,49,49,50,41,41,32,95,49,49,49,50,41,41,32,35,49,41,
+41,41,41,41,32,40,40,40,83,39,32,66,41,32,40,40,66,32,40,83,
+39,32,40,83,39,32,83,41,41,41,32,40,40,40,67,39,32,40,67,39,
+32,40,67,39,32,40,67,39,32,83,41,41,41,41,32,40,40,40,67,39,
+32,66,41,32,40,66,39,32,40,66,39,32,67,41,41,41,32,40,40,66,
+32,40,66,32,40,67,39,32,67,41,41,41,32,40,40,66,32,40,67,39,
+32,67,41,41,32,40,40,67,39,32,40,67,39,32,95,49,49,50,51,41,
+41,32,40,40,40,67,39,32,67,41,32,40,40,95,49,49,48,52,32,95,
+49,49,48,50,41,32,35,49,41,41,32,95,49,49,48,50,41,41,41,41,
+41,41,32,40,90,32,40,90,32,40,90,32,40,90,32,75,41,41,41,41,
+41,41,41,32,40,40,66,32,40,40,67,39,32,40,83,39,32,40,83,39,
+32,83,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,
+40,67,39,32,83,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
+82,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,66,
+41,41,41,32,40,66,32,66,39,41,41,32,40,40,40,67,39,32,67,41,
+32,40,40,95,49,49,48,52,32,95,49,49,48,50,41,32,35,49,41,41,
+32,95,49,49,48,50,41,41,41,41,32,40,90,32,40,90,32,40,90,32,
+40,90,32,75,41,41,41,41,41,41,41,32,40,40,40,83,39,32,40,83,
+39,32,40,83,39,32,83,41,41,41,32,40,40,40,83,39,32,66,41,32,
+40,66,39,32,40,40,66,32,83,41,32,40,40,66,32,40,40,67,39,32,
+40,95,53,57,53,32,95,51,49,53,41,41,32,95,49,49,49,50,41,41,
+32,40,40,40,67,39,32,40,95,53,55,53,32,95,51,49,48,41,41,32,
+40,40,66,32,40,40,95,53,55,55,32,95,51,49,48,41,32,95,49,49,
+50,48,41,41,32,95,49,49,49,50,41,41,32,95,49,49,50,50,41,41,
+41,41,41,32,40,40,40,83,39,32,40,83,39,32,40,83,39,32,83,41,
+41,41,32,40,40,40,83,39,32,66,41,32,40,66,39,32,40,40,40,67,
+39,32,83,39,41,32,40,40,66,32,40,95,53,57,53,32,95,51,49,53,
+41,41,32,95,49,49,49,50,41,41,32,40,40,40,67,39,32,40,95,53,
+55,53,32,95,51,49,48,41,41,32,40,40,66,32,40,40,95,53,55,55,
+32,95,51,49,48,41,32,95,49,49,50,48,41,41,32,95,49,49,49,50,
+41,41,32,95,49,49,50,50,41,41,41,41,32,95,49,49,49,51,41,41,
+32,40,40,40,83,39,32,66,41,32,40,66,39,32,40,66,39,32,40,40,
+80,32,95,50,56,41,32,40,75,50,32,95,50,56,41,41,41,41,41,32,
+40,40,66,32,40,66,32,40,66,32,40,66,32,90,41,41,41,41,32,40,
+40,66,32,40,66,32,40,66,32,40,66,32,90,41,41,41,41,32,40,40,
+66,32,40,66,32,40,66,32,40,66,32,90,41,41,41,41,32,40,40,40,
+83,39,32,40,83,39,32,40,83,39,32,40,83,39,32,40,67,39,32,67,
+41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,
+40,67,39,32,67,41,32,40,40,66,32,40,40,67,39,32,40,95,53,57,
+51,32,95,51,49,53,41,41,32,95,49,49,49,50,41,41,32,40,40,66,
+32,40,40,95,53,55,55,32,95,51,49,48,41,32,95,49,49,50,49,41,
+41,32,95,49,49,49,50,41,41,41,41,41,41,41,32,95,49,49,50,55,
+41,41,32,95,49,49,50,53,41,41,41,41,41,41,41,41,32,40,40,66,
+32,40,66,32,40,66,32,40,83,32,40,40,80,32,95,50,56,41,32,40,
+75,50,32,95,50,56,41,41,41,41,41,41,32,40,40,66,32,40,66,32,
+40,66,32,40,66,32,90,41,41,41,41,32,40,40,66,32,40,66,32,40,
+66,32,40,66,32,90,41,41,41,41,32,40,40,66,32,40,66,32,40,66,
+32,40,66,32,90,41,41,41,41,32,40,40,40,83,39,32,40,83,39,32,
+40,83,39,32,40,83,39,32,40,67,39,32,67,41,41,41,41,41,32,40,
+40,66,32,40,66,32,40,66,32,40,66,32,40,67,32,40,40,40,67,39,
+32,67,39,41,32,40,40,66,32,40,95,53,57,51,32,95,51,49,53,41,
+41,32,95,49,49,49,50,41,41,32,40,40,66,32,40,40,95,53,55,55,
+32,95,51,49,48,41,32,95,49,49,50,49,41,41,32,95,49,49,49,50,
+41,41,41,41,41,41,41,32,95,49,49,50,54,41,41,32,95,49,49,50,
+52,41,41,41,41,41,41,41,41,41,41,32,95,49,49,49,51,41,41,41,
+32,40,40,65,32,58,49,49,50,52,32,40,40,66,32,40,66,32,40,66,
+32,40,67,32,40,40,80,32,95,50,56,41,32,40,75,50,32,95,50,56,
+41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,90,41,41,
+41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,95,49,49,49,51,
+41,41,41,41,32,95,49,49,49,51,41,41,41,41,32,40,40,65,32,58,
+49,49,50,53,32,40,40,40,67,39,32,66,41,32,40,66,39,32,40,66,
+39,32,40,40,80,32,95,50,56,41,32,40,75,50,32,95,50,56,41,41,
+41,41,41,32,40,40,66,32,40,66,32,40,66,32,90,41,41,41,32,40,
+40,66,32,40,66,32,40,66,32,40,40,67,39,32,40,67,39,32,40,67,
+39,32,66,41,41,41,32,95,49,49,49,51,41,41,41,41,32,40,40,66,
+32,40,66,32,67,41,41,32,40,40,66,32,67,41,32,40,67,32,95,49,
+49,49,51,41,41,41,41,41,41,41,32,40,40,65,32,58,49,49,50,54,
+32,40,40,66,32,40,66,32,40,66,32,40,67,32,40,40,80,32,95,50,
+56,41,32,40,75,50,32,95,50,56,41,41,41,41,41,41,32,40,40,66,
+32,40,66,32,40,66,32,90,41,41,41,32,40,40,40,83,39,32,40,83,
+39,32,40,83,39,32,67,41,41,41,32,40,40,66,32,40,66,32,40,66,
+32,40,40,67,39,32,83,39,41,32,40,40,66,32,83,39,41,32,40,40,
+66,32,83,39,41,32,40,85,32,95,50,56,41,41,41,41,41,41,41,32,
+40,40,40,67,39,32,40,67,39,32,40,67,39,32,66,41,41,41,32,40,
+40,66,32,40,66,32,66,39,41,41,32,40,40,66,32,40,66,32,66,39,
+41,41,32,40,40,66,32,40,66,32,40,66,32,40,67,39,32,67,41,41,
+41,41,32,40,40,66,32,40,66,32,40,66,32,95,49,49,49,51,41,41,
+41,32,40,40,40,67,39,32,40,67,39,32,67,41,41,32,95,49,49,49,
+51,41,32,95,49,49,48,50,41,41,41,41,41,41,32,40,95,49,49,49,
+51,32,95,49,49,48,50,41,41,41,41,32,40,40,66,32,40,66,32,40,
+66,32,40,66,32,40,66,32,40,66,32,90,41,41,41,41,41,41,32,40,
+40,40,67,39,32,40,67,39,32,40,67,39,32,66,41,41,41,32,40,40,
+66,32,40,66,32,66,39,41,41,32,40,40,66,32,40,66,32,66,39,41,
+41,32,40,40,66,32,40,66,32,40,66,32,40,67,39,32,40,67,39,32,
+40,67,39,32,66,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,
+66,32,40,66,32,95,49,49,49,51,41,41,41,41,32,95,49,49,49,51,
+41,41,41,41,41,32,40,40,66,32,40,66,32,67,41,41,32,40,40,66,
+32,67,41,32,40,67,32,95,49,49,49,51,41,41,41,41,41,41,41,41,
+41,32,40,40,65,32,58,49,49,50,55,32,40,40,40,67,39,32,66,41,
+32,40,66,39,32,40,66,39,32,40,40,80,32,95,50,56,41,32,40,75,
+50,32,95,50,56,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,
+32,90,41,41,41,32,40,40,40,83,39,32,40,83,39,32,40,83,39,32,
+40,83,39,32,40,83,39,32,40,83,39,32,67,41,41,41,41,41,41,32,
+40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
+80,32,95,50,56,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,
+40,66,32,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,
+67,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,95,49,49,49,
+51,41,41,41,32,40,40,40,67,39,32,40,67,39,32,67,41,41,32,95,
+49,49,49,51,41,32,95,49,49,48,50,41,41,41,41,41,41,32,40,95,
+49,49,49,51,32,95,49,49,48,50,41,41,41,41,32,40,40,66,32,40,
+66,32,40,66,32,40,66,32,40,66,32,40,66,32,90,41,41,41,41,41,
+41,32,40,40,66,32,40,66,32,40,66,32,40,40,67,39,32,40,67,39,
+32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,66,41,41,
+41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,95,49,
+49,49,51,41,41,41,41,32,95,49,49,49,51,41,41,41,41,41,32,40,
+40,66,32,40,66,32,67,41,41,32,40,40,66,32,67,41,32,40,67,32,
+95,49,49,49,51,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,
+49,49,50,56,32,40,85,32,40,40,66,32,40,66,32,40,66,32,90,41,
+41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
+40,95,51,54,32,95,49,54,57,55,41,32,40,95,49,55,49,55,32,34,
+87,101,108,99,111,109,101,32,116,111,32,105,110,116,101,114,97,99,116,105,
+118,101,32,77,105,99,114,111,72,115,33,34,41,41,41,41,41,41,41,32,
+40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,40,40,83,
+39,32,40,95,51,53,32,95,49,54,57,55,41,41,32,95,56,48,48,41,
+32,40,40,40,67,39,32,40,67,39,32,40,95,51,53,32,95,49,54,57,
+55,41,41,41,32,40,40,66,32,40,66,32,40,95,49,50,55,57,32,95,
+49,49,51,48,41,41,41,32,40,40,66,32,67,41,32,40,80,32,95,49,
+49,50,57,41,41,41,41,32,40,75,32,40,40,95,51,55,32,95,49,54,
+57,55,41,32,95,49,53,54,56,41,41,41,41,41,41,41,41,41,32,40,
+40,40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,41,32,95,55,
+57,50,41,32,95,49,51,53,41,41,41,41,41,41,32,40,40,65,32,58,
+49,49,50,57,32,40,40,95,53,48,52,32,34,109,111,100,117,108,101,32,
+34,41,32,40,40,95,53,48,52,32,95,49,49,51,55,41,32,40,40,95,
+53,48,52,32,34,40,109,111,100,117,108,101,32,34,41,32,40,40,95,53,
+48,52,32,95,49,49,51,55,41,32,34,41,32,119,104,101,114,101,92,49,
+48,38,105,109,112,111,114,116,32,80,114,101,108,117,100,101,92,49,48,38,
+100,101,102,97,117,108,116,32,40,73,110,116,101,103,101,114,44,32,68,111,
+117,98,108,101,41,92,49,48,38,34,41,41,41,41,41,32,40,40,65,32,
+58,49,49,51,48,32,40,40,40,95,51,54,32,95,49,50,56,51,41,32,
+95,49,49,51,52,41,32,40,40,40,95,51,54,32,95,49,50,56,51,41,
+32,40,40,95,50,56,50,32,95,49,50,56,57,41,32,40,95,49,55,49,
+55,32,34,84,121,112,101,32,39,58,113,117,105,116,39,32,116,111,32,113,
+117,105,116,44,32,39,58,104,101,108,112,39,32,102,111,114,32,104,101,108,
+112,34,41,41,41,32,95,49,49,51,49,41,41,41,32,40,40,65,32,58,
+49,49,51,49,32,40,40,40,95,51,53,32,95,49,50,56,51,41,32,40,
+40,95,50,56,50,32,95,49,50,56,57,41,32,40,40,95,49,54,54,52,
+32,34,46,109,104,115,105,34,41,32,34,62,32,34,41,41,41,32,40,40,
+80,32,95,49,49,51,49,41,32,40,40,83,32,40,85,32,95,49,49,51,
+49,41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,
+66,32,40,67,32,40,40,95,50,50,51,32,95,49,52,49,41,32,35,53,
+56,41,41,41,32,40,40,40,67,39,32,40,95,51,54,32,95,49,50,56,
+51,41,41,32,95,49,49,52,49,41,32,95,49,49,51,49,41,41,41,32,
+40,40,40,67,39,32,40,95,51,53,32,95,49,50,56,51,41,41,32,95,
+49,49,51,50,41,32,40,40,80,32,40,40,95,50,56,50,32,95,49,50,
+56,57,41,32,40,95,49,55,49,55,32,34,66,121,101,34,41,41,41,32,
+95,49,49,51,49,41,41,41,41,41,41,41,32,40,40,65,32,58,49,49,
+51,50,32,40,40,67,32,40,40,67,32,95,49,56,54,48,41,32,40,40,
+95,51,55,32,95,49,50,56,51,41,32,95,49,51,53,41,41,41,32,40,
+40,66,32,40,40,67,39,32,40,83,32,40,85,32,40,40,40,95,51,54,
+32,95,49,50,56,51,41,32,40,40,95,50,56,50,32,95,49,50,56,57,
+41,32,40,95,49,55,49,55,32,34,85,110,114,101,99,111,103,110,105,122,
+101,100,32,99,111,109,109,97,110,100,34,41,41,41,32,40,40,95,51,55,
+32,95,49,50,56,51,41,32,95,49,51,53,41,41,41,41,41,32,40,40,
+66,32,40,66,32,40,67,32,66,41,41,41,32,40,40,66,32,40,66,32,
+90,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,67,41,32,
+40,40,66,32,40,67,32,67,39,41,41,32,40,40,66,32,85,41,32,95,
+49,56,54,49,41,41,41,41,32,40,90,32,40,90,32,40,40,40,67,39,
+32,40,95,51,54,32,95,49,50,56,51,41,41,32,40,40,66,32,40,95,
+50,56,50,32,95,49,50,56,57,41,41,32,40,40,66,32,40,95,50,56,
+50,32,95,49,55,49,55,41,41,32,40,40,66,32,40,95,53,48,52,32,
+34,65,109,98,105,103,117,111,117,115,32,99,111,109,109,97,110,100,58,32,
+34,41,41,32,40,40,66,32,95,49,56,54,49,41,32,40,95,52,51,49,
+32,95,54,54,52,41,41,41,41,41,41,32,40,40,95,51,55,32,95,49,
+50,56,51,41,32,95,49,51,53,41,41,41,41,41,41,41,41,41,32,40,
+40,40,67,39,32,95,52,51,50,41,32,40,40,40,67,39,32,95,50,56,
+52,41,32,40,95,52,53,56,32,95,49,52,49,41,41,32,95,54,54,52,
+41,41,32,95,49,49,51,51,41,41,41,41,32,40,40,65,32,58,49,49,
+51,51,32,40,40,79,32,40,40,80,32,34,113,117,105,116,34,41,32,40,
+40,95,50,56,50,32,95,50,56,54,41,32,40,40,95,51,55,32,95,49,
+50,56,51,41,32,95,49,51,52,41,41,41,41,32,40,40,79,32,40,40,
+80,32,34,99,108,101,97,114,34,41,32,40,40,95,50,56,50,32,95,50,
+56,54,41,32,40,40,40,95,51,54,32,95,49,50,56,51,41,32,40,95,
+49,49,51,54,32,40,95,50,56,54,32,95,49,49,50,57,41,41,41,32,
+40,40,40,95,51,54,32,95,49,50,56,51,41,32,40,40,95,50,56,50,
+32,95,49,50,56,54,41,32,40,85,32,40,40,66,32,90,41,32,40,40,
+40,67,39,32,40,67,39,32,67,41,41,32,80,41,32,95,56,49,53,41,
+41,41,41,41,32,40,40,95,51,55,32,95,49,50,56,51,41,32,95,49,
+51,53,41,41,41,41,41,41,32,40,40,79,32,40,40,80,32,34,114,101,
+108,111,97,100,34,41,32,40,40,95,50,56,50,32,95,50,56,54,41,32,
+40,40,40,95,51,53,32,95,49,50,56,51,41,32,95,49,50,56,56,41,
+32,40,85,32,40,40,66,32,40,40,83,39,32,40,67,39,32,40,95,51,
+53,32,95,49,50,56,51,41,41,41,32,40,40,66,32,40,66,32,40,95,
+50,56,50,32,95,49,50,56,57,41,41,41,32,95,56,48,52,41,41,41,
+32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,95,51,54,32,
+95,49,50,56,51,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
+95,49,50,56,55,41,41,41,32,40,40,66,32,40,66,32,67,41,41,32,
+80,41,41,41,32,40,40,40,95,51,54,32,95,49,50,56,51,41,32,95,
+49,49,51,52,41,32,40,40,95,51,55,32,95,49,50,56,51,41,32,95,
+49,51,53,41,41,41,41,41,41,41,41,41,32,40,40,79,32,40,40,80,
+32,34,100,101,108,101,116,101,34,41,32,40,40,40,67,39,32,40,95,51,
+54,32,95,49,50,56,51,41,41,32,40,40,66,32,95,49,49,51,54,41,
+32,40,40,66,32,40,95,50,56,52,32,95,49,56,53,57,41,41,32,40,
+40,40,67,39,32,95,50,56,52,41,32,40,40,66,32,95,52,51,50,41,
+32,40,40,66,32,40,95,50,56,52,32,95,49,51,50,41,41,32,40,95,
+52,53,56,32,95,49,52,49,41,41,41,41,32,95,49,56,53,56,41,41,
+41,41,32,40,40,95,51,55,32,95,49,50,56,51,41,32,95,49,51,53,
+41,41,41,41,32,40,40,79,32,40,40,80,32,34,104,101,108,112,34,41,
+32,40,75,32,40,40,40,95,51,54,32,95,49,50,56,51,41,32,40,40,
+95,50,56,50,32,95,49,50,56,57,41,32,40,95,49,55,49,55,32,95,
+49,49,51,53,41,41,41,32,40,40,95,51,55,32,95,49,50,56,51,41,
+32,95,49,51,53,41,41,41,41,41,32,75,41,41,41,41,41,41,32,40,
+40,65,32,58,49,49,51,52,32,40,40,40,95,51,53,32,95,49,50,56,
+51,41,32,95,49,50,56,56,41,32,40,85,32,40,90,32,40,90,32,40,
+40,40,67,39,32,40,95,51,53,32,95,49,50,56,51,41,41,32,95,49,
+49,52,50,41,32,40,40,80,32,40,40,66,32,40,95,50,56,50,32,95,
+49,50,56,57,41,41,32,95,49,49,52,48,41,41,32,40,75,32,40,40,
+95,51,55,32,95,49,50,56,51,41,32,95,49,53,54,56,41,41,41,41,
+41,41,41,41,41,32,40,40,65,32,58,49,49,51,53,32,34,67,111,109,
+109,97,110,100,115,58,92,49,48,38,32,32,58,113,117,105,116,32,32,32,
+32,32,32,113,117,105,116,32,77,105,99,114,111,72,115,92,49,48,38,32,
+32,58,114,101,108,111,97,100,32,32,32,32,114,101,108,111,97,100,32,109,
+111,100,117,108,101,115,92,49,48,38,32,32,58,99,108,101,97,114,32,32,
+32,32,32,99,108,101,97,114,32,97,108,108,32,100,101,102,105,110,105,116,
+105,111,110,115,92,49,48,38,32,32,58,100,101,108,101,116,101,32,100,32,
+32,100,101,108,101,116,101,32,100,101,102,105,110,105,116,105,111,110,40,115,
+41,32,100,92,49,48,38,32,32,58,104,101,108,112,32,32,32,32,32,32,
+116,104,105,115,32,116,101,120,116,92,49,48,38,32,32,101,120,112,114,32,
+32,32,32,32,32,32,101,118,97,108,117,97,116,101,32,101,120,112,114,101,
+115,115,105,111,110,92,49,48,38,32,32,100,101,102,110,32,32,32,32,32,
+32,32,97,100,100,32,116,111,112,32,108,101,118,101,108,32,100,101,102,105,
+110,105,116,105,111,110,92,49,48,38,34,41,32,40,40,65,32,58,49,49,
+51,54,32,40,40,66,32,40,95,50,56,50,32,95,49,50,56,54,41,41,
+32,40,40,66,32,85,41,32,40,40,66,32,40,66,32,40,66,32,67,41,
+41,41,32,40,66,32,80,41,41,41,41,41,32,40,40,65,32,58,49,49,
+51,55,32,34,73,110,116,101,114,97,99,116,105,118,101,34,41,32,40,40,
+65,32,58,49,49,51,56,32,34,95,105,116,34,41,32,40,40,65,32,58,
+49,49,51,57,32,40,40,66,32,40,95,53,48,52,32,95,49,49,51,56,
+41,41,32,40,40,66,32,40,95,53,48,52,32,34,32,58,58,32,73,79,
+32,40,41,92,49,48,38,34,41,41,32,40,40,66,32,40,95,53,48,52,
+32,95,49,49,51,56,41,41,32,40,40,66,32,40,95,53,48,52,32,34,
+32,61,32,112,114,105,110,116,79,114,82,117,110,32,40,34,41,41,32,40,
+40,67,32,95,53,48,52,41,32,34,41,92,49,48,38,34,41,41,41,41,
+41,41,32,40,40,65,32,58,49,49,52,48,32,40,40,66,32,40,95,50,
+56,50,32,95,49,55,49,55,41,41,32,40,95,53,48,52,32,34,69,114,
+114,111,114,58,32,34,41,41,41,32,40,40,65,32,58,49,49,52,49,32,
+40,40,66,32,40,40,95,51,53,32,95,49,50,56,51,41,32,95,49,50,
+56,56,41,41,32,40,40,66,32,85,41,32,40,40,66,32,90,41,32,40,
+40,66,32,90,41,32,40,40,40,83,39,32,83,41,32,40,40,40,67,39,
+32,40,67,39,32,83,41,41,32,40,40,66,32,40,66,32,40,67,32,40,
+40,40,95,49,49,56,50,32,95,49,48,49,52,41,32,95,49,49,56,52,
+41,32,75,41,41,41,41,32,40,40,66,32,90,41,32,40,40,40,83,39,
+32,66,41,32,40,40,67,32,40,40,40,95,49,49,56,50,32,95,49,48,
+49,53,41,32,95,49,49,56,53,41,32,75,41,41,32,40,40,66,32,40,
+95,50,56,50,32,95,49,50,56,57,41,41,32,40,40,66,32,95,49,49,
+52,48,41,32,95,50,57,41,41,41,41,32,40,40,66,32,90,41,32,40,
+40,40,67,39,32,40,67,39,32,40,95,51,53,32,95,49,50,56,51,41,
+41,41,32,40,40,66,32,40,66,32,95,49,49,52,50,41,41,32,40,40,
+66,32,40,67,32,95,53,48,52,41,41,32,40,40,66,32,40,95,53,48,
+52,32,40,40,79,32,35,49,48,41,32,75,41,41,41,32,95,49,49,51,
+57,41,41,41,41,32,40,40,80,32,40,40,66,32,40,95,50,56,50,32,
+95,49,50,56,57,41,41,32,95,49,49,52,48,41,41,32,95,49,49,52,
+51,41,41,41,41,41,41,41,32,40,90,32,40,40,40,83,39,32,40,95,
+51,53,32,95,49,50,56,51,41,41,32,95,49,49,52,50,41,32,40,40,
+66,32,40,80,32,40,40,66,32,40,95,50,56,50,32,95,49,50,56,57,
+41,41,32,95,49,49,52,48,41,41,41,32,40,90,32,40,40,66,32,95,
+49,49,51,54,41,32,95,50,56,54,41,41,41,41,41,41,41,32,40,40,
+66,32,40,67,32,95,53,48,52,41,41,32,40,40,67,32,95,53,48,52,
+41,32,40,40,79,32,35,49,48,41,32,75,41,41,41,41,41,41,41,41,
+41,32,40,40,65,32,58,49,49,52,50,32,40,40,66,32,40,40,95,51,
+53,32,95,49,50,56,51,41,32,95,49,50,56,56,41,41,32,40,40,66,
+32,85,41,32,40,40,67,32,40,40,40,67,39,32,67,39,41,32,40,40,
+66,32,67,39,41,32,40,40,66,32,67,39,41,32,40,66,39,32,40,40,
+66,32,40,95,51,54,32,95,49,50,56,51,41,41,32,40,40,66,32,40,
+95,50,56,50,32,95,49,50,56,57,41,41,32,40,95,49,55,49,57,32,
+40,40,95,53,48,52,32,95,49,49,51,55,41,32,34,46,104,115,34,41,
+41,41,41,41,41,41,41,32,40,40,66,32,40,40,83,39,32,40,67,39,
+32,40,83,39,32,40,95,51,53,32,95,49,50,56,51,41,41,41,41,32,
+40,40,66,32,40,66,32,40,66,32,40,95,50,56,50,32,95,49,50,56,
+57,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,95,50,56,
+50,32,95,51,49,41,41,41,41,32,40,40,66,32,67,41,32,95,55,57,
+57,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,80,32,
+40,40,66,32,40,95,51,55,32,95,49,50,56,51,41,41,32,95,49,57,
+50,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,85,41,41,
+41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,66,41,41,41,
+32,40,40,66,32,40,66,32,40,66,32,40,67,39,32,40,95,51,54,32,
+95,49,50,56,51,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,
+32,40,66,32,95,49,50,56,55,41,41,41,41,32,40,40,40,67,39,32,
+40,67,39,32,66,41,41,32,40,40,66,32,66,39,41,32,40,40,66,32,
+40,66,32,67,41,41,32,80,41,41,41,32,95,56,49,54,41,41,41,41,
+32,40,40,66,32,40,95,51,55,32,95,49,50,56,51,41,41,32,95,49,
+57,51,41,41,41,41,41,41,41,32,40,95,49,48,56,51,32,95,49,49,
+51,55,41,41,41,41,41,32,40,40,65,32,58,49,49,52,51,32,40,40,
+66,32,40,40,40,67,39,32,40,95,51,53,32,95,49,50,56,51,41,41,
+32,40,40,66,32,40,95,50,56,50,32,95,49,50,56,57,41,41,32,40,
+40,66,32,95,51,49,41,32,40,40,83,32,95,50,57,50,41,32,40,95,
+51,55,32,95,49,54,57,55,41,41,41,41,41,32,40,40,66,32,40,95,
+50,56,50,32,95,49,50,56,57,41,41,32,40,40,80,32,95,49,49,52,
+48,41,32,40,40,40,67,39,32,40,95,51,53,32,95,49,54,57,55,41,
+41,32,95,51,49,41,32,40,40,80,32,95,49,49,52,48,41,32,40,75,
+32,40,40,95,51,55,32,95,49,54,57,55,41,32,95,49,53,54,56,41,
+41,41,41,41,41,41,41,32,40,40,66,32,95,49,56,54,53,41,32,40,
+40,66,32,95,49,50,57,52,41,32,40,80,32,40,95,49,48,56,51,32,
+40,40,95,53,48,52,32,95,49,49,51,55,41,32,40,40,95,53,48,52,
+32,40,40,79,32,35,52,54,41,32,75,41,41,32,95,49,49,51,56,41,
+41,41,41,41,41,41,41,32,40,40,65,32,58,49,49,52,52,32,40,40,
+66,32,40,66,32,40,66,32,40,80,32,35,48,41,41,41,41,32,40,40,
+66,32,40,66,32,67,41,41,32,80,41,41,41,32,40,40,65,32,58,49,
+49,52,53,32,40,40,66,32,40,66,32,40,80,32,35,49,41,41,41,32,
+80,41,41,32,40,40,65,32,58,49,49,52,54,32,40,40,66,32,40,66,
+32,40,80,32,35,50,41,41,41,32,80,41,41,32,40,40,65,32,58,49,
+49,52,55,32,40,40,66,32,40,66,32,40,80,32,35,51,41,41,41,32,
+80,41,41,32,40,40,65,32,58,49,49,52,56,32,40,40,66,32,40,66,
+32,40,80,32,35,52,41,41,41,32,80,41,41,32,40,40,65,32,58,49,
+49,52,57,32,40,40,66,32,40,66,32,40,80,32,35,53,41,41,41,32,
+80,41,41,32,40,40,65,32,58,49,49,53,48,32,40,40,66,32,40,66,
+32,40,80,32,35,54,41,41,41,32,80,41,41,32,40,40,65,32,58,49,
+49,53,49,32,40,40,66,32,40,80,32,35,55,41,41,32,85,41,41,32,
+40,40,65,32,58,49,49,53,50,32,40,40,66,32,40,80,32,35,56,41,
+41,32,85,41,41,32,40,40,65,32,58,49,49,53,51,32,40,85,32,40,
+40,83,32,40,40,40,83,39,32,83,39,41,32,40,40,67,32,60,41,32,
+35,52,41,41,32,40,40,83,32,40,40,40,83,39,32,83,39,41,32,40,
+40,67,32,60,41,32,35,54,41,41,32,40,40,67,32,40,40,40,83,39,
+32,83,39,41,32,40,40,67,32,60,41,32,35,55,41,41,32,40,40,67,
+32,40,40,40,67,39,32,83,39,41,32,40,40,67,32,60,41,32,35,56,
+41,41,32,40,85,32,40,75,32,34,84,73,110,100,101,110,116,34,41,41,
+41,41,32,40,85,32,40,75,32,34,84,66,114,97,99,101,34,41,41,41,
+41,41,32,40,85,32,40,75,32,40,95,53,48,52,32,34,69,82,82,79,
+82,32,34,41,41,41,41,41,41,32,40,40,67,32,40,40,40,67,39,32,
+83,39,41,32,40,40,67,32,60,41,32,35,53,41,41,32,40,85,32,40,
+75,32,40,40,67,32,79,41,32,75,41,41,41,41,41,32,40,85,32,40,
+75,32,40,95,49,56,52,50,32,40,95,54,49,55,32,95,51,52,48,41,
+41,41,41,41,41,41,41,32,40,40,83,32,40,40,40,83,39,32,83,39,
+41,32,40,40,67,32,60,41,32,35,50,41,41,32,40,40,67,32,40,40,
+40,67,39,32,83,39,41,32,40,40,67,32,60,41,32,35,51,41,41,32,
+40,85,32,40,75,32,40,95,49,56,52,50,32,95,51,52,48,41,41,41,
+41,41,32,40,85,32,40,75,32,40,95,49,56,52,50,32,95,49,53,57,
+41,41,41,41,41,41,32,40,40,67,32,40,40,40,67,39,32,83,39,41,
+32,40,40,67,32,60,41,32,35,49,41,41,32,40,85,32,40,75,32,40,
+95,49,56,52,50,32,40,95,52,50,52,32,95,49,53,57,41,41,41,41,
+41,41,32,40,85,32,40,75,32,40,40,66,32,40,66,32,40,95,52,55,
+49,32,40,40,79,32,35,52,54,41,32,75,41,41,41,41,32,40,40,40,
+67,39,32,66,41,32,95,53,48,52,41,32,40,40,67,32,79,41,32,75,
+41,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,49,49,53,52,
+32,40,85,32,40,90,32,40,40,40,67,39,32,80,41,32,40,40,67,32,
+40,95,53,55,53,32,95,51,49,48,41,41,32,35,49,41,41,32,40,40,
+95,53,56,49,32,95,51,49,48,41,32,40,95,51,57,50,32,35,49,41,
+41,41,41,41,41,32,40,40,65,32,58,49,49,53,53,32,40,40,67,32,
+66,41,32,40,40,66,32,40,40,67,39,32,66,41,32,80,41,41,32,40,
+67,32,40,95,53,55,53,32,95,51,49,48,41,41,41,41,41,32,40,40,
+65,32,58,49,49,53,54,32,80,41,32,40,40,65,32,58,49,49,53,55,
+32,40,85,32,65,41,41,32,40,40,65,32,58,49,49,53,56,32,40,40,
+95,50,56,52,32,40,95,49,49,55,49,32,95,53,48,50,41,41,32,40,
+95,49,49,53,57,32,40,40,95,49,49,53,54,32,35,49,41,32,35,49,
+41,41,41,41,32,40,40,65,32,58,49,49,53,57,32,40,40,66,32,89,
+41,32,40,40,66,32,40,66,32,40,83,32,40,85,32,95,53,48,50,41,
+41,41,41,32,40,40,40,83,39,32,40,67,39,32,40,67,39,32,67,41,
+41,41,32,40,40,66,32,40,66,32,40,66,32,40,40,83,39,32,83,39,
+41,32,40,40,95,50,50,51,32,95,49,52,49,41,32,35,51,50,41,41,
+41,41,41,32,40,40,40,83,39,32,40,67,39,32,40,67,39,32,67,41,
+41,41,32,40,40,66,32,40,66,32,40,66,32,40,40,83,39,32,83,39,
+41,32,40,40,95,50,50,51,32,95,49,52,49,41,32,35,49,48,41,41,
+41,41,41,32,40,40,66,32,40,67,39,32,67,41,41,32,40,40,66,32,
+40,66,32,40,40,83,39,32,83,39,41,32,40,40,95,50,50,51,32,95,
+49,52,49,41,32,35,49,51,41,41,41,41,32,40,40,40,83,39,32,66,
+41,32,40,40,66,32,83,41,32,40,40,66,32,40,40,67,39,32,83,39,
+41,32,40,40,66,32,83,41,32,40,40,95,50,50,51,32,95,49,52,49,
+41,32,35,49,50,51,41,41,41,41,32,40,40,66,32,40,67,32,83,41,
+41,32,40,40,66,32,40,40,67,39,32,40,67,39,32,66,41,41,32,40,
+67,32,40,40,95,50,50,51,32,95,49,52,49,41,32,35,52,53,41,41,
+41,41,32,40,40,40,67,39,32,95,49,49,54,50,41,32,40,40,67,32,
+95,49,49,53,53,41,32,35,50,41,41,32,35,49,41,41,41,41,41,41,
+32,40,40,40,83,39,32,66,41,32,40,40,66,32,83,41,32,40,40,66,
+32,40,40,67,39,32,83,39,41,32,40,40,66,32,83,41,32,40,40,95,
+50,50,51,32,95,49,52,49,41,32,35,52,53,41,41,41,41,32,40,40,
+66,32,40,67,32,83,41,41,32,40,40,66,32,40,40,83,39,32,40,67,
+39,32,66,41,41,32,40,67,32,40,40,95,50,50,51,32,95,49,52,49,
+41,32,35,52,53,41,41,41,41,32,40,40,40,67,39,32,67,41,32,40,
+40,66,32,40,40,67,39,32,83,39,41,32,40,40,66,32,83,41,32,40,
+40,67,39,32,40,40,80,32,95,49,51,53,41,32,40,90,32,40,40,66,
+32,95,49,51,50,41,32,95,49,48,57,54,41,41,41,41,32,40,85,32,
+65,41,41,41,41,41,32,40,40,66,32,40,67,39,32,95,49,49,54,51,
+41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,95,50,56,50,
+41,32,95,49,49,53,53,41,41,32,40,40,66,32,40,40,95,53,55,53,
+32,95,51,49,48,41,32,40,40,95,53,56,49,32,95,51,49,48,41,32,
+40,95,51,57,50,32,35,50,41,41,41,41,32,40,40,66,32,95,52,52,
+57,41,32,40,85,32,75,41,41,41,41,41,41,41,32,40,95,52,54,54,
+32,40,40,67,32,40,95,50,50,51,32,95,49,52,49,41,41,32,35,52,
+53,41,41,41,41,41,41,41,41,32,40,40,40,83,39,32,40,67,39,32,
+83,41,41,32,40,40,66,32,40,66,32,40,40,83,39,32,83,39,41,32,
+95,49,48,57,56,41,41,41,32,40,40,40,83,39,32,40,83,39,32,67,
+41,41,32,40,40,66,32,40,66,32,40,40,83,39,32,67,39,41,32,95,
+49,52,57,41,41,41,32,40,40,40,83,39,32,66,41,32,40,40,66,32,
+83,41,32,40,40,66,32,40,40,67,39,32,83,39,41,32,40,40,66,32,
+83,41,32,40,40,95,50,50,51,32,95,49,52,49,41,32,35,52,56,41,
+41,41,41,32,40,40,66,32,40,67,32,83,41,41,32,40,40,66,32,40,
+40,67,39,32,40,67,39,32,66,41,41,32,40,67,32,40,40,40,67,39,
+32,40,95,50,50,51,32,95,49,52,49,41,41,32,95,49,53,55,41,32,
+35,49,50,48,41,41,41,41,32,95,49,49,54,48,41,41,41,41,41,32,
+40,40,40,83,39,32,66,41,32,40,40,66,32,67,41,32,40,40,66,32,
+40,40,83,39,32,67,39,41,32,95,49,53,49,41,41,32,40,40,40,83,
+39,32,83,41,32,40,40,66,32,40,40,83,39,32,83,39,41,32,95,49,
+48,57,54,41,41,32,40,40,40,83,39,32,83,41,32,40,40,66,32,40,
+40,83,39,32,83,39,41,32,95,49,49,54,55,41,41,32,40,40,40,83,
+39,32,67,41,32,40,40,66,32,40,40,83,39,32,83,39,41,32,40,40,
+95,50,50,51,32,95,49,52,49,41,32,35,51,52,41,41,41,32,40,40,
+40,83,39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,83,32,40,
+40,95,50,50,51,32,95,49,52,49,41,32,35,51,57,41,41,41,32,40,
+40,40,67,39,32,40,67,39,32,79,41,41,32,40,40,40,67,39,32,66,
+41,32,40,40,66,32,95,50,56,50,41,32,95,49,49,53,48,41,41,32,
+40,40,66,32,40,95,53,48,52,32,34,85,110,114,101,99,111,103,110,105,
+122,101,100,32,105,110,112,117,116,58,32,34,41,41,32,40,95,49,56,52,
+50,32,95,49,53,57,41,41,41,41,32,75,41,41,41,32,40,40,40,83,
+39,32,67,41,32,40,40,67,32,40,40,67,32,40,40,67,32,40,40,83,
+32,95,49,49,54,53,41,32,40,40,40,83,39,32,67,41,32,40,40,66,
+32,40,67,32,83,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,
+32,40,67,39,32,80,41,41,32,95,49,49,52,54,41,41,32,40,90,32,
+75,41,41,41,41,32,40,40,67,32,95,49,49,53,48,41,32,34,73,108,
+108,101,103,97,108,32,67,104,97,114,32,108,105,116,101,114,97,108,34,41,
+41,41,41,32,35,51,57,41,41,32,35,48,41,41,32,95,53,48,50,41,
+41,32,40,40,66,32,40,40,67,39,32,66,41,32,40,66,39,32,95,53,
+48,51,41,41,41,32,40,40,66,32,40,66,32,95,49,49,53,57,41,41,
+32,40,40,40,67,39,32,66,41,32,40,40,66,32,95,50,56,50,41,32,
+95,49,49,53,53,41,41,32,40,40,95,53,55,53,32,95,51,49,48,41,
+32,40,40,95,53,56,49,32,95,51,49,48,41,32,40,95,51,57,50,32,
+35,50,41,41,41,41,41,41,41,41,41,41,32,40,40,40,83,39,32,67,
+41,32,40,40,67,32,40,40,67,32,40,40,67,32,40,40,83,32,95,49,
+49,54,53,41,32,95,49,49,52,53,41,41,32,35,51,52,41,41,32,35,
+48,41,41,32,95,53,48,50,41,41,32,40,40,66,32,40,40,67,39,32,
+66,41,32,40,66,39,32,95,53,48,51,41,41,41,32,40,40,66,32,40,
+66,32,95,49,49,53,57,41,41,32,40,40,40,67,39,32,66,41,32,40,
+40,66,32,95,50,56,50,41,32,95,49,49,53,53,41,41,32,40,40,95,
+53,55,53,32,95,51,49,48,41,32,40,40,95,53,56,49,32,95,51,49,
+48,41,32,40,95,51,57,50,32,35,50,41,41,41,41,41,41,41,41,41,
+41,32,40,40,40,83,39,32,40,67,39,32,66,41,41,32,40,40,66,32,
+40,66,32,95,53,48,51,41,41,32,95,49,49,52,57,41,41,32,40,40,
+66,32,95,49,49,53,57,41,32,40,40,67,32,95,49,49,53,53,41,32,
+35,49,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,67,32,40,
+95,52,54,54,32,95,49,48,57,54,41,41,41,41,32,40,40,40,83,39,
+32,40,67,39,32,40,83,39,32,66,41,41,41,32,40,40,66,32,40,66,
+32,40,66,32,95,53,48,51,41,41,41,32,40,40,40,67,39,32,66,41,
+32,40,66,39,32,40,40,67,32,95,49,49,52,52,41,32,95,53,48,50,
+41,41,41,32,95,53,48,51,41,41,41,32,40,40,66,32,40,66,32,95,
+49,49,53,57,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,
+95,50,56,50,41,32,95,49,49,53,53,41,41,32,40,40,66,32,40,40,
+95,53,55,53,32,95,51,49,48,41,32,40,40,95,53,56,49,32,95,51,
+49,48,41,32,40,95,51,57,50,32,35,49,41,41,41,41,32,95,52,52,
+57,41,41,41,41,41,41,41,41,41,32,95,49,49,54,49,41,41,41,41,
+32,40,40,67,32,40,40,83,32,95,49,49,54,56,41,32,73,41,41,32,
+95,53,48,50,41,41,41,41,32,40,40,66,32,40,66,32,40,67,32,40,
+95,52,54,54,32,95,49,48,57,55,41,41,41,41,32,40,40,40,83,39,
+32,40,67,39,32,40,83,39,32,66,41,41,41,32,40,40,40,67,39,32,
+66,41,32,40,66,39,32,40,40,67,32,95,49,49,54,57,41,32,95,53,
+48,50,41,41,41,32,95,53,48,51,41,41,32,40,40,66,32,40,66,32,
+95,49,49,53,57,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,
+32,95,50,56,50,41,32,95,49,49,53,53,41,41,32,40,40,66,32,40,
+40,95,53,55,53,32,95,51,49,48,41,32,40,40,95,53,56,49,32,95,
+51,49,48,41,32,40,95,51,57,50,32,35,49,41,41,41,41,32,95,52,
+52,57,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,
+66,32,95,49,49,54,52,41,41,32,40,40,66,32,95,49,49,53,57,41,
+32,95,49,49,53,52,41,41,41,41,41,32,40,40,66,32,95,49,49,53,
+57,41,32,40,40,67,32,95,49,49,53,53,41,32,35,49,41,41,41,41,
+41,41,32,40,40,65,32,58,49,49,54,48,32,40,40,66,32,40,67,32,
+40,95,52,54,54,32,95,49,53,50,41,41,41,32,40,40,40,83,39,32,
+40,83,39,32,66,41,41,32,40,40,66,32,40,66,32,95,53,48,51,41,
+41,32,40,40,40,67,39,32,66,41,32,95,49,49,52,55,41,32,95,49,
+49,55,50,41,41,41,32,40,40,66,32,40,66,32,95,49,49,53,57,41,
+41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,95,50,56,50,41,
+32,95,49,49,53,53,41,41,32,40,40,40,67,39,32,40,95,53,55,53,
+32,95,51,49,48,41,41,32,95,52,52,57,41,32,35,50,41,41,41,41,
+41,41,32,40,40,65,32,58,49,49,54,49,32,40,40,66,32,40,67,32,
+40,95,52,54,54,32,95,49,53,49,41,41,41,32,40,40,40,83,39,32,
+40,83,39,32,83,41,41,32,40,40,66,32,40,66,32,40,83,32,40,40,
+40,83,39,32,95,49,51,48,41,32,95,52,50,56,41,32,40,40,40,83,
+39,32,95,49,51,48,41,32,40,40,66,32,95,49,51,50,41,32,40,40,
+40,67,39,32,40,95,50,50,51,32,95,49,52,49,41,41,32,95,52,54,
+56,41,32,35,52,54,41,41,41,32,40,40,40,67,39,32,40,95,50,50,
+51,32,95,49,52,51,41,41,32,40,95,52,52,55,32,35,50,41,41,32,
+34,46,46,34,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,40,
+67,39,32,40,95,52,54,54,32,95,49,53,49,41,41,32,95,52,54,57,
+41,41,41,32,40,40,40,67,39,32,66,41,32,40,66,39,32,40,40,66,
+32,67,41,32,40,40,66,32,40,40,67,39,32,67,41,32,40,40,67,32,
+40,40,40,83,39,32,83,39,41,32,40,40,66,32,83,39,41,32,40,40,
+80,32,95,53,50,49,41,32,40,40,66,32,40,83,32,40,85,32,95,53,
+50,49,41,41,41,32,40,40,40,83,39,32,66,41,32,40,40,66,32,83,
+41,32,40,40,66,32,40,40,67,39,32,83,39,41,32,40,40,66,32,83,
+41,32,40,40,95,50,50,51,32,95,49,52,49,41,32,35,52,53,41,41,
+41,41,32,40,40,66,32,40,83,32,83,41,41,32,40,40,66,32,40,66,
+32,40,66,32,90,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,
+66,32,40,67,39,32,67,41,41,32,40,40,40,67,39,32,40,67,39,32,
+40,67,39,32,66,41,41,41,32,40,40,40,67,39,32,67,39,41,32,40,
+40,66,32,95,49,51,49,41,32,40,40,40,67,39,32,40,95,50,50,51,
+32,95,49,52,49,41,41,32,95,49,53,55,41,32,35,49,48,49,41,41,
+41,32,95,49,53,49,41,41,32,40,40,66,32,95,53,50,50,41,32,40,
+40,40,83,39,32,80,41,32,40,40,66,32,40,95,53,48,51,32,35,49,
+48,49,41,41,32,40,40,66,32,40,95,53,48,51,32,35,52,53,41,41,
+32,40,85,32,75,41,41,41,41,32,40,85,32,65,41,41,41,41,41,41,
+32,40,95,52,54,54,32,95,49,53,49,41,41,41,41,41,41,41,32,40,
+40,40,83,39,32,66,41,32,40,40,66,32,83,41,32,40,40,66,32,40,
+40,67,39,32,67,39,41,32,40,40,66,32,83,41,32,40,40,95,50,50,
+51,32,95,49,52,49,41,32,35,52,51,41,41,41,41,32,40,40,66,32,
+40,83,32,83,41,41,32,40,40,66,32,40,66,32,40,66,32,90,41,41,
+41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,67,39,32,67,
+41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,66,41,41,
+41,32,40,40,40,67,39,32,67,39,41,32,40,40,66,32,95,49,51,49,
+41,32,40,40,40,67,39,32,40,95,50,50,51,32,95,49,52,49,41,41,
+32,95,49,53,55,41,32,35,49,48,49,41,41,41,32,95,49,53,49,41,
+41,32,40,40,66,32,95,53,50,50,41,32,40,40,40,83,39,32,80,41,
+32,40,40,66,32,40,95,53,48,51,32,35,49,48,49,41,41,32,40,40,
+66,32,40,95,53,48,51,32,35,52,51,41,41,32,40,85,32,75,41,41,
+41,41,32,40,85,32,65,41,41,41,41,41,41,32,40,95,52,54,54,32,
+95,49,53,49,41,41,41,41,41,41,41,32,40,40,40,67,39,32,66,41,
+32,40,40,66,32,67,41,32,40,40,40,67,39,32,40,67,39,32,66,41,
+41,32,40,40,67,32,40,40,40,67,39,32,67,39,41,32,40,40,66,32,
+95,49,51,49,41,32,40,40,40,67,39,32,40,95,50,50,51,32,95,49,
+52,49,41,41,32,95,49,53,55,41,32,35,49,48,49,41,41,41,32,95,
+49,53,49,41,41,32,95,53,50,49,41,41,32,40,40,66,32,95,53,50,
+50,41,32,40,40,40,83,39,32,80,41,32,40,40,66,32,40,95,53,48,
+51,32,35,49,48,49,41,41,32,40,85,32,75,41,41,41,32,40,85,32,
+65,41,41,41,41,41,41,32,40,95,52,54,54,32,95,49,53,49,41,41,
+41,41,41,41,41,41,32,40,67,32,80,41,41,41,32,40,40,66,32,40,
+66,32,85,41,41,32,40,40,66,32,40,67,32,66,41,41,32,95,53,48,
+52,41,41,41,41,41,32,40,40,40,83,39,32,40,83,39,32,66,41,41,
+32,40,40,66,32,40,66,32,95,53,48,51,41,41,32,40,40,40,67,39,
+32,66,41,32,95,49,49,52,56,41,32,95,49,56,54,52,41,41,41,32,
+40,40,66,32,40,66,32,95,49,49,53,57,41,41,32,40,40,40,67,39,
+32,66,41,32,40,40,66,32,95,50,56,50,41,32,95,49,49,53,53,41,
+41,32,95,52,52,57,41,41,41,41,41,41,41,32,40,40,40,67,39,32,
+66,41,32,95,53,48,52,41,32,40,95,53,48,51,32,35,52,54,41,41,
+41,41,41,41,32,40,40,40,83,39,32,40,83,39,32,66,41,41,32,40,
+40,66,32,40,66,32,95,53,48,51,41,41,32,40,40,40,67,39,32,66,
+41,32,95,49,49,52,55,41,32,95,51,55,56,41,41,41,32,40,40,66,
+32,40,66,32,95,49,49,53,57,41,41,32,40,40,40,67,39,32,66,41,
+32,40,40,66,32,95,50,56,50,41,32,95,49,49,53,53,41,41,32,95,
+52,52,57,41,41,41,41,41,41,32,40,40,65,32,58,49,49,54,50,32,
+40,40,66,32,89,41,32,40,40,40,83,39,32,40,67,39,32,67,41,41,
+32,40,40,66,32,40,66,32,40,40,83,39,32,83,39,41,32,40,40,95,
+50,50,51,32,95,51,49,52,41,32,40,40,95,53,56,49,32,95,51,49,
+48,41,32,40,95,51,57,50,32,35,48,41,41,41,41,41,41,32,40,40,
+40,83,39,32,66,41,32,40,66,39,32,40,40,66,32,80,41,32,40,40,
+40,67,39,32,79,41,32,40,40,67,32,95,49,49,53,48,41,32,34,85,
+110,99,108,111,115,101,100,32,123,45,32,99,111,109,109,101,110,116,34,41,
+41,32,75,41,41,41,41,32,40,40,40,83,39,32,66,41,32,40,40,66,
+32,40,83,39,32,83,41,41,32,40,40,66,32,40,66,32,40,40,67,39,
+32,83,39,41,32,40,40,66,32,83,41,32,40,40,95,50,50,51,32,95,
+49,52,49,41,32,35,49,50,51,41,41,41,41,41,32,40,40,66,32,40,
+66,32,40,67,32,83,41,41,41,32,40,40,66,32,40,66,32,40,40,67,
+39,32,40,67,39,32,66,41,41,32,40,67,32,40,40,95,50,50,51,32,
+95,49,52,49,41,32,35,52,53,41,41,41,41,41,32,40,40,40,67,39,
+32,66,41,32,40,40,66,32,95,49,49,54,50,41,32,40,40,67,32,95,
+49,49,53,53,41,32,35,50,41,41,41,32,40,40,67,32,40,95,53,55,
+53,32,95,51,49,48,41,41,32,35,49,41,41,41,41,41,41,41,32,40,
+40,40,83,39,32,66,41,32,40,40,66,32,40,83,39,32,83,41,41,32,
+40,40,66,32,40,66,32,40,40,67,39,32,83,39,41,32,40,40,66,32,
+83,41,32,40,40,95,50,50,51,32,95,49,52,49,41,32,35,52,53,41,
+41,41,41,41,32,40,40,66,32,40,66,32,40,67,32,83,41,41,41,32,
+40,40,66,32,40,66,32,40,40,67,39,32,40,67,39,32,66,41,41,32,
+40,67,32,40,40,95,50,50,51,32,95,49,52,49,41,32,35,49,50,53,
+41,41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,95,
+49,49,54,50,41,32,40,40,67,32,95,49,49,53,53,41,32,35,50,41,
+41,41,32,40,40,67,32,40,95,53,55,54,32,95,51,49,48,41,41,32,
+35,49,41,41,41,41,41,41,41,32,40,40,40,83,39,32,40,67,39,32,
+40,83,39,32,67,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,
+40,83,39,32,83,39,41,32,40,40,95,50,50,51,32,95,49,52,49,41,
+32,35,49,48,41,41,41,41,41,32,40,40,66,32,40,83,39,32,67,41,
+41,32,40,40,66,32,40,66,32,40,40,67,39,32,83,39,41,32,40,40,
+95,50,50,51,32,95,49,52,49,41,32,35,49,51,41,41,41,41,32,40,
+40,66,32,95,49,49,54,50,41,32,40,40,67,32,95,49,49,53,53,41,
+32,35,49,41,41,41,41,41,41,32,40,40,66,32,95,49,49,54,50,41,
+32,95,49,49,53,52,41,41,41,41,41,41,41,32,95,49,49,53,57,41,
+41,41,32,40,40,65,32,58,49,49,54,51,32,40,40,66,32,89,41,32,
+40,40,66,32,40,66,32,40,83,32,40,85,32,95,53,48,50,41,41,41,
+41,32,40,40,66,32,40,40,67,39,32,66,41,32,40,40,66,32,67,41,
+32,40,40,67,39,32,67,39,41,32,40,40,95,50,50,51,32,95,49,52,
+49,41,32,35,49,48,41,41,41,41,41,32,95,49,49,53,57,41,41,41,
+41,32,40,40,65,32,58,49,49,54,52,32,40,40,83,32,40,40,83,32,
+83,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,66,
+32,85,41,41,32,40,40,66,32,40,40,67,39,32,40,67,39,32,66,41,
+41,32,40,67,32,40,40,67,32,61,61,41,32,35,56,41,41,41,41,32,
+40,40,66,32,85,41,32,75,41,41,41,41,41,41,32,40,40,40,83,39,
+32,95,53,48,51,41,32,40,40,66,32,95,49,49,53,50,41,32,95,49,
+49,55,48,41,41,32,73,41,41,41,32,40,40,65,32,58,49,49,54,53,
+32,40,40,66,32,89,41,32,40,40,40,67,39,32,66,41,32,40,66,39,
+32,40,40,66,32,40,83,39,32,40,83,39,32,66,41,41,41,32,40,40,
+66,32,40,66,32,40,66,32,80,41,41,41,32,40,40,40,67,39,32,40,
+67,39,32,40,67,39,32,67,41,41,41,32,40,40,66,32,40,66,32,80,
+41,41,32,40,40,40,67,39,32,66,41,32,95,49,49,53,48,41,32,40,
+40,66,32,40,95,53,48,52,32,34,85,110,109,97,116,99,104,101,100,32,
+34,41,41,32,40,40,67,32,79,41,32,75,41,41,41,41,41,32,95,53,
+48,50,41,41,41,41,41,32,40,40,40,83,39,32,40,83,39,32,40,83,
+39,32,40,83,39,32,40,83,39,32,67,41,41,41,41,41,32,40,40,66,
+32,40,66,32,40,66,32,40,66,32,40,66,32,40,40,83,39,32,83,39,
+41,32,40,40,95,50,50,51,32,95,49,52,49,41,32,35,57,50,41,41,
+41,41,41,41,41,32,40,40,40,67,39,32,40,83,39,32,40,67,39,32,
+40,83,39,32,40,83,39,32,67,41,41,41,41,41,32,40,40,66,32,40,
+66,32,40,40,83,39,32,66,41,32,40,66,39,32,40,40,66,32,40,83,
+39,32,83,39,41,41,32,40,95,50,50,51,32,95,49,52,49,41,41,41,
+41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,
+39,32,66,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,66,39,
+41,41,41,32,40,40,67,32,40,67,39,32,40,67,39,32,66,41,41,41,
+32,40,40,67,32,40,95,53,55,53,32,95,51,49,48,41,41,32,35,49,
+41,41,41,41,32,40,67,32,95,53,48,51,41,41,41,41,32,40,40,66,
+32,40,66,32,40,66,32,67,41,41,41,32,40,40,66,32,40,67,39,32,
+80,41,41,32,40,40,67,32,66,41,32,95,52,54,51,41,41,41,41,41,
+41,32,40,40,66,32,40,66,32,40,66,32,40,40,67,39,32,66,41,32,
+40,40,66,32,67,41,32,40,40,66,32,95,49,49,54,54,41,32,40,40,
+67,32,40,95,53,55,53,32,95,51,49,48,41,41,32,35,49,41,41,41,
+41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,66,
+41,41,41,32,40,40,66,32,40,66,32,66,39,41,41,32,40,66,32,40,
+66,32,67,41,41,41,41,32,40,67,32,95,53,48,51,41,41,41,41,41,
+41,41,32,40,40,65,32,58,49,49,54,54,32,40,40,40,83,39,32,80,
+41,32,40,40,40,67,39,32,67,41,32,40,80,32,35,56,56,41,41,32,
+95,53,48,50,41,41,32,40,40,40,83,39,32,67,41,32,40,40,66,32,
+40,40,83,39,32,83,39,41,32,40,40,95,50,50,51,32,95,49,52,49,
+41,32,35,49,49,48,41,41,41,32,40,40,40,83,39,32,67,41,32,40,
+40,66,32,40,40,83,39,32,83,39,41,32,40,40,95,50,50,51,32,95,
+49,52,49,41,32,35,49,49,52,41,41,41,32,40,40,40,83,39,32,67,
+41,32,40,40,66,32,40,40,83,39,32,83,39,41,32,40,40,95,50,50,
+51,32,95,49,52,49,41,32,35,49,49,54,41,41,41,32,40,40,40,83,
+39,32,67,41,32,40,40,66,32,40,40,83,39,32,83,39,41,32,40,40,
+95,50,50,51,32,95,49,52,49,41,32,35,57,56,41,41,41,32,40,40,
+66,32,40,66,32,67,41,41,32,40,40,66,32,40,67,32,80,41,41,32,
+40,40,67,32,40,95,53,55,53,32,95,51,49,48,41,41,32,35,49,41,
+41,41,41,41,32,40,40,66,32,67,41,32,40,40,66,32,40,80,32,35,
+56,41,41,32,40,40,67,32,40,95,53,55,53,32,95,51,49,48,41,41,
+32,35,49,41,41,41,41,41,41,32,40,40,66,32,67,41,32,40,40,66,
+32,40,80,32,35,57,41,41,32,40,40,67,32,40,95,53,55,53,32,95,
+51,49,48,41,41,32,35,49,41,41,41,41,41,41,32,40,40,66,32,67,
+41,32,40,40,66,32,40,80,32,35,49,51,41,41,32,40,40,67,32,40,
+95,53,55,53,32,95,51,49,48,41,41,32,35,49,41,41,41,41,41,41,
+32,40,40,66,32,67,41,32,40,40,66,32,40,80,32,35,49,48,41,41,
+32,40,40,67,32,40,95,53,55,53,32,95,51,49,48,41,41,32,35,49,
+41,41,41,41,41,41,32,40,40,65,32,58,49,49,54,55,32,40,40,67,
+32,40,95,52,55,50,32,95,49,52,49,41,41,32,34,40,41,91,93,44,
+123,125,96,59,34,41,41,32,40,40,65,32,58,49,49,54,56,32,40,40,
+66,32,40,66,32,40,66,32,40,67,32,40,95,52,54,54,32,95,49,48,
+57,55,41,41,41,41,41,32,40,40,40,83,39,32,40,83,39,32,40,83,
+39,32,40,83,39,32,83,41,41,41,41,32,40,40,66,32,40,66,32,40,
+66,32,40,66,32,40,67,32,83,41,41,41,41,41,32,40,40,66,32,40,
+66,32,40,66,32,40,66,32,40,40,83,39,32,40,67,39,32,66,41,41,
+32,40,67,32,40,40,95,50,50,51,32,95,49,52,49,41,32,35,52,54,
+41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,
+32,40,40,83,39,32,83,41,32,85,41,41,41,41,41,32,40,40,66,32,
+40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,90,41,41,41,41,
+41,41,32,40,40,40,83,39,32,40,83,39,32,40,83,39,32,40,83,39,
+32,40,67,39,32,40,83,39,32,67,41,41,41,41,41,41,32,40,40,66,
+32,40,66,32,40,66,32,40,66,32,40,40,67,39,32,66,41,32,40,40,
+66,32,67,41,32,40,40,66,32,40,40,83,39,32,67,39,41,32,95,49,
+52,57,41,41,32,40,40,40,67,39,32,67,41,32,40,40,66,32,40,40,
+83,39,32,83,39,41,32,95,49,52,56,41,41,32,40,40,40,67,39,32,
+40,67,39,32,66,41,41,32,40,67,32,95,49,48,57,54,41,41,32,40,
+85,32,95,49,48,57,54,41,41,41,41,32,40,85,32,95,49,48,57,55,
+41,41,41,41,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,
+66,41,41,32,40,40,66,32,40,66,32,83,41,41,32,40,40,66,32,40,
+67,39,32,95,49,49,54,56,41,41,32,40,40,40,67,39,32,66,41,32,
+40,40,66,32,95,50,56,50,41,32,95,49,49,53,53,41,41,32,40,40,
+66,32,40,40,95,53,55,53,32,95,51,49,48,41,32,40,40,95,53,56,
+49,32,95,51,49,48,41,32,40,95,51,57,50,32,35,49,41,41,41,41,
+32,95,52,52,57,41,41,41,41,41,32,40,67,32,95,53,48,51,41,41,
+41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,40,67,39,
+32,67,41,32,40,67,32,95,52,54,54,41,41,41,41,41,41,32,40,40,
+66,32,40,40,67,39,32,40,67,39,32,40,83,39,32,40,83,39,32,66,
+41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,66,39,32,95,49,
+49,54,57,41,41,32,40,40,66,32,40,66,32,95,52,54,51,41,41,32,
+40,67,32,95,53,48,51,41,41,41,41,41,32,40,40,66,32,40,66,32,
+40,66,32,95,49,49,53,57,41,41,41,32,40,40,40,67,39,32,66,41,
+32,40,66,39,32,40,40,66,32,95,50,56,50,41,32,95,49,49,53,53,
+41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,95,53,
+55,53,32,95,51,49,48,41,41,32,40,40,66,32,40,40,95,53,55,53,
+32,95,51,49,48,41,32,40,40,95,53,56,49,32,95,51,49,48,41,32,
+40,95,51,57,50,32,35,49,41,41,41,41,32,95,52,52,57,41,41,41,
+32,95,52,52,57,41,41,41,41,41,41,41,41,41,41,41,32,40,40,66,
+32,40,40,67,39,32,40,67,39,32,40,83,39,32,66,41,41,41,32,40,
+40,66,32,40,66,32,40,66,32,95,53,48,51,41,41,41,32,40,40,40,
+67,39,32,66,41,32,95,49,49,52,52,41,32,95,52,54,51,41,41,41,
+41,32,40,40,66,32,40,66,32,95,49,49,53,57,41,41,32,40,40,40,
+67,39,32,66,41,32,40,40,66,32,95,50,56,50,41,32,95,49,49,53,
+53,41,41,32,95,52,52,57,41,41,41,41,41,41,32,40,40,65,32,58,
+49,49,54,57,32,40,40,66,32,40,66,32,40,40,83,39,32,67,41,32,
+40,40,67,32,40,40,40,67,39,32,83,39,41,32,40,40,66,32,83,39,
+41,32,40,40,67,32,40,95,52,55,50,32,95,49,52,51,41,41,32,40,
+40,79,32,34,108,101,116,34,41,32,40,40,79,32,34,119,104,101,114,101,
+34,41,32,40,40,79,32,34,100,111,34,41,32,40,40,79,32,34,111,102,
+34,41,32,75,41,41,41,41,41,41,41,32,40,67,32,95,53,48,51,41,
+41,41,32,40,40,66,32,40,67,32,95,53,48,51,41,41,32,40,40,83,
+32,40,40,83,32,83,41,32,40,40,66,32,40,66,32,40,67,32,66,41,
+41,41,32,40,40,40,83,39,32,66,41,32,40,40,66,32,40,67,39,32,
+83,41,41,32,40,40,66,32,40,66,32,40,40,67,39,32,83,39,41,32,
+40,40,67,32,60,41,32,35,56,41,41,41,41,32,40,40,66,32,40,66,
+32,85,41,41,32,40,40,66,32,90,41,32,40,40,40,67,39,32,83,41,
+32,40,40,66,32,40,67,32,83,41,41,32,40,40,66,32,40,66,32,90,
+41,41,32,40,40,66,32,40,66,32,85,41,41,32,40,40,66,32,40,40,
+83,39,32,40,67,39,32,66,41,41,32,40,67,32,40,40,67,32,61,61,
+41,32,35,53,41,41,41,41,32,40,40,66,32,40,66,32,85,41,41,32,
+40,40,66,32,90,41,32,40,40,67,39,32,67,41,32,40,67,32,40,40,
+95,50,50,51,32,95,49,52,49,41,32,35,49,50,51,41,41,41,41,41,
+41,41,41,41,41,32,40,40,40,83,39,32,95,53,48,51,41,32,40,40,
+66,32,95,49,49,53,49,41,32,95,49,49,55,48,41,41,32,73,41,41,
+41,41,41,41,41,32,40,40,66,32,40,40,83,39,32,40,67,39,32,66,
+41,41,32,40,67,32,40,40,67,32,61,61,41,32,35,53,41,41,41,41,
+32,40,40,66,32,40,66,32,85,41,41,32,40,40,66,32,90,41,32,40,
+40,67,39,32,67,41,32,40,67,32,40,40,95,50,50,51,32,95,49,52,
+49,41,32,35,49,50,51,41,41,41,41,41,41,41,41,41,41,32,40,40,
+40,83,39,32,95,53,48,51,41,32,40,40,66,32,95,49,49,53,49,41,
+32,95,49,49,55,48,41,41,32,73,41,41,41,41,41,41,41,32,95,49,
+49,52,52,41,41,32,40,40,65,32,58,49,49,55,48,32,40,40,80,32,
+40,40,95,49,49,53,54,32,35,48,41,32,35,49,41,41,32,40,90,32,
+40,85,32,40,40,83,32,40,40,40,83,39,32,83,39,41,32,40,40,67,
+32,60,41,32,35,52,41,41,32,40,40,83,32,40,40,40,83,39,32,83,
+39,41,32,40,40,67,32,60,41,32,35,54,41,41,32,40,40,67,32,40,
+40,40,83,39,32,83,39,41,32,40,40,67,32,60,41,32,35,55,41,41,
+32,40,40,67,32,40,40,40,67,39,32,83,39,41,32,40,40,67,32,60,
+41,32,35,56,41,41,32,40,85,32,73,41,41,41,32,40,85,32,73,41,
+41,41,41,32,40,85,32,75,41,41,41,41,32,40,40,67,32,40,40,40,
+67,39,32,83,39,41,32,40,40,67,32,60,41,32,35,53,41,41,32,40,
+85,32,75,41,41,41,32,40,85,32,75,41,41,41,41,41,32,40,40,83,
+32,40,40,40,83,39,32,83,39,41,32,40,40,67,32,60,41,32,35,50,
+41,41,32,40,40,67,32,40,40,40,67,39,32,83,39,41,32,40,40,67,
+32,60,41,32,35,51,41,41,32,40,85,32,75,41,41,41,32,40,85,32,
+75,41,41,41,41,32,40,40,67,32,40,40,40,67,39,32,83,39,41,32,
+40,40,67,32,60,41,32,35,49,41,41,32,40,85,32,75,41,41,41,32,
+40,85,32,40,90,32,75,41,41,41,41,41,41,41,41,41,32,40,40,65,
+32,58,49,49,55,49,32,40,40,66,32,89,41,32,40,40,83,32,40,40,
+40,67,39,32,83,39,41,32,40,40,66,32,83,39,41,32,83,41,41,32,
+40,40,66,32,40,40,83,39,32,40,83,39,32,66,41,41,32,66,39,41,
+41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,67,
+32,66,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,40,83,39,
+32,66,41,32,40,66,39,32,40,66,39,32,40,40,66,32,40,67,39,32,
+66,41,41,32,40,67,32,40,40,67,32,61,61,41,32,35,56,41,41,41,
+41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,
+66,32,40,66,32,85,41,41,41,41,41,41,32,40,40,40,67,39,32,40,
+67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,66,
+41,41,41,41,41,41,32,40,40,66,32,40,40,67,39,32,40,67,39,32,
+40,67,39,32,40,67,39,32,40,83,39,32,67,41,41,41,41,41,32,40,
+40,66,32,40,66,32,40,40,83,39,32,66,41,32,40,66,39,32,40,40,
+66,32,83,41,32,40,67,32,40,95,50,50,51,32,95,51,49,52,41,41,
+41,41,41,41,41,32,40,40,66,32,40,40,67,39,32,40,67,39,32,66,
+41,41,32,40,40,66,32,66,39,41,32,40,40,66,32,40,66,32,67,41,
+41,32,40,40,67,39,32,67,41,32,40,67,32,40,95,53,57,51,32,95,
+51,49,53,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,40,
+67,39,32,95,53,48,51,41,32,40,40,40,67,39,32,95,49,49,52,57,
+41,32,95,49,49,55,48,41,32,35,49,50,53,41,41,41,41,32,40,67,
+32,95,49,49,55,49,41,41,41,41,41,41,32,40,40,83,39,32,95,53,
+48,51,41,32,40,40,40,67,39,32,95,49,49,52,57,41,32,95,49,49,
+55,48,41,32,35,53,57,41,41,41,41,32,95,49,49,53,55,41,41,41,
+41,41,41,41,32,40,40,66,32,40,40,83,39,32,83,41,32,40,40,66,
+32,40,67,32,83,41,41,32,40,40,66,32,40,66,32,40,67,32,66,41,
+41,41,32,40,40,66,32,40,40,67,39,32,66,41,32,40,40,66,32,40,
+67,39,32,66,41,41,32,40,67,32,40,40,67,32,61,61,41,32,35,56,
+41,41,41,41,41,32,40,40,66,32,40,66,32,85,41,41,32,90,41,41,
+41,41,41,41,32,40,40,40,83,39,32,66,41,32,40,40,66,32,83,41,
+32,40,40,83,32,40,40,40,67,39,32,83,39,41,32,83,39,41,32,40,
+40,67,32,83,41,32,40,40,66,32,40,67,32,66,41,41,32,40,40,40,
+83,39,32,66,41,32,40,40,66,32,40,67,39,32,66,41,41,32,40,67,
+32,40,40,67,32,61,61,41,32,35,55,41,41,41,41,32,40,40,66,32,
+40,66,32,85,41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,
+32,40,40,40,67,39,32,66,41,32,40,40,66,32,83,41,32,40,67,32,
+40,40,67,32,40,95,53,57,53,32,95,51,49,53,41,41,32,35,48,41,
+41,41,41,32,40,40,40,83,39,32,66,41,32,40,40,66,32,95,53,48,
+51,41,32,40,40,40,67,39,32,95,49,49,52,57,41,32,95,49,49,55,
+48,41,32,35,49,50,51,41,41,41,32,40,40,67,39,32,95,49,49,55,
+49,41,32,40,40,67,32,79,41,32,75,41,41,41,41,41,32,95,49,49,
+53,55,41,41,41,41,41,41,41,32,40,40,40,67,39,32,40,83,39,32,
+66,41,41,32,40,40,66,32,40,66,32,40,83,39,32,66,41,41,41,32,
+40,40,66,32,40,40,67,39,32,66,41,32,83,41,41,32,40,40,66,32,
+40,66,32,40,66,32,40,67,32,66,41,41,41,41,32,40,40,66,32,40,
+66,32,40,40,83,39,32,66,41,32,40,40,66,32,40,67,39,32,66,41,
+41,32,40,67,32,40,40,67,32,61,61,41,32,35,55,41,41,41,41,41,
+41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,85,41,41,41,41,
+32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,66,
+41,41,41,41,32,40,40,66,32,40,40,67,39,32,40,67,39,32,66,41,
+41,32,40,40,66,32,40,66,32,83,41,41,32,40,40,66,32,67,41,32,
+40,67,32,40,95,53,57,53,32,95,51,49,53,41,41,41,41,41,41,32,
+40,40,66,32,40,40,83,39,32,66,41,32,40,40,66,32,95,53,48,51,
+41,32,40,40,40,67,39,32,95,49,49,52,57,41,32,95,49,49,55,48,
+41,32,35,49,50,51,41,41,41,41,32,40,40,66,32,40,67,39,32,95,
+49,49,55,49,41,41,32,40,67,32,95,53,48,51,41,41,41,41,41,32,
+95,49,49,53,55,41,41,41,41,41,41,41,32,40,40,66,32,40,40,83,
+39,32,40,67,39,32,66,41,41,32,40,67,32,40,40,95,50,50,51,32,
+95,51,49,52,41,32,40,40,95,53,56,49,32,95,51,49,48,41,32,40,
+95,51,57,50,32,35,48,41,41,41,41,41,41,32,40,40,67,32,40,83,
+39,32,66,41,41,32,40,40,66,32,40,66,32,40,83,32,66,41,41,41,
+32,40,40,40,83,39,32,66,41,32,40,66,39,32,40,66,39,32,40,40,
+66,32,40,67,39,32,66,41,41,32,40,67,32,40,40,67,32,61,61,41,
+32,35,53,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
+40,66,32,85,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,90,
+41,41,41,32,40,40,40,67,39,32,66,41,32,40,66,39,32,40,66,39,
+32,40,40,66,32,67,41,32,40,67,32,40,40,95,50,50,51,32,95,49,
+52,49,41,32,35,49,50,53,41,41,41,41,41,41,32,40,40,66,32,40,
+40,67,39,32,66,41,32,95,53,48,51,41,41,32,95,49,49,55,49,41,
+41,41,41,41,41,41,41,41,41,41,41,32,40,40,40,83,39,32,66,41,
+32,40,40,66,32,67,41,32,40,40,66,32,40,83,32,73,41,41,32,40,
+40,40,67,39,32,67,41,32,40,40,67,32,40,40,40,67,39,32,83,39,
+41,32,83,39,41,32,40,40,40,67,39,32,66,41,32,40,85,32,95,53,
+48,50,41,41,32,40,90,32,75,41,41,41,41,32,40,40,66,32,90,41,
+32,40,40,40,67,39,32,66,41,32,40,40,67,32,67,39,41,32,40,40,
+66,32,40,95,53,48,51,32,40,40,95,49,49,52,57,32,40,40,95,49,
+49,53,54,32,35,48,41,32,35,48,41,41,32,35,49,50,53,41,41,41,
+32,40,40,67,32,95,49,49,55,49,41,32,95,53,48,50,41,41,41,41,
+32,40,90,32,75,41,41,41,41,41,32,40,40,40,110,111,77,97,116,99,
+104,32,34,115,114,99,47,77,105,99,114,111,72,115,47,76,101,120,46,104,
+115,34,41,32,35,50,49,55,41,32,35,56,41,41,41,41,41,32,40,40,
+40,67,39,32,66,41,32,40,40,66,32,83,41,32,40,40,66,32,40,40,
+83,39,32,83,39,41,32,66,41,41,32,40,40,66,32,40,66,32,40,66,
+32,40,40,83,39,32,40,67,39,32,66,41,41,32,40,67,32,40,40,67,
+32,61,61,41,32,35,53,41,41,41,41,41,41,32,40,40,66,32,40,66,
+32,40,66,32,40,66,32,85,41,41,41,41,32,40,40,40,67,39,32,40,
+67,39,32,40,67,39,32,40,67,39,32,66,41,41,41,41,32,40,40,66,
+32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,32,40,40,66,32,
+40,66,32,40,66,32,40,66,32,40,83,32,40,40,95,50,50,51,32,95,
+49,52,49,41,32,35,49,50,53,41,41,41,41,41,41,32,40,40,66,32,
+40,66,32,40,66,32,40,40,67,39,32,67,41,32,40,67,32,40,40,95,
+50,50,51,32,95,49,52,49,41,32,35,49,50,51,41,41,41,41,41,41,
+32,40,40,66,32,40,40,67,39,32,66,41,32,95,53,48,51,41,41,32,
+40,40,66,32,95,49,49,55,49,41,32,40,95,53,48,51,32,40,40,95,
+53,56,49,32,95,51,49,48,41,32,40,95,51,57,50,32,35,48,41,41,
+41,41,41,41,41,41,41,32,40,40,40,67,39,32,95,53,48,51,41,32,
+40,40,67,32,95,49,49,53,48,41,32,34,108,97,121,111,117,116,32,101,
+114,114,111,114,32,125,34,41,41,32,95,53,48,50,41,41,41,41,41,41,
+41,32,40,40,67,39,32,66,41,32,95,53,48,51,41,41,41,41,41,41,
+41,41,32,40,40,65,32,58,49,49,55,50,32,40,40,95,52,51,54,32,
+40,40,40,67,39,32,66,41,32,40,40,66,32,40,95,53,55,53,32,95,
+51,52,49,41,41,32,40,40,67,32,40,95,53,55,55,32,95,51,52,49,
+41,41,32,40,40,95,53,56,49,32,95,51,52,49,41,32,40,95,51,57,
+50,32,35,49,54,41,41,41,41,41,32,40,40,66,32,40,95,52,48,53,
+32,95,51,49,49,41,41,32,95,49,53,54,41,41,41,32,40,95,51,57,
+50,32,35,48,41,41,41,32,40,40,65,32,58,49,49,55,51,32,34,118,
+54,46,48,92,49,48,38,34,41,32,40,40,65,32,58,49,49,55,52,32,
+34,48,46,57,46,49,46,48,34,41,32,40,40,65,32,58,49,49,55,53,
+32,40,40,40,95,51,53,32,95,49,54,57,55,41,32,95,49,54,55,48,
+41,32,40,40,66,32,40,40,95,51,53,32,95,49,54,57,55,41,32,40,
+95,49,54,55,51,32,34,77,72,83,68,73,82,34,41,41,41,32,40,40,
+40,67,39,32,66,41,32,40,40,66,32,40,67,32,40,40,40,83,39,32,
+83,41,32,40,40,40,67,39,32,67,41,32,40,40,66,32,40,40,83,39,
+32,67,39,41,32,40,40,95,52,55,50,32,95,49,52,51,41,32,34,45,
+45,118,101,114,115,105,111,110,34,41,41,41,32,40,40,66,32,40,67,32,
+40,40,40,67,39,32,83,39,41,32,40,95,52,51,50,32,40,40,95,50,
+56,52,32,40,40,67,32,40,95,50,50,52,32,95,49,52,51,41,41,32,
+40,40,79,32,35,52,53,41,32,75,41,41,41,32,40,95,52,52,55,32,
+35,49,41,41,41,41,32,95,49,49,50,56,41,41,41,32,40,40,40,67,
+39,32,40,67,39,32,40,67,39,32,80,41,41,41,32,40,40,40,67,39,
+32,40,67,39,32,66,41,41,32,95,49,49,55,54,41,32,40,95,49,48,
+56,52,32,40,40,40,95,49,48,55,53,32,34,99,111,109,109,97,110,100,
+45,108,105,110,101,34,41,32,35,48,41,32,35,48,41,41,41,41,32,40,
+75,50,32,40,95,50,55,32,34,85,115,97,103,101,58,32,109,104,115,32,
+91,45,118,93,32,91,45,108,93,32,91,45,114,93,32,91,45,67,93,32,
+91,45,105,80,65,84,72,93,32,91,45,111,70,73,76,69,93,32,91,77,
+111,100,117,108,101,78,97,109,101,93,34,41,41,41,41,41,41,32,40,40,
+95,50,56,50,32,95,49,55,49,55,41,32,40,40,95,53,48,52,32,34,
+77,105,99,114,111,72,115,44,32,118,101,114,115,105,111,110,32,34,41,32,
+40,40,95,53,48,52,32,95,49,49,55,52,41,32,40,40,95,53,48,52,
+32,34,44,32,99,111,109,98,105,110,97,116,111,114,32,102,105,108,101,32,
+118,101,114,115,105,111,110,32,34,41,32,95,49,49,55,51,41,41,41,41,
+41,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,
+32,40,40,40,67,39,32,83,41,32,40,40,66,32,40,83,32,40,40,40,
+83,39,32,95,55,57,50,41,32,40,40,66,32,95,52,52,57,41,32,40,
+95,52,51,50,32,40,40,67,32,40,95,50,50,51,32,95,49,52,51,41,
+41,32,34,45,118,34,41,41,41,41,32,40,40,95,52,55,50,32,95,49,
+52,51,41,32,34,45,114,34,41,41,41,41,32,40,40,66,32,40,66,32,
+40,95,53,48,51,32,40,40,79,32,35,52,54,41,32,75,41,41,41,41,
+32,40,40,40,67,39,32,66,41,32,40,40,66,32,95,53,48,51,41,32,
+40,40,67,32,95,53,48,52,41,32,34,47,108,105,98,34,41,41,41,32,
+40,40,66,32,95,53,49,55,41,32,40,95,52,51,49,32,40,40,95,52,
+53,54,32,95,49,52,49,41,32,34,45,105,34,41,41,41,41,41,41,41,
+32,40,40,66,32,40,95,50,56,50,32,95,52,54,56,41,41,32,40,40,
+40,67,39,32,95,53,48,52,41,32,40,40,66,32,95,53,49,55,41,32,
+40,95,52,51,49,32,40,40,95,52,53,54,32,95,49,52,49,41,32,34,
+45,111,34,41,41,41,41,32,40,40,79,32,34,111,117,116,46,99,111,109,
+98,34,41,32,75,41,41,41,41,41,32,40,40,95,52,55,50,32,95,49,
+52,51,41,32,34,45,108,34,41,41,41,32,40,40,40,67,39,32,95,49,
+51,49,41,32,40,40,95,52,55,50,32,95,49,52,51,41,32,34,45,67,
+34,41,41,32,95,49,53,54,54,41,41,41,41,41,32,40,95,52,54,52,
+32,40,40,67,32,40,95,50,50,52,32,95,49,52,51,41,41,32,34,45,
+45,34,41,41,41,41,32,40,95,53,49,54,32,40,40,79,32,35,52,54,
+41,32,75,41,41,41,41,41,41,32,40,40,65,32,58,49,49,55,54,32,
+40,40,66,32,40,40,83,39,32,40,83,39,32,40,95,51,53,32,95,49,
+54,57,55,41,41,41,32,40,40,83,32,40,40,40,83,39,32,83,39,41,
+32,95,55,57,56,41,32,40,40,66,32,40,66,32,40,40,95,50,57,56,
+32,95,49,54,57,53,41,32,95,54,54,52,41,41,41,32,40,40,40,67,
+39,32,67,41,32,95,55,57,57,41,32,95,56,49,53,41,41,41,41,32,
+40,40,40,83,39,32,66,41,32,40,40,66,32,40,95,51,53,32,95,49,
+54,57,55,41,41,32,95,56,48,48,41,41,32,40,40,40,83,39,32,40,
+67,39,32,40,67,39,32,40,95,51,53,32,95,49,54,57,55,41,41,41,
+41,32,95,55,57,57,41,32,40,40,66,32,85,41,32,40,40,40,67,39,
+32,66,41,32,40,66,39,32,40,40,66,32,40,95,51,54,32,95,49,54,
+57,55,41,41,32,40,40,40,67,39,32,95,50,56,50,41,32,40,40,66,
+32,40,95,52,56,32,95,49,54,57,55,41,41,32,40,40,40,67,39,32,
+40,95,53,57,53,32,95,51,49,53,41,41,32,95,55,57,51,41,32,35,
+48,41,41,41,32,40,40,95,50,56,50,32,95,49,55,49,55,41,32,40,
+40,95,53,48,52,32,34,83,97,118,105,110,103,32,99,97,99,104,101,32,
+34,41,32,40,40,95,49,56,52,50,32,40,95,52,50,52,32,95,49,53,
+57,41,41,32,95,55,57,49,41,41,41,41,41,41,41,32,40,40,66,32,
+40,40,83,39,32,40,95,51,53,32,95,49,54,57,55,41,41,32,40,40,
+40,67,39,32,95,50,57,50,41,32,95,50,52,41,32,40,40,95,51,55,
+32,95,49,54,57,55,41,32,95,49,53,54,56,41,41,41,41,32,40,40,
+66,32,40,66,32,85,41,41,32,40,40,66,32,40,66,32,40,40,95,51,
+53,32,95,49,54,57,55,41,32,40,40,95,49,55,48,57,32,95,55,57,
+49,41,32,95,49,54,57,50,41,41,41,41,32,40,40,66,32,40,40,67,
+39,32,40,83,39,32,40,95,51,54,32,95,49,54,57,55,41,41,41,32,
+40,67,32,95,49,54,57,57,41,41,41,32,40,40,66,32,40,40,67,39,
+32,40,95,51,54,32,95,49,54,57,55,41,41,32,95,49,55,48,52,41,
+41,32,40,95,51,55,32,95,49,54,57,55,41,41,41,41,41,41,41,41,
+41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,
+40,95,51,53,32,95,49,54,57,55,41,32,95,49,55,50,53,41,41,41,
+41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,66,
+32,40,66,32,40,67,39,32,67,41,41,41,32,40,40,40,67,39,32,40,
+67,39,32,40,83,39,32,40,67,39,32,67,41,41,41,41,32,40,40,40,
+67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,41,41,
+32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,
+67,39,32,83,39,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,
+32,40,66,32,40,66,32,67,41,41,41,41,41,32,40,40,66,32,40,40,
+83,39,32,66,41,32,40,66,39,32,40,66,39,32,40,40,66,32,40,83,
+39,32,66,41,41,32,40,40,66,32,40,66,32,40,95,51,54,32,95,49,
+54,57,55,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,
+95,50,56,50,41,32,40,40,66,32,40,95,52,56,32,95,49,54,57,55,
+41,41,32,40,40,40,67,39,32,40,95,53,57,53,32,95,51,49,53,41,
+41,32,95,55,57,51,41,32,35,48,41,41,41,41,32,40,40,66,32,40,
+95,50,56,50,32,95,49,55,49,55,41,41,32,40,40,66,32,40,95,53,
+48,52,32,34,116,111,112,32,108,101,118,101,108,32,100,101,102,110,115,58,
+32,34,41,41,32,40,95,49,56,52,50,32,95,51,49,54,41,41,41,41,
+41,41,41,41,41,41,32,40,40,66,32,40,40,83,39,32,40,83,39,32,
+66,41,41,32,40,40,66,32,66,39,41,32,40,40,66,32,66,39,41,32,
+40,40,66,32,66,39,41,32,40,40,66,32,40,66,32,40,95,51,54,32,
+95,49,54,57,55,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,
+66,32,95,50,56,50,41,32,40,40,66,32,40,95,52,56,32,95,49,54,
+57,55,41,41,32,40,40,40,67,39,32,40,95,53,57,53,32,95,51,49,
+53,41,41,32,95,55,57,51,41,32,35,49,41,41,41,41,32,40,40,95,
+52,55,32,95,49,54,57,55,41,32,40,85,32,40,40,66,32,40,66,32,
+40,95,50,56,50,32,95,49,55,49,55,41,41,41,32,40,40,40,67,39,
+32,66,41,32,40,40,66,32,95,53,48,52,41,32,95,49,48,56,56,41,
+41,32,40,40,66,32,40,95,53,48,52,32,34,32,61,32,34,41,41,32,
+40,40,67,32,95,56,57,52,41,32,75,41,41,41,41,41,41,41,41,41,
+41,41,41,41,32,40,40,40,67,39,32,67,41,32,40,40,66,32,40,40,
+83,39,32,83,39,41,32,40,40,66,32,67,39,41,32,40,40,66,32,83,
+39,41,32,40,40,66,32,67,39,41,32,40,40,66,32,67,39,41,32,95,
+55,57,52,41,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,
+66,41,41,32,40,40,66,32,40,66,32,40,67,39,32,66,41,41,41,32,
+40,40,66,32,40,66,32,66,39,41,41,32,40,40,66,32,40,66,32,66,
+39,41,41,32,40,40,66,32,40,66,32,40,66,32,40,40,83,39,32,40,
+95,51,54,32,95,49,54,57,55,41,41,32,40,40,40,67,39,32,95,50,
+57,50,41,32,95,52,52,57,41,32,40,40,95,51,55,32,95,49,54,57,
+55,41,32,95,49,53,54,56,41,41,41,41,41,41,32,40,40,66,32,40,
+66,32,40,66,32,40,66,32,40,40,95,51,53,32,95,49,54,57,55,41,
+32,95,49,55,50,53,41,41,41,41,41,32,40,40,66,32,40,40,83,39,
+32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,40,67,39,32,
+40,95,51,54,32,95,49,54,57,55,41,41,41,41,32,40,40,40,67,39,
+32,66,41,32,40,66,39,32,40,40,66,32,95,50,56,50,41,32,40,40,
+66,32,40,95,52,56,32,95,49,54,57,55,41,41,32,40,40,40,67,39,
+32,40,95,53,57,53,32,95,51,49,53,41,41,32,95,55,57,51,41,32,
+35,48,41,41,41,41,41,32,40,40,66,32,40,66,32,40,95,50,56,50,
+32,95,49,55,49,55,41,41,41,32,40,40,66,32,40,66,32,40,95,53,
+48,52,32,34,102,105,110,97,108,32,112,97,115,115,32,32,32,32,32,32,
+32,32,32,32,32,32,34,41,41,41,32,40,40,40,67,39,32,40,67,39,
+32,95,53,48,52,41,41,32,40,40,66,32,40,66,32,40,95,49,56,54,
+50,32,35,54,41,41,41,32,40,40,66,32,40,66,32,40,95,49,56,52,
+50,32,95,51,49,54,41,41,41,32,40,67,32,40,95,53,55,54,32,95,
+51,49,48,41,41,41,41,41,32,34,109,115,34,41,41,41,41,41,41,41,
+32,40,40,40,67,39,32,40,83,39,32,67,41,41,32,40,40,40,67,39,
+32,40,67,39,32,40,83,39,32,83,41,41,41,32,40,40,66,32,40,66,
+32,40,66,32,40,83,32,40,40,95,52,54,48,32,95,49,52,49,41,32,
+34,46,99,111,109,98,34,41,41,41,41,41,32,40,40,40,67,39,32,40,
+67,39,32,40,83,39,32,83,41,41,41,32,40,40,66,32,40,66,32,40,
+66,32,40,83,32,40,40,95,52,54,48,32,95,49,52,49,41,32,34,46,
+99,34,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,
+32,40,40,95,51,53,32,95,49,54,57,55,41,32,40,95,49,55,50,57,
+32,34,109,104,115,99,46,99,34,41,41,41,41,41,41,32,40,40,66,32,
+40,66,32,40,66,32,40,66,32,85,41,41,41,41,32,40,40,66,32,40,
+66,32,40,40,67,39,32,66,41,32,40,66,39,32,40,40,66,32,40,83,
+39,32,40,95,51,54,32,95,49,54,57,55,41,41,41,32,40,40,66,32,
+40,40,67,39,32,95,50,56,50,41,32,95,49,55,49,54,41,41,32,95,
+49,49,55,57,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,
+32,40,66,32,40,40,67,39,32,40,95,51,54,32,95,49,54,57,55,41,
+41,32,95,49,55,48,52,41,41,41,41,41,32,40,40,66,32,40,66,32,
+40,66,32,40,66,32,40,40,95,51,53,32,95,49,54,57,55,41,32,95,
+49,55,50,53,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
+40,66,32,40,66,32,40,40,95,51,53,32,95,49,54,57,55,41,32,40,
+95,49,54,55,51,32,34,77,72,83,67,67,34,41,41,41,41,41,41,41,
+32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
+40,40,95,51,53,32,95,49,54,57,55,41,32,40,40,40,95,50,57,56,
+32,95,49,54,57,53,41,32,40,95,53,49,54,32,34,99,99,34,41,41,
+32,40,95,49,54,55,51,32,34,67,67,34,41,41,41,41,41,41,41,41,
+41,32,40,40,66,32,40,40,67,39,32,66,41,32,40,40,66,32,40,83,
+39,32,40,67,39,32,66,41,41,41,32,40,40,66,32,40,66,32,66,39,
+41,41,32,40,40,40,83,39,32,66,41,32,40,66,39,32,40,40,66,32,
+40,83,39,32,40,95,51,54,32,95,49,54,57,55,41,41,41,32,40,40,
+40,67,39,32,66,41,32,40,40,66,32,95,50,56,50,41,32,40,40,66,
+32,40,95,52,56,32,95,49,54,57,55,41,41,32,40,40,40,67,39,32,
+40,95,53,57,53,32,95,51,49,53,41,41,32,95,55,57,51,41,32,35,
+48,41,41,41,41,32,40,40,66,32,40,95,50,56,50,32,95,49,55,49,
+55,41,41,32,40,40,66,32,40,95,53,48,52,32,34,69,120,101,99,117,
+116,101,58,32,34,41,41,32,40,95,49,56,52,50,32,40,95,52,50,52,
+32,95,49,53,57,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,
+32,40,66,32,40,40,67,39,32,40,95,51,54,32,95,49,54,57,55,41,
+41,32,95,49,55,52,51,41,41,41,41,32,40,40,66,32,40,40,67,39,
+32,66,41,32,40,40,66,32,40,95,51,54,32,95,49,54,57,55,41,41,
+32,95,49,54,54,56,41,41,41,32,40,40,66,32,40,66,32,40,40,95,
+51,53,32,95,49,54,57,55,41,32,95,49,55,50,53,41,41,41,32,40,
+40,40,67,39,32,66,41,32,40,66,39,32,40,40,66,32,95,50,56,50,
+41,32,40,40,66,32,40,95,52,56,32,95,49,54,57,55,41,41,32,40,
+40,40,67,39,32,40,95,53,57,53,32,95,51,49,53,41,41,32,95,55,
+57,51,41,32,35,48,41,41,41,41,41,32,40,40,66,32,40,66,32,40,
+95,50,56,50,32,95,49,55,49,55,41,41,41,32,40,40,66,32,40,66,
+32,40,95,53,48,52,32,34,67,32,99,111,109,112,105,108,97,116,105,111,
+110,32,32,32,32,32,32,32,32,32,34,41,41,41,32,40,40,40,67,39,
+32,40,67,39,32,95,53,48,52,41,41,32,40,40,66,32,40,66,32,40,
+95,49,56,54,50,32,35,54,41,41,41,32,40,40,66,32,40,66,32,40,
+95,49,56,52,50,32,95,51,49,54,41,41,41,32,40,67,32,40,95,53,
+55,54,32,95,51,49,48,41,41,41,41,41,32,34,109,115,34,41,41,41,
+41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,40,67,
+39,32,66,41,32,40,66,39,32,40,40,66,32,95,50,56,50,41,32,40,
+40,95,53,48,49,32,95,49,52,49,41,32,34,36,73,78,34,41,41,41,
+41,41,41,32,40,40,66,32,40,40,67,39,32,66,41,32,40,66,39,32,
+40,40,95,53,48,49,32,95,49,52,49,41,32,34,36,79,85,84,34,41,
+41,41,41,32,40,40,66,32,40,67,39,32,95,53,49,54,41,41,32,40,
+40,66,32,40,67,32,95,53,48,52,41,41,32,40,40,66,32,40,95,53,
+48,52,32,34,32,45,119,32,45,87,97,108,108,32,45,79,51,32,34,41,
+41,32,40,40,67,32,95,53,48,52,41,32,40,40,95,53,48,52,32,34,
+47,115,114,99,47,114,117,110,116,105,109,101,47,101,118,97,108,45,34,41,
+32,40,40,95,53,48,52,32,40,40,95,53,48,52,32,34,117,110,105,120,
+45,34,41,32,40,40,95,49,56,52,50,32,95,51,49,54,41,32,95,49,
+54,52,57,41,41,41,32,40,40,95,53,48,52,32,34,46,99,32,34,41,
+32,34,32,36,73,78,32,45,108,109,32,45,111,32,36,79,85,84,34,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,
+40,66,32,40,40,67,39,32,95,50,56,50,41,32,95,49,55,49,57,41,
+41,32,95,49,49,55,57,41,41,41,41,32,40,67,32,95,49,55,49,57,
+41,41,41,32,95,55,57,54,41,41,41,41,41,41,41,41,32,40,40,66,
+32,40,66,32,40,66,32,40,66,32,40,95,53,48,52,32,95,49,49,55,
+51,41,41,41,41,41,32,40,40,66,32,40,66,32,40,40,67,39,32,66,
+41,32,40,40,66,32,95,53,48,52,41,32,40,95,49,56,52,50,32,95,
+51,49,54,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,
+95,53,48,52,32,40,40,79,32,35,49,48,41,32,75,41,41,41,41,41,
+32,40,40,40,67,39,32,40,67,39,32,67,41,41,32,40,40,66,32,40,
+40,67,39,32,67,41,32,40,40,66,32,40,40,83,39,32,95,52,51,51,
+41,32,40,40,66,32,40,67,32,66,41,41,32,40,40,66,32,40,66,32,
+40,67,32,66,41,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,
+40,66,32,40,66,32,40,40,67,39,32,66,41,32,40,40,66,32,95,50,
+56,52,41,32,40,40,66,32,95,53,48,52,41,32,40,40,66,32,40,95,
+53,48,52,32,34,40,40,65,32,58,34,41,41,32,40,40,40,67,39,32,
+95,53,48,52,41,32,40,95,49,56,52,50,32,95,51,49,54,41,41,32,
+40,40,79,32,35,51,50,41,32,75,41,41,41,41,41,41,41,41,32,40,
+40,40,67,39,32,66,41,32,40,40,66,32,40,67,39,32,95,50,56,52,
+41,41,32,40,40,66,32,40,66,32,95,56,57,52,41,41,32,40,40,66,
+32,89,41,32,40,40,40,67,39,32,40,67,39,32,83,41,41,32,40,40,
+40,67,39,32,40,67,39,32,83,41,41,32,40,40,40,67,39,32,66,41,
+32,80,41,32,40,40,40,83,39,32,40,67,39,32,66,41,41,32,40,66,
+32,95,56,56,48,41,41,32,73,41,41,41,32,40,90,32,75,41,41,41,
+32,75,41,41,41,41,41,32,40,40,66,32,40,95,50,56,52,32,40,95,
+53,48,52,32,34,41,32,34,41,41,41,32,40,40,67,32,95,50,56,52,
+41,32,40,95,53,48,52,32,40,40,79,32,35,52,49,41,32,75,41,41,
+41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,95,56,57,
+52,41,41,32,85,41,41,41,41,32,40,40,67,32,95,52,53,48,41,32,
+40,40,95,50,48,53,32,95,50,49,57,41,32,40,40,95,53,56,49,32,
+95,51,49,48,41,32,40,95,51,57,50,32,35,48,41,41,41,41,41,41,
+32,75,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,95,49,50,
+57,51,41,41,32,40,67,32,80,41,41,41,41,41,41,41,32,40,40,66,
+32,40,40,83,39,32,95,50,56,50,41,32,40,40,66,32,95,53,49,54,
+41,32,40,40,66,32,40,95,50,56,50,32,95,50,55,41,41,32,40,40,
+66,32,40,95,53,48,52,32,34,109,97,105,110,58,32,102,105,110,100,73,
+100,101,110,116,58,32,34,41,41,32,95,49,48,56,56,41,41,41,41,41,
+32,40,67,32,95,49,49,49,52,41,41,41,41,32,95,49,49,49,50,41,
+41,32,40,40,66,32,95,49,49,49,48,41,32,40,40,66,32,40,95,52,
+51,48,32,40,85,32,40,40,67,32,66,41,32,40,40,66,32,90,41,32,
+40,40,40,67,39,32,40,67,39,32,79,41,41,32,40,40,66,32,40,67,
+32,80,41,41,32,40,40,66,32,40,95,50,56,50,32,95,56,55,57,41,
+41,32,40,40,66,32,40,95,50,56,50,32,95,49,48,56,51,41,41,32,
+40,40,66,32,40,95,53,48,52,32,40,40,79,32,35,57,53,41,32,75,
+41,41,41,32,40,95,49,56,52,50,32,95,51,49,54,41,41,41,41,41,
+41,32,75,41,41,41,41,41,41,32,40,40,67,32,95,52,53,48,41,32,
+40,40,95,50,48,53,32,95,50,49,57,41,32,35,48,41,41,41,41,41,
+41,41,32,40,40,67,32,40,95,49,48,57,49,32,95,55,54,48,41,41,
+32,40,95,49,48,56,51,32,34,109,97,105,110,34,41,41,41,41,41,41,
+32,40,40,65,32,58,49,49,55,55,32,40,40,66,32,89,41,32,40,40,
+66,32,40,66,32,40,83,32,40,85,32,95,53,48,50,41,41,41,41,32,
+40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,90,41,
+41,32,40,40,66,32,40,40,67,39,32,66,41,32,40,40,66,32,40,40,
+83,39,32,95,53,48,51,41,32,40,85,32,75,41,41,41,32,40,40,67,
+32,66,41,32,40,85,32,65,41,41,41,41,41,32,95,52,54,50,41,41,
+41,41,41,41,32,40,40,65,32,58,49,49,55,56,32,40,95,52,51,48,
+32,40,40,40,67,39,32,95,53,48,52,41,32,40,40,66,32,40,95,49,
+56,52,50,32,95,51,49,54,41,41,32,95,49,52,55,41,41,32,40,40,
+79,32,35,52,52,41,32,75,41,41,41,41,32,40,40,65,32,58,49,49,
+55,57,32,40,40,66,32,40,95,50,56,50,32,95,49,56,53,57,41,41,
+32,40,40,66,32,40,95,53,48,52,32,40,40,79,32,34,115,116,97,116,
+105,99,32,117,110,115,105,103,110,101,100,32,99,104,97,114,32,100,97,116,
+97,91,93,32,61,32,123,34,41,32,75,41,41,41,32,40,40,40,83,39,
+32,95,53,48,52,41,32,40,40,66,32,40,95,52,51,49,32,95,49,49,
+55,56,41,41,32,40,95,49,49,55,55,32,35,50,48,41,41,41,32,40,
+40,66,32,40,79,32,34,125,59,34,41,41,32,40,40,66,32,40,79,32,
+34,117,110,115,105,103,110,101,100,32,99,104,97,114,32,42,99,111,109,98,
+101,120,112,114,32,61,32,100,97,116,97,59,34,41,41,32,40,40,40,67,
+39,32,79,41,32,40,40,66,32,40,95,53,48,52,32,34,105,110,116,32,
+99,111,109,98,101,120,112,114,108,101,110,32,61,32,34,41,41,32,40,40,
+40,67,39,32,95,53,48,52,41,32,40,40,66,32,40,95,49,56,52,50,
+32,95,51,49,54,41,41,32,95,52,52,57,41,41,32,40,40,79,32,35,
+53,57,41,32,75,41,41,41,41,32,75,41,41,41,41,41,41,41,32,40,
+40,65,32,58,49,49,56,48,32,95,49,55,53,55,41,32,40,40,65,32,
+58,49,49,56,49,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,
+67,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,67,
+41,41,41,32,95,49,49,56,50,41,32,95,50,55,41,41,32,73,41,41,
+32,40,40,65,32,58,49,49,56,50,32,40,40,40,67,39,32,40,67,39,
+32,40,67,39,32,66,41,41,41,32,40,40,66,32,40,40,67,39,32,40,
+67,39,32,67,41,41,32,40,40,40,67,39,32,40,83,39,32,83,41,41,
+32,40,67,32,95,49,55,54,53,41,41,32,40,40,66,32,40,66,32,40,
+66,32,40,95,50,56,50,32,95,49,57,50,41,41,41,41,32,95,49,50,
+55,55,41,41,41,41,32,40,40,66,32,40,83,32,40,40,67,32,83,41,
+32,40,40,66,32,40,67,32,66,41,41,32,40,40,66,32,40,66,32,90,
+41,41,32,40,40,66,32,40,67,32,40,40,67,32,67,39,41,32,95,49,
+57,51,41,41,41,32,40,90,32,75,41,41,41,41,41,41,41,32,40,40,
+66,32,40,66,32,40,95,50,56,50,32,95,49,57,50,41,41,41,32,40,
+40,66,32,40,66,32,40,95,53,48,52,32,34,65,109,98,105,103,117,111,
+117,115,58,34,41,41,41,32,40,40,66,32,40,66,32,95,49,56,53,57,
+41,41,32,40,40,66,32,95,52,51,49,41,32,40,40,40,67,39,32,95,
+50,56,52,41,32,95,49,56,52,50,41,32,95,54,54,52,41,41,41,41,
+41,41,41,41,32,95,49,49,53,56,41,41,32,40,40,65,32,58,49,49,
+56,51,32,40,40,40,95,51,53,32,95,49,55,53,52,41,32,95,49,55,
+55,50,41,32,40,40,66,32,40,95,49,52,32,95,49,55,53,51,41,41,
+32,40,40,66,32,95,49,49,55,48,41,32,40,40,67,32,79,41,32,75,
+41,41,41,41,41,32,40,40,65,32,58,49,49,56,52,32,40,40,40,95,
+49,55,32,95,49,55,53,51,41,32,95,49,49,56,54,41,32,95,49,55,
+54,57,41,41,32,40,40,65,32,58,49,49,56,53,32,40,40,40,95,49,
+55,32,95,49,55,53,51,41,32,95,49,50,53,53,41,32,95,49,55,54,
+57,41,41,32,40,40,65,32,58,49,49,56,54,32,40,40,40,95,49,53,
+32,95,49,55,53,51,41,32,40,40,40,95,49,53,32,95,49,55,53,51,
+41,32,40,40,40,95,50,57,56,32,95,49,55,53,50,41,32,95,56,57,
+55,41,32,40,40,40,95,49,54,32,95,49,55,53,51,41,32,40,95,49,
+50,50,48,32,34,109,111,100,117,108,101,34,41,41,32,95,49,49,57,50,
+41,41,41,32,40,40,40,95,49,55,32,95,49,55,53,51,41,32,40,40,
+40,95,49,54,32,95,49,55,53,51,41,32,40,95,49,49,57,56,32,35,
+52,48,41,41,32,40,40,95,49,55,55,55,32,95,49,50,49,57,41,32,
+40,95,49,49,57,56,32,35,52,52,41,41,41,41,32,40,95,49,49,57,
+56,32,35,52,49,41,41,41,41,32,40,40,40,95,49,54,32,95,49,55,
+53,51,41,32,40,95,49,50,50,48,32,34,119,104,101,114,101,34,41,41,
+32,40,95,49,50,50,49,32,95,49,50,50,50,41,41,41,41,32,40,40,
+65,32,58,49,49,56,55,32,40,40,40,95,51,53,32,95,49,55,53,52,
+41,32,95,49,49,56,48,41,32,40,40,66,32,40,95,49,55,54,56,32,
+34,81,73,100,101,110,116,34,41,41,32,40,40,66,32,85,41,32,40,40,
+66,32,40,40,67,39,32,66,41,32,40,40,67,32,40,40,67,32,61,61,
+41,32,35,48,41,41,32,95,53,50,49,41,41,41,32,40,40,66,32,85,
+41,32,40,40,66,32,40,66,32,40,66,32,40,83,32,40,40,40,67,39,
+32,95,49,50,55,53,41,32,95,52,54,56,41,32,95,53,50,49,41,41,
+41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,95,53,50,
+50,41,41,41,41,32,95,49,50,55,54,41,41,41,41,41,41,41,41,32,
+40,40,65,32,58,49,49,56,56,32,40,40,40,95,51,53,32,95,49,55,
+53,52,41,32,95,49,49,56,48,41,32,40,40,66,32,40,95,49,55,54,
+56,32,34,85,73,100,101,110,116,34,41,41,32,40,40,66,32,85,41,32,
+40,40,66,32,40,40,67,39,32,66,41,32,40,40,67,32,40,40,67,32,
+61,61,41,32,35,48,41,41,32,95,53,50,49,41,41,41,32,40,40,66,
+32,85,41,32,40,40,40,67,39,32,40,67,39,32,67,41,41,32,40,40,
+66,32,40,66,32,40,67,32,67,39,41,41,41,32,40,40,66,32,40,66,
+32,40,83,32,40,40,40,67,39,32,95,49,52,57,41,32,95,52,54,56,
+41,32,95,53,50,49,41,41,41,41,32,40,40,66,32,40,66,32,40,66,
+32,95,53,50,50,41,41,41,32,95,49,48,56,53,41,41,41,41,32,40,
+75,50,32,95,53,50,49,41,41,41,41,41,41,41,41,32,40,40,65,32,
+58,49,49,56,57,32,40,40,95,49,55,54,48,32,95,49,49,56,56,41,
+32,95,49,49,57,49,41,41,32,40,40,65,32,58,49,49,57,48,32,40,
+40,95,49,55,54,48,32,95,49,49,56,57,41,32,40,95,49,50,49,53,
+32,95,49,50,48,54,41,41,41,32,40,40,65,32,58,49,49,57,49,32,
+40,40,40,95,51,53,32,95,49,55,53,52,41,32,95,49,49,56,48,41,
+32,40,40,66,32,40,40,95,51,53,32,95,49,55,53,52,41,32,95,49,
+49,56,51,41,41,32,40,40,66,32,40,66,32,40,40,40,83,39,32,95,
+49,55,54,48,41,32,40,40,40,83,39,32,95,49,55,54,48,41,32,40,
+40,40,67,39,32,40,95,50,57,56,32,95,49,55,53,50,41,41,32,40,
+40,67,32,95,50,56,52,41,32,40,95,52,51,49,32,40,95,50,56,54,
+32,35,52,52,41,41,41,41,32,40,40,40,95,49,55,32,95,49,55,53,
+51,41,32,40,40,40,95,49,54,32,95,49,55,53,51,41,32,40,95,49,
+49,57,56,32,35,52,48,41,41,32,40,95,49,55,54,51,32,40,95,49,
+49,57,56,32,35,52,52,41,41,41,41,32,40,95,49,49,57,56,32,35,
+52,49,41,41,41,41,32,40,40,40,67,39,32,40,95,50,57,53,32,95,
+49,55,53,50,41,41,32,40,85,32,34,40,41,34,41,41,32,40,40,40,
+95,49,54,32,95,49,55,53,51,41,32,40,95,49,49,57,56,32,35,52,
+48,41,41,32,40,95,49,49,57,56,32,35,52,49,41,41,41,41,41,32,
+40,40,40,67,39,32,40,95,50,57,53,32,95,49,55,53,50,41,41,32,
+40,85,32,34,91,93,34,41,41,32,40,40,40,95,49,54,32,95,49,55,
+53,51,41,32,40,95,49,49,57,56,32,35,57,49,41,41,32,40,95,49,
+49,57,56,32,35,57,51,41,41,41,41,41,41,32,95,49,48,56,53,41,
+41,41,41,32,40,40,65,32,58,49,49,57,50,32,40,40,40,95,51,53,
+32,95,49,55,53,52,41,32,95,49,49,56,48,41,32,40,40,66,32,40,
+95,49,55,54,56,32,34,85,81,73,100,101,110,116,34,41,41,32,40,40,
+66,32,85,41,32,40,40,66,32,40,40,67,39,32,66,41,32,40,40,67,
+32,40,40,67,32,61,61,41,32,35,48,41,41,32,95,53,50,49,41,41,
+41,32,40,40,66,32,85,41,32,40,40,66,32,40,66,32,40,66,32,40,
+83,32,40,40,40,67,39,32,95,49,52,57,41,32,95,52,54,56,41,32,
+95,53,50,49,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
+40,66,32,95,53,50,50,41,41,41,41,32,95,49,50,55,54,41,41,41,
+41,41,41,41,41,32,40,40,65,32,58,49,49,57,51,32,40,40,95,49,
+55,54,48,32,95,49,49,57,50,41,32,95,49,49,57,49,41,41,32,40,
+40,65,32,58,49,49,57,52,32,40,40,40,95,51,53,32,95,49,55,53,
+52,41,32,95,49,49,56,48,41,32,40,40,66,32,40,95,49,55,54,56,
+32,34,76,73,100,101,110,116,34,41,41,32,40,40,66,32,85,41,32,40,
+40,66,32,40,40,67,39,32,66,41,32,40,40,67,32,40,40,67,32,61,
+61,41,32,35,48,41,41,32,95,53,50,49,41,41,41,32,40,40,66,32,
+85,41,32,40,40,40,67,39,32,40,67,39,32,67,41,41,32,40,40,66,
+32,40,66,32,40,67,32,67,39,41,41,41,32,40,40,66,32,40,66,32,
+40,83,32,40,40,67,32,40,40,40,83,39,32,95,49,51,49,41,32,40,
+40,66,32,95,49,48,57,56,41,32,95,52,54,56,41,41,32,40,40,66,
+32,95,49,51,50,41,32,40,40,67,32,40,95,52,55,50,32,95,49,52,
+51,41,41,32,95,49,49,57,55,41,41,41,41,32,95,53,50,49,41,41,
+41,41,32,40,40,66,32,40,66,32,40,66,32,95,53,50,50,41,41,41,
+32,95,49,48,56,53,41,41,41,41,32,40,75,50,32,95,53,50,49,41,
+41,41,41,41,41,41,41,32,40,40,65,32,58,49,49,57,53,32,40,40,
+40,95,51,53,32,95,49,55,53,52,41,32,95,49,49,56,48,41,32,40,
+40,66,32,40,95,49,55,54,56,32,34,76,81,73,100,101,110,116,34,41,
+41,32,40,40,66,32,85,41,32,40,40,66,32,40,40,67,39,32,66,41,
+32,40,40,67,32,40,40,67,32,61,61,41,32,35,48,41,41,32,95,53,
+50,49,41,41,41,32,40,40,66,32,85,41,32,40,40,66,32,40,66,32,
+40,66,32,40,83,32,40,40,67,32,40,40,40,83,39,32,95,49,51,49,
+41,32,40,40,66,32,95,49,48,57,56,41,32,95,52,54,56,41,41,32,
+40,40,66,32,95,49,51,50,41,32,40,40,67,32,40,95,52,55,50,32,
+95,49,52,51,41,41,32,95,49,49,57,55,41,41,41,41,32,95,53,50,
+49,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,
+95,53,50,50,41,41,41,41,32,95,49,50,55,54,41,41,41,41,41,41,
+41,41,32,40,40,65,32,58,49,49,57,54,32,40,40,95,49,55,54,48,
+32,95,49,49,56,57,41,32,40,95,49,50,49,53,32,95,49,50,48,51,
+41,41,41,32,40,40,65,32,58,49,49,57,55,32,40,40,79,32,34,99,
+97,115,101,34,41,32,40,40,79,32,34,99,108,97,115,115,34,41,32,40,
+40,79,32,34,100,97,116,97,34,41,32,40,40,79,32,34,100,101,102,97,
+117,108,116,34,41,32,40,40,79,32,34,100,101,114,105,118,105,110,103,34,
+41,32,40,40,79,32,34,100,111,34,41,32,40,40,79,32,34,101,108,115,
+101,34,41,32,40,40,79,32,34,102,111,114,97,108,108,34,41,32,40,40,
+79,32,34,102,111,114,101,105,103,110,34,41,32,40,40,79,32,34,105,102,
+34,41,32,40,40,79,32,34,105,109,112,111,114,116,34,41,32,40,40,79,
+32,34,105,110,34,41,32,40,40,79,32,34,105,110,102,105,120,34,41,32,
+40,40,79,32,34,105,110,102,105,120,108,34,41,32,40,40,79,32,34,105,
+110,102,105,120,114,34,41,32,40,40,79,32,34,105,110,115,116,97,110,99,
+101,34,41,32,40,40,79,32,34,108,101,116,34,41,32,40,40,79,32,34,
+109,111,100,117,108,101,34,41,32,40,40,79,32,34,110,101,119,116,121,112,
+101,34,41,32,40,40,79,32,34,111,102,34,41,32,40,40,79,32,34,112,
+114,105,109,105,116,105,118,101,34,41,32,40,40,79,32,34,116,104,101,110,
+34,41,32,40,40,79,32,34,116,121,112,101,34,41,32,40,40,79,32,34,
+119,104,101,114,101,34,41,32,75,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,
+49,49,57,56,32,40,40,66,32,40,40,95,50,57,53,32,95,49,55,53,
+50,41,32,95,49,53,54,56,41,41,32,40,40,40,83,39,32,95,49,55,
+54,55,41,32,40,40,67,32,79,41,32,75,41,41,32,40,40,66,32,85,
+41,32,40,40,66,32,40,40,67,39,32,66,41,32,40,40,67,32,40,40,
+67,32,61,61,41,32,35,53,41,41,32,95,49,51,52,41,41,41,32,40,
+40,66,32,85,41,32,40,90,32,40,95,50,50,51,32,95,49,52,49,41,
+41,41,41,41,41,41,41,32,40,40,65,32,58,49,49,57,57,32,40,40,
+66,32,40,40,95,50,57,53,32,95,49,55,53,50,41,32,95,49,53,54,
+56,41,41,32,40,40,83,32,95,49,55,54,55,41,32,40,40,66,32,85,
+41,32,40,40,66,32,40,40,67,39,32,66,41,32,40,40,67,32,40,40,
+67,32,61,61,41,32,35,48,41,41,32,95,49,51,52,41,41,41,32,40,
+40,66,32,85,41,32,40,90,32,40,40,40,67,39,32,67,41,32,40,40,
+66,32,40,67,32,67,39,41,41,32,40,67,32,40,95,50,50,51,32,95,
+49,52,51,41,41,41,41,32,40,75,50,32,95,49,51,52,41,41,41,41,
+41,41,41,41,41,32,40,40,65,32,58,49,50,48,48,32,40,40,95,49,
+55,54,48,32,95,49,50,48,50,41,32,40,40,40,95,49,55,32,95,49,
+55,53,51,41,32,40,40,40,95,49,54,32,95,49,55,53,51,41,32,40,
+95,49,49,57,56,32,35,57,54,41,41,32,95,49,49,56,55,41,41,32,
+40,95,49,49,57,56,32,35,57,54,41,41,41,41,32,40,40,65,32,58,
+49,50,48,49,32,40,40,95,49,55,54,48,32,95,49,50,48,52,41,32,
+40,40,40,95,49,55,32,95,49,55,53,51,41,32,40,40,40,95,49,54,
+32,95,49,55,53,51,41,32,40,95,49,49,57,56,32,35,57,54,41,41,
+32,95,49,49,57,51,41,41,32,40,95,49,49,57,56,32,35,57,54,41,
+41,41,41,32,40,40,65,32,58,49,50,48,50,32,40,40,40,95,51,53,
+32,95,49,55,53,52,41,32,95,49,49,56,48,41,32,40,40,66,32,40,
+95,49,55,54,56,32,34,81,83,121,109,79,112,101,114,34,41,41,32,40,
+40,66,32,85,41,32,40,40,66,32,40,40,67,39,32,66,41,32,40,40,
+67,32,40,40,67,32,61,61,41,32,35,48,41,41,32,95,53,50,49,41,
+41,41,32,40,40,66,32,85,41,32,40,40,66,32,40,66,32,40,66,32,
+40,83,32,40,40,67,32,40,40,40,83,39,32,95,49,51,49,41,32,40,
+40,66,32,95,49,51,50,41,32,40,40,66,32,95,49,50,55,53,41,32,
+95,52,54,56,41,41,41,32,40,40,66,32,95,49,51,50,41,32,40,40,
+67,32,40,95,52,55,50,32,95,49,52,51,41,41,32,95,49,50,49,49,
+41,41,41,41,32,95,53,50,49,41,41,41,41,41,32,40,40,66,32,40,
+66,32,40,66,32,40,66,32,95,53,50,50,41,41,41,41,32,95,49,50,
+55,54,41,41,41,41,41,41,41,41,32,40,40,65,32,58,49,50,48,51,
+32,40,40,40,95,51,53,32,95,49,55,53,52,41,32,95,49,49,56,48,
+41,32,40,40,66,32,40,95,49,55,54,56,32,34,83,121,109,79,112,101,
+114,34,41,41,32,40,40,66,32,85,41,32,40,40,66,32,40,40,67,39,
+32,66,41,32,40,40,67,32,40,40,67,32,61,61,41,32,35,48,41,41,
+32,95,53,50,49,41,41,41,32,40,40,66,32,85,41,32,40,40,40,67,
+39,32,40,67,39,32,67,41,41,32,40,40,66,32,40,66,32,40,67,32,
+67,39,41,41,41,32,40,40,66,32,40,66,32,40,83,32,40,40,67,32,
+40,40,40,83,39,32,95,49,51,49,41,32,40,40,66,32,95,49,51,50,
+41,32,40,40,66,32,95,49,50,55,53,41,32,95,52,54,56,41,41,41,
+32,40,40,66,32,95,49,51,50,41,32,40,40,67,32,40,95,52,55,50,
+32,95,49,52,51,41,41,32,95,49,50,49,49,41,41,41,41,32,95,53,
+50,49,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,95,53,50,
+50,41,41,41,32,95,49,48,56,53,41,41,41,41,32,40,75,50,32,95,
+53,50,49,41,41,41,41,41,41,41,41,32,40,40,65,32,58,49,50,48,
+52,32,40,40,40,95,51,53,32,95,49,55,53,52,41,32,95,49,50,48,
+50,41,32,40,40,40,83,39,32,40,95,51,54,32,95,49,55,53,52,41,
+41,32,40,40,66,32,40,95,49,48,32,95,49,55,53,54,41,41,32,95,
+49,50,48,53,41,41,32,40,95,49,52,32,95,49,55,53,51,41,41,41,
+41,32,40,40,65,32,58,49,50,48,53,32,40,40,95,50,56,52,32,40,
+40,67,32,40,95,50,50,51,32,95,49,52,49,41,41,32,35,53,56,41,
+41,32,40,40,95,50,56,52,32,95,52,54,56,41,32,95,49,48,56,54,
+41,41,41,32,40,40,65,32,58,49,50,48,54,32,40,40,40,95,51,53,
+32,95,49,55,53,52,41,32,95,49,50,48,51,41,32,40,40,40,83,39,
+32,40,95,51,54,32,95,49,55,53,52,41,41,32,40,40,66,32,40,95,
+49,48,32,95,49,55,53,54,41,41,32,95,49,50,48,53,41,41,32,40,
+95,49,52,32,95,49,55,53,51,41,41,41,41,32,40,40,65,32,58,49,
+50,48,55,32,40,40,40,95,51,53,32,95,49,55,53,52,41,32,95,49,
+50,48,50,41,32,40,40,40,83,39,32,40,95,51,54,32,95,49,55,53,
+52,41,41,32,40,40,66,32,40,95,49,48,32,95,49,55,53,54,41,41,
+32,40,40,66,32,95,49,51,50,41,32,95,49,50,48,53,41,41,41,32,
+40,95,49,52,32,95,49,55,53,51,41,41,41,41,32,40,40,65,32,58,
+49,50,48,56,32,40,40,95,49,55,54,48,32,95,49,50,48,55,41,32,
+95,49,50,48,57,41,41,32,40,40,65,32,58,49,50,48,57,32,40,40,
+40,95,51,53,32,95,49,55,53,52,41,32,95,49,49,56,48,41,32,40,
+40,66,32,40,95,49,55,54,56,32,34,45,62,34,41,41,32,40,40,66,
+32,85,41,32,40,40,66,32,40,40,67,39,32,66,41,32,40,40,67,32,
+40,40,67,32,61,61,41,32,35,48,41,41,32,95,53,50,49,41,41,41,
+32,40,40,66,32,85,41,32,40,40,66,32,40,66,32,40,66,32,40,83,
+32,40,40,67,32,40,40,95,50,50,51,32,95,49,52,51,41,32,34,45,
+62,34,41,41,32,95,53,50,49,41,41,41,41,41,32,40,40,66,32,40,
+66,32,40,66,32,40,66,32,95,53,50,50,41,41,41,41,32,95,49,50,
+55,54,41,41,41,41,41,41,41,41,32,40,40,65,32,58,49,50,49,48,
+32,40,40,40,95,51,53,32,95,49,55,53,52,41,32,95,49,50,48,51,
+41,32,40,40,40,83,39,32,40,95,51,54,32,95,49,55,53,52,41,41,
+32,40,40,66,32,40,95,49,48,32,95,49,55,53,54,41,41,32,40,40,
+66,32,95,49,51,50,41,32,95,49,50,48,53,41,41,41,32,40,95,49,
+52,32,95,49,55,53,51,41,41,41,41,32,40,40,65,32,58,49,50,49,
+49,32,40,40,79,32,40,40,79,32,35,54,49,41,32,75,41,41,32,40,
+40,79,32,40,40,79,32,35,49,50,52,41,32,75,41,41,32,40,40,79,
+32,34,58,58,34,41,32,40,40,79,32,34,60,45,34,41,32,40,40,79,
+32,40,40,79,32,35,54,52,41,32,75,41,41,32,40,40,79,32,34,46,
+46,34,41,32,40,40,79,32,34,45,62,34,41,32,75,41,41,41,41,41,
+41,41,41,32,40,40,65,32,58,49,50,49,50,32,40,40,95,49,55,54,
+48,32,95,49,49,57,51,41,32,40,95,49,50,49,53,32,95,49,50,48,
+52,41,41,41,32,40,40,65,32,58,49,50,49,51,32,40,40,95,49,55,
+54,48,32,95,49,49,57,53,41,32,40,95,49,50,49,53,32,95,49,50,
+48,56,41,41,41,32,40,40,65,32,58,49,50,49,52,32,40,40,95,49,
+55,54,48,32,95,49,49,57,52,41,32,40,95,49,50,49,53,32,95,49,
+50,49,48,41,41,41,32,40,40,65,32,58,49,50,49,53,32,40,40,40,
+67,39,32,40,95,49,55,32,95,49,55,53,51,41,41,32,40,40,95,49,
+54,32,95,49,55,53,51,41,32,40,95,49,49,57,56,32,35,52,48,41,
+41,41,32,40,95,49,49,57,56,32,35,52,49,41,41,41,32,40,40,65,
+32,58,49,50,49,54,32,40,40,40,95,51,53,32,95,49,55,53,52,41,
+32,95,49,49,56,48,41,32,40,40,66,32,40,95,49,55,54,56,32,34,
+108,105,116,101,114,97,108,34,41,41,32,40,40,66,32,85,41,32,40,40,
+40,83,39,32,83,41,32,40,40,66,32,40,40,83,39,32,83,39,41,32,
+40,40,67,32,60,41,32,35,51,41,41,41,32,40,40,40,83,39,32,67,
+41,32,40,40,66,32,40,40,83,39,32,83,39,41,32,40,40,67,32,60,
+41,32,35,52,41,41,41,32,40,40,66,32,40,40,67,39,32,66,41,32,
+40,40,67,32,40,40,67,32,61,61,41,32,35,52,41,41,32,95,53,50,
+49,41,41,41,32,40,40,66,32,85,41,32,40,40,66,32,40,67,32,66,
+41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,95,53,50,50,
+41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,67,
+39,32,40,67,39,32,95,57,50,49,41,41,41,32,95,49,48,55,53,41,
+41,32,95,57,53,51,41,41,41,41,41,41,41,32,40,40,66,32,85,41,
+32,40,40,66,32,40,67,32,66,41,41,32,40,40,66,32,40,66,32,40,
+66,32,40,66,32,95,53,50,50,41,41,41,41,32,40,40,40,67,39,32,
+66,41,32,40,40,66,32,40,67,39,32,40,67,39,32,95,57,50,49,41,
+41,41,32,95,49,48,55,53,41,41,32,95,57,53,49,41,41,41,41,41,
+41,41,32,40,40,40,83,39,32,83,41,32,40,40,66,32,40,40,67,39,
+32,83,39,41,32,40,40,67,32,60,41,32,35,50,41,41,41,32,40,40,
+66,32,85,41,32,40,40,66,32,40,67,32,66,41,41,32,40,40,66,32,
+40,66,32,40,66,32,40,66,32,95,53,50,50,41,41,41,41,32,40,40,
+40,67,39,32,66,41,32,40,40,66,32,40,67,39,32,40,67,39,32,95,
+57,50,49,41,41,41,32,95,49,48,55,53,41,41,32,95,57,53,52,41,
+41,41,41,41,41,32,40,40,66,32,40,40,67,39,32,66,41,32,40,40,
+67,32,40,40,67,32,61,61,41,32,35,49,41,41,32,95,53,50,49,41,
+41,41,32,40,40,66,32,85,41,32,40,40,66,32,40,67,32,66,41,41,
+32,40,40,66,32,40,66,32,40,66,32,40,66,32,95,53,50,50,41,41,
+41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,67,39,32,
+40,67,39,32,95,57,50,49,41,41,41,32,95,49,48,55,53,41,41,32,
+95,57,53,53,41,41,41,41,41,41,41,41,41,41,41,32,40,40,65,32,
+58,49,50,49,55,32,40,40,40,95,51,53,32,95,49,55,53,52,41,32,
+95,49,50,49,54,41,32,40,40,40,83,39,32,40,95,51,54,32,95,49,
+55,53,52,41,41,32,40,40,66,32,40,95,50,56,50,32,40,95,49,48,
+32,95,49,55,53,54,41,41,41,32,40,85,32,40,40,40,67,39,32,66,
+41,32,40,40,67,32,40,40,67,32,61,61,41,32,35,52,41,41,32,95,
+49,51,52,41,41,32,40,85,32,40,75,32,40,85,32,40,40,83,32,40,
+40,40,83,39,32,83,39,41,32,40,40,67,32,60,41,32,35,51,41,41,
+32,40,40,40,67,39,32,66,41,32,40,40,67,32,40,40,67,32,61,61,
+41,32,35,51,41,41,32,95,49,51,52,41,41,32,40,85,32,40,75,32,
+95,49,51,53,41,41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,
+40,67,32,40,40,67,32,61,61,41,32,35,49,41,41,32,95,49,51,52,
+41,41,32,40,85,32,40,75,32,95,49,51,53,41,41,41,41,41,41,41,
+41,41,41,41,32,40,95,51,55,32,95,49,55,53,52,41,41,41,41,32,
+40,40,65,32,58,49,50,49,56,32,40,40,95,49,55,54,56,32,34,115,
+116,114,105,110,103,34,41,32,40,85,32,40,40,40,67,39,32,66,41,32,
+40,40,67,32,40,40,67,32,61,61,41,32,35,49,41,41,32,95,53,50,
+49,41,41,32,40,85,32,40,75,32,95,53,50,50,41,41,41,41,41,41,
+32,40,40,65,32,58,49,50,49,57,32,40,40,95,49,55,54,48,32,40,
+40,95,49,55,54,48,32,40,40,95,49,55,54,48,32,40,40,40,95,50,
+57,56,32,95,49,55,53,50,41,32,95,56,57,56,41,32,40,40,40,95,
+49,54,32,95,49,55,53,51,41,32,40,95,49,50,50,48,32,34,109,111,
+100,117,108,101,34,41,41,32,95,49,49,57,51,41,41,41,32,40,40,40,
+95,50,57,56,32,95,49,55,53,50,41,32,95,56,57,57,41,32,40,40,
+40,95,49,55,32,95,49,55,53,51,41,32,40,40,40,95,49,55,32,95,
+49,55,53,51,41,32,40,40,40,95,49,55,32,95,49,55,53,51,41,32,
+95,49,50,49,50,41,32,40,95,49,49,57,56,32,35,52,48,41,41,41,
+32,40,95,49,49,57,57,32,34,46,46,34,41,41,41,32,40,95,49,49,
+57,56,32,35,52,49,41,41,41,41,41,32,40,40,40,95,50,57,56,32,
+95,49,55,53,50,41,32,95,57,48,48,41,32,95,49,50,49,50,41,41,
+41,32,40,40,40,95,50,57,56,32,95,49,55,53,50,41,32,95,57,48,
+49,41,32,95,49,50,49,51,41,41,41,32,40,40,65,32,58,49,50,50,
+48,32,40,40,66,32,40,40,95,50,57,53,32,95,49,55,53,50,41,32,
+95,49,53,54,56,41,41,32,40,40,83,32,95,49,55,54,55,41,32,40,
+40,66,32,85,41,32,40,40,66,32,40,40,67,39,32,66,41,32,40,40,
+67,32,40,40,67,32,61,61,41,32,35,48,41,41,32,95,49,51,52,41,
+41,41,32,40,40,66,32,85,41,32,40,90,32,40,40,40,67,39,32,67,
+41,32,40,40,66,32,40,67,32,67,39,41,41,32,40,95,50,50,51,32,
+95,49,52,51,41,41,41,32,40,75,50,32,95,49,51,52,41,41,41,41,
+41,41,41,41,41,32,40,40,65,32,58,49,50,50,49,32,40,40,66,32,
+40,40,95,51,54,32,95,49,55,53,52,41,32,40,95,49,49,57,56,32,
+35,49,50,51,41,41,41,32,40,40,40,67,39,32,40,95,51,53,32,95,
+49,55,53,52,41,41,32,40,40,67,32,95,49,55,55,54,41,32,40,95,
+49,49,57,56,32,35,53,57,41,41,41,32,40,40,66,32,40,40,95,51,
+54,32,95,49,55,53,52,41,32,40,95,49,55,54,52,32,40,95,49,49,
+57,56,32,35,53,57,41,41,41,41,32,40,40,66,32,40,40,95,51,54,
+32,95,49,55,53,52,41,32,40,95,49,49,57,56,32,35,49,50,53,41,
+41,41,32,40,95,49,52,32,95,49,55,53,51,41,41,41,41,41,41,32,
+40,40,65,32,58,49,50,50,50,32,40,40,95,49,55,54,48,32,40,40,
+95,49,55,54,48,32,40,40,95,49,55,54,48,32,40,40,95,49,55,54,
+48,32,40,40,95,49,55,54,48,32,40,40,95,49,55,54,48,32,40,40,
+95,49,55,54,48,32,40,40,95,49,55,54,48,32,40,40,95,49,55,54,
+48,32,40,40,95,49,55,54,48,32,40,40,40,95,49,55,32,95,49,55,
+53,51,41,32,40,40,40,95,49,53,32,95,49,55,53,51,41,32,40,40,
+40,95,50,57,56,32,95,49,55,53,50,41,32,95,57,48,50,41,32,40,
+40,40,95,49,54,32,95,49,55,53,51,41,32,40,95,49,50,50,48,32,
+34,100,97,116,97,34,41,41,32,95,49,50,51,48,41,41,41,32,40,40,
+95,49,55,54,48,32,40,40,40,95,49,54,32,95,49,55,53,51,41,32,
+40,95,49,49,57,57,32,40,40,79,32,35,54,49,41,32,75,41,41,41,
+32,40,40,95,49,55,55,53,32,95,49,50,50,53,41,32,40,95,49,49,
+57,57,32,40,40,79,32,35,49,50,52,41,32,75,41,41,41,41,41,32,
+40,40,95,49,52,32,95,49,55,53,51,41,32,95,53,48,50,41,41,41,
+41,32,95,49,50,50,51,41,41,32,40,40,40,95,49,55,32,95,49,55,
+53,51,41,32,40,40,40,95,49,53,32,95,49,55,53,51,41,32,40,40,
+40,95,50,57,56,32,95,49,55,53,50,41,32,95,57,48,51,41,32,40,
+40,40,95,49,54,32,95,49,55,53,51,41,32,40,95,49,50,50,48,32,
+34,110,101,119,116,121,112,101,34,41,41,32,95,49,50,51,48,41,41,41,
+32,40,40,40,95,49,54,32,95,49,55,53,51,41,32,40,95,49,49,57,
+57,32,40,40,79,32,35,54,49,41,32,75,41,41,41,32,40,40,40,95,
+49,53,32,95,49,55,53,51,41,32,40,40,40,95,50,57,56,32,95,49,
+55,53,50,41,32,40,40,95,57,54,57,32,95,53,48,50,41,32,95,53,
+48,50,41,41,32,95,49,49,57,48,41,41,32,40,40,40,95,51,53,32,
+95,49,55,53,52,41,32,95,49,50,50,54,41,32,40,40,40,83,39,32,
+40,95,51,54,32,95,49,55,53,52,41,41,32,40,40,66,32,40,95,50,
+56,50,32,40,95,49,48,32,95,49,55,53,54,41,41,41,32,40,40,40,
+67,39,32,40,95,50,50,51,32,95,51,49,52,41,41,32,40,40,95,49,
+57,53,32,95,52,52,57,41,32,95,52,52,57,41,41,32,35,49,41,41,
+41,32,40,95,49,52,32,95,49,55,53,51,41,41,41,41,41,41,41,32,
+95,49,50,50,51,41,41,41,32,40,40,40,95,49,53,32,95,49,55,53,
+51,41,32,40,40,40,95,50,57,56,32,95,49,55,53,50,41,32,95,57,
+48,52,41,32,40,40,40,95,49,54,32,95,49,55,53,51,41,32,40,95,
+49,50,50,48,32,34,116,121,112,101,34,41,41,32,95,49,50,51,48,41,
+41,41,32,40,40,40,95,49,54,32,95,49,55,53,51,41,32,40,95,49,
+49,57,57,32,40,40,79,32,35,54,49,41,32,75,41,41,41,32,95,49,
+50,51,53,41,41,41,41,32,40,40,40,95,50,57,56,32,95,49,55,53,
+50,41,32,40,95,50,56,57,32,95,57,48,53,41,41,32,95,49,50,52,
+56,41,41,41,32,40,40,40,95,49,53,32,95,49,55,53,51,41,32,40,
+40,40,95,50,57,56,32,95,49,55,53,50,41,32,95,57,48,54,41,32,
+40,40,40,95,49,55,32,95,49,55,53,51,41,32,95,49,50,49,52,41,
+32,40,95,49,49,57,57,32,34,58,58,34,41,41,41,41,32,95,49,50,
+51,53,41,41,41,32,40,40,40,95,50,57,56,32,95,49,55,53,50,41,
+32,95,57,48,55,41,32,40,40,40,95,49,54,32,95,49,55,53,51,41,
+32,40,95,49,50,50,48,32,34,105,109,112,111,114,116,34,41,41,32,95,
+49,50,51,49,41,41,41,41,32,40,40,40,95,49,53,32,95,49,55,53,
+51,41,32,40,40,40,95,49,53,32,95,49,55,53,51,41,32,40,40,40,
+95,50,57,56,32,95,49,55,53,50,41,32,95,57,48,56,41,32,40,40,
+40,95,49,54,32,95,49,55,53,51,41,32,40,40,40,95,49,54,32,95,
+49,55,53,51,41,32,40,40,40,95,49,54,32,95,49,55,53,51,41,32,
+40,95,49,50,50,48,32,34,102,111,114,101,105,103,110,34,41,41,32,40,
+95,49,50,50,48,32,34,105,109,112,111,114,116,34,41,41,41,32,40,95,
+49,50,50,48,32,34,99,99,97,108,108,34,41,41,41,32,95,49,50,49,
+56,41,41,41,32,95,49,49,57,52,41,41,32,40,40,40,95,49,54,32,
+95,49,55,53,51,41,32,40,95,49,49,57,57,32,34,58,58,34,41,41,
+32,95,49,50,51,53,41,41,41,41,32,40,40,40,95,49,53,32,95,49,
+55,53,51,41,32,40,40,40,95,50,57,56,32,95,49,55,53,50,41,32,
+95,57,48,57,41,32,40,40,40,95,49,53,32,95,49,55,53,51,41,32,
+40,40,40,95,50,57,56,32,95,49,55,53,50,41,32,80,41,32,40,40,
+95,49,55,54,48,32,40,40,95,49,55,54,48,32,40,40,40,95,50,57,
+53,32,95,49,55,53,50,41,32,95,57,57,50,41,32,40,95,49,50,50,
+48,32,34,105,110,102,105,120,108,34,41,41,41,32,40,40,40,95,50,57,
+53,32,95,49,55,53,50,41,32,95,57,57,51,41,32,40,95,49,50,50,
+48,32,34,105,110,102,105,120,114,34,41,41,41,41,32,40,40,40,95,50,
+57,53,32,95,49,55,53,50,41,32,95,57,57,52,41,32,40,95,49,50,
+50,48,32,34,105,110,102,105,120,34,41,41,41,41,41,32,40,40,95,49,
+55,54,56,32,34,100,105,103,105,116,34,41,32,40,85,32,40,40,40,67,
+39,32,66,41,32,40,40,67,32,40,40,67,32,61,61,41,32,35,51,41,
+41,32,95,53,50,49,41,41,32,40,85,32,40,75,32,40,40,66,32,40,
+40,83,32,40,40,67,32,40,40,40,83,39,32,95,49,51,49,41,32,40,
+40,95,53,57,52,32,95,51,49,53,41,32,40,40,95,53,56,49,32,95,
+51,49,48,41,32,40,95,51,57,50,32,35,48,41,41,41,41,32,40,40,
+67,32,40,95,53,57,52,32,95,51,49,53,41,41,32,35,57,41,41,41,
+32,95,53,50,49,41,41,32,95,53,50,50,41,41,32,95,51,57,51,41,
+41,41,41,41,41,41,41,41,32,40,40,95,49,55,55,53,32,95,49,50,
+51,56,41,32,40,95,49,49,57,56,32,35,52,52,41,41,41,41,41,32,
+40,40,40,95,49,53,32,95,49,55,53,51,41,32,40,40,40,95,49,53,
+32,95,49,55,53,51,41,32,40,40,40,95,49,53,32,95,49,55,53,51,
+41,32,40,40,40,95,50,57,56,32,95,49,55,53,50,41,32,95,57,49,
+48,41,32,40,40,40,95,49,54,32,95,49,55,53,51,41,32,40,95,49,
+50,50,48,32,34,99,108,97,115,115,34,41,41,32,95,49,50,50,52,41,
+41,41,32,95,49,50,51,48,41,41,32,40,40,95,49,55,54,48,32,40,
+40,40,95,49,54,32,95,49,55,53,51,41,32,40,95,49,49,57,57,32,
+40,40,79,32,35,49,50,52,41,32,75,41,41,41,32,40,40,95,49,55,
+55,53,32,40,40,40,95,49,53,32,95,49,55,53,51,41,32,40,40,40,
+95,50,57,56,32,95,49,55,53,50,41,32,80,41,32,40,95,49,55,54,
+51,32,95,49,49,57,52,41,41,41,32,40,40,40,95,49,54,32,95,49,
+55,53,51,41,32,40,95,49,49,57,57,32,34,45,62,34,41,41,32,40,
+95,49,55,54,51,32,95,49,49,57,52,41,41,41,41,32,40,95,49,49,
+57,56,32,35,52,52,41,41,41,41,32,40,40,95,49,52,32,95,49,55,
+53,51,41,32,95,53,48,50,41,41,41,41,32,40,95,49,50,53,51,32,
+95,49,50,55,51,41,41,41,41,32,40,40,40,95,49,53,32,95,49,55,
+53,51,41,32,40,40,40,95,50,57,56,32,95,49,55,53,50,41,32,95,
+57,49,49,41,32,40,40,40,95,49,54,32,95,49,55,53,51,41,32,40,
+95,49,50,50,48,32,34,105,110,115,116,97,110,99,101,34,41,41,32,95,
+49,50,51,53,41,41,41,32,40,95,49,50,53,51,32,95,49,50,55,51,
+41,41,41,41,32,40,40,40,95,50,57,56,32,95,49,55,53,50,41,32,
+95,57,49,50,41,32,40,40,40,95,49,54,32,95,49,55,53,51,41,32,
+40,95,49,50,50,48,32,34,100,101,102,97,117,108,116,34,41,41,32,40,
+95,49,50,49,53,32,40,40,95,49,55,55,54,32,95,49,50,51,53,41,
+32,40,95,49,49,57,56,32,35,52,52,41,41,41,41,41,41,41,32,40,
+40,65,32,58,49,50,50,51,32,40,40,95,49,55,54,48,32,40,40,40,
+95,49,54,32,95,49,55,53,51,41,32,40,95,49,50,50,48,32,34,100,
+101,114,105,118,105,110,103,34,41,41,32,40,95,49,50,49,53,32,40,40,
+95,49,55,55,54,32,95,49,50,51,53,41,32,40,95,49,49,57,56,32,
+35,52,52,41,41,41,41,41,32,40,40,95,49,52,32,95,49,55,53,51,
+41,32,95,53,48,50,41,41,41,32,40,40,65,32,58,49,50,50,52,32,
+40,40,95,49,55,54,48,32,40,40,40,95,49,55,32,95,49,55,53,51,
+41,32,40,40,95,49,55,54,48,32,40,95,49,50,49,53,32,40,95,49,
+55,54,50,32,95,49,50,51,53,41,41,41,32,40,40,40,95,50,57,56,
+32,95,49,55,53,50,41,32,40,40,67,32,95,53,48,51,41,32,95,53,
+48,50,41,41,32,95,49,50,52,48,41,41,41,32,40,95,49,49,57,57,
+32,34,61,62,34,41,41,41,32,40,40,95,49,52,32,95,49,55,53,51,
+41,32,95,53,48,50,41,41,41,32,40,40,65,32,58,49,50,50,53,32,
+40,40,95,49,55,54,48,32,40,40,40,95,49,53,32,95,49,55,53,51,
+41,32,40,40,40,95,49,53,32,95,49,55,53,51,41,32,40,40,40,95,
+49,53,32,95,49,55,53,51,41,32,40,40,40,95,50,57,56,32,95,49,
+55,53,50,41,32,95,57,54,57,41,32,95,49,50,51,54,41,41,32,95,
+49,50,50,52,41,41,32,95,49,49,57,48,41,41,32,95,49,50,50,54,
+41,41,32,40,40,40,95,49,53,32,95,49,55,53,51,41,32,40,40,40,
+95,49,53,32,95,49,55,53,51,41,32,40,40,40,95,49,53,32,95,49,
+55,53,51,41,32,40,40,40,95,49,53,32,95,49,55,53,51,41,32,40,
+40,40,95,50,57,56,32,95,49,55,53,50,41,32,40,40,40,67,39,32,
+40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,40,67,39,32,66,
+41,41,41,32,95,57,54,57,41,41,32,40,40,66,32,40,66,32,95,49,
+57,50,41,41,32,40,40,40,67,39,32,66,41,32,79,41,32,40,40,67,
+32,79,41,32,75,41,41,41,41,41,32,95,49,50,51,54,41,41,32,95,
+49,50,50,52,41,41,32,95,49,50,50,55,41,41,32,95,49,50,48,54,
+41,41,32,95,49,50,50,55,41,41,41,32,40,40,65,32,58,49,50,50,
+54,32,40,40,95,49,55,54,48,32,40,40,40,95,50,57,56,32,95,49,
+55,53,50,41,32,95,49,57,50,41,32,40,95,49,55,54,50,32,95,49,
+50,50,55,41,41,41,32,40,40,40,95,50,57,56,32,95,49,55,53,50,
+41,32,95,49,57,51,41,32,40,40,40,95,49,55,32,95,49,55,53,51,
+41,32,40,40,40,95,49,54,32,95,49,55,53,51,41,32,40,95,49,49,
+57,56,32,35,49,50,51,41,41,32,40,40,95,49,55,55,54,32,40,40,
+40,95,49,53,32,95,49,55,53,51,41,32,40,40,40,95,50,57,56,32,
+95,49,55,53,50,41,32,80,41,32,40,40,40,95,49,55,32,95,49,55,
+53,51,41,32,95,49,50,49,52,41,32,40,95,49,49,57,57,32,34,58,
+58,34,41,41,41,41,32,95,49,50,50,56,41,41,32,40,95,49,49,57,
+56,32,35,52,52,41,41,41,41,32,40,95,49,49,57,56,32,35,49,50,
+53,41,41,41,41,41,32,40,40,65,32,58,49,50,50,55,32,40,40,40,
+95,49,53,32,95,49,55,53,51,41,32,40,40,40,95,50,57,56,32,95,
+49,55,53,50,41,32,80,41,32,95,49,50,50,57,41,41,32,95,49,50,
+52,49,41,41,32,40,40,65,32,58,49,50,50,56,32,40,40,40,95,49,
+53,32,95,49,55,53,51,41,32,40,40,40,95,50,57,56,32,95,49,55,
+53,50,41,32,80,41,32,95,49,50,50,57,41,41,32,95,49,50,51,53,
+41,41,32,40,40,65,32,58,49,50,50,57,32,40,40,95,49,55,54,48,
+32,40,40,40,95,50,57,53,32,95,49,55,53,50,41,32,95,49,51,53,
+41,32,40,95,49,49,57,57,32,40,40,79,32,35,51,51,41,32,75,41,
+41,41,41,32,40,40,95,49,52,32,95,49,55,53,51,41,32,95,49,51,
+52,41,41,41,32,40,40,65,32,58,49,50,51,48,32,40,40,95,49,55,
+54,48,32,40,40,40,95,49,53,32,95,49,55,53,51,41,32,40,40,40,
+95,50,57,56,32,95,49,55,53,50,41,32,80,41,32,95,49,49,57,54,
+41,41,32,40,95,49,55,54,50,32,95,49,50,51,51,41,41,41,32,40,
+40,40,95,49,53,32,95,49,55,53,51,41,32,40,40,40,95,49,53,32,
+95,49,55,53,51,41,32,40,40,40,95,50,57,56,32,95,49,55,53,50,
+41,32,40,40,66,32,40,40,67,39,32,66,41,32,80,41,41,32,40,40,
+40,67,39,32,66,41,32,79,41,32,40,40,67,32,79,41,32,75,41,41,
+41,41,32,95,49,50,51,51,41,41,32,95,49,50,48,51,41,41,32,95,
+49,50,51,51,41,41,41,32,40,40,65,32,58,49,50,51,49,32,40,40,
+40,95,49,53,32,95,49,55,53,51,41,32,40,40,40,95,49,53,32,95,
+49,55,53,51,41,32,40,40,40,95,49,53,32,95,49,55,53,51,41,32,
+40,40,40,95,50,57,56,32,95,49,55,53,50,41,32,95,57,49,51,41,
+32,40,40,95,49,55,54,48,32,40,40,40,95,50,57,53,32,95,49,55,
+53,50,41,32,95,49,51,53,41,32,40,95,49,50,50,48,32,34,113,117,
+97,108,105,102,105,101,100,34,41,41,41,32,40,40,95,49,52,32,95,49,
+55,53,51,41,32,95,49,51,52,41,41,41,41,32,95,49,49,57,50,41,
+41,32,40,95,49,55,54,52,32,40,40,40,95,49,54,32,95,49,55,53,
+51,41,32,40,95,49,50,50,48,32,34,97,115,34,41,41,32,95,49,49,
+57,51,41,41,41,41,32,40,95,49,55,54,52,32,40,40,40,95,49,53,
+32,95,49,55,53,51,41,32,40,40,40,95,50,57,56,32,95,49,55,53,
+50,41,32,80,41,32,40,40,40,95,51,32,95,49,55,53,54,41,32,40,
+40,40,95,50,57,53,32,95,49,55,53,50,41,32,95,49,51,53,41,32,
+40,95,49,50,50,48,32,34,104,105,100,105,110,103,34,41,41,41,32,40,
+40,95,49,52,32,95,49,55,53,51,41,32,95,49,51,52,41,41,41,41,
+32,40,95,49,50,49,53,32,40,40,95,49,55,55,55,32,95,49,50,51,
+50,41,32,40,95,49,49,57,56,32,35,52,52,41,41,41,41,41,41,41,
+32,40,40,65,32,58,49,50,51,50,32,40,40,95,49,55,54,48,32,40,
+40,95,49,55,54,48,32,40,40,40,95,50,57,56,32,95,49,55,53,50,
+41,32,95,57,49,52,41,32,40,40,40,95,49,55,32,95,49,55,53,51,
+41,32,40,40,40,95,49,55,32,95,49,55,53,51,41,32,40,40,40,95,
+49,55,32,95,49,55,53,51,41,32,95,49,50,49,50,41,32,40,95,49,
+49,57,56,32,35,52,48,41,41,41,32,40,95,49,49,57,57,32,34,46,
+46,34,41,41,41,32,40,95,49,49,57,56,32,35,52,49,41,41,41,41,
+32,40,40,40,95,50,57,56,32,95,49,55,53,50,41,32,95,57,49,53,
+41,32,95,49,50,49,50,41,41,41,32,40,40,40,95,50,57,56,32,95,
+49,55,53,50,41,32,95,57,49,54,41,32,95,49,50,49,51,41,41,41,
+32,40,40,65,32,58,49,50,51,51,32,40,40,95,49,55,54,48,32,40,
+40,40,95,50,57,56,32,95,49,55,53,50,41,32,40,40,67,32,95,57,
+55,48,41,32,95,57,55,51,41,41,32,95,49,50,49,52,41,41,32,40,
+95,49,50,49,53,32,40,40,40,95,49,53,32,95,49,55,53,51,41,32,
+40,40,40,95,50,57,56,32,95,49,55,53,50,41,32,95,57,55,48,41,
+32,95,49,50,49,52,41,41,32,40,40,40,95,49,54,32,95,49,55,53,
+51,41,32,40,95,49,49,57,57,32,34,58,58,34,41,41,32,95,49,50,
+51,52,41,41,41,41,41,32,40,40,65,32,58,49,50,51,52,32,95,49,
+50,51,53,41,32,40,40,65,32,58,49,50,51,53,32,40,40,40,95,51,
+53,32,95,49,55,53,52,41,32,95,49,50,51,54,41,32,40,40,66,32,
+40,40,95,51,53,32,95,49,55,53,52,41,32,95,49,50,51,55,41,41,
+32,40,40,66,32,40,66,32,40,95,50,56,50,32,40,95,49,52,32,95,
+49,55,53,51,41,41,41,41,32,40,40,67,32,40,40,40,83,39,32,83,
+39,41,32,95,52,50,56,41,32,95,57,51,54,41,41,32,73,41,41,41,
+41,41,32,40,40,65,32,58,49,50,51,54,32,40,40,95,49,55,54,48,
+32,40,40,40,95,49,55,32,95,49,55,53,51,41,32,40,40,40,95,49,
+54,32,95,49,55,53,51,41,32,40,95,49,50,50,48,32,34,102,111,114,
+97,108,108,34,41,41,32,40,95,49,55,54,51,32,95,49,50,51,51,41,
+41,41,32,40,95,49,49,57,57,32,40,40,79,32,35,52,54,41,32,75,
+41,41,41,41,32,40,40,95,49,52,32,95,49,55,53,51,41,32,95,53,
+48,50,41,41,41,32,40,40,65,32,58,49,50,51,55,32,40,40,95,49,
+50,55,49,32,95,49,50,51,56,41,32,95,49,50,51,57,41,41,32,40,
+40,65,32,58,49,50,51,56,32,40,40,95,49,55,54,48,32,40,40,95,
+49,55,54,48,32,95,49,50,48,48,41,32,40,40,40,95,50,57,53,32,
+95,49,55,53,50,41,32,40,95,49,48,56,51,32,34,45,62,34,41,41,
+32,40,95,49,49,57,57,32,34,45,62,34,41,41,41,41,32,40,40,40,
+95,50,57,53,32,95,49,55,53,50,41,32,40,95,49,48,56,51,32,34,
+61,62,34,41,41,32,40,95,49,49,57,57,32,34,61,62,34,41,41,41,
+41,32,40,40,65,32,58,49,50,51,57,32,95,49,50,52,48,41,32,40,
+40,65,32,58,49,50,52,48,32,40,40,40,95,51,53,32,95,49,55,53,
+52,41,32,95,49,50,52,49,41,32,40,40,66,32,40,40,95,51,53,32,
+95,49,55,53,52,41,32,40,95,49,55,54,50,32,95,49,50,52,49,41,
+41,41,32,40,40,66,32,40,66,32,40,40,95,51,53,32,95,49,55,53,
+52,41,32,40,95,49,55,54,52,32,40,40,40,95,49,54,32,95,49,55,
+53,51,41,32,40,95,49,49,57,57,32,34,58,58,34,41,41,32,95,49,
+50,51,53,41,41,41,41,41,32,40,40,66,32,40,66,32,40,40,67,39,
+32,40,66,32,40,95,50,56,50,32,40,95,49,52,32,95,49,55,53,51,
+41,41,41,41,32,40,67,32,40,40,83,32,95,53,49,53,41,32,95,57,
+51,48,41,41,41,41,41,32,40,95,52,51,54,32,95,57,49,56,41,41,
+41,41,41,41,32,40,40,65,32,58,49,50,52,49,32,40,40,95,49,55,
+54,48,32,40,40,95,49,55,54,48,32,40,40,95,49,55,54,48,32,40,
+40,95,49,55,54,48,32,40,40,40,95,50,57,56,32,95,49,55,53,50,
+41,32,95,57,49,55,41,32,95,49,50,49,51,41,41,32,40,40,40,95,
+50,57,56,32,95,49,55,53,50,41,32,95,57,49,55,41,32,95,49,50,
+49,50,41,41,41,32,95,49,50,49,54,41,41,32,40,40,40,95,50,57,
+56,32,95,49,55,53,50,41,32,95,49,50,55,52,41,32,40,40,40,95,
+49,55,32,95,49,55,53,51,41,32,40,40,40,95,49,54,32,95,49,55,
+53,51,41,32,40,95,49,49,57,56,32,35,52,48,41,41,32,40,40,95,
+49,55,55,53,32,95,49,50,51,53,41,32,40,95,49,49,57,56,32,35,
+52,52,41,41,41,41,32,40,95,49,49,57,56,32,35,52,49,41,41,41,
+41,41,32,40,40,40,95,50,57,56,32,95,49,55,53,50,41,32,40,40,
+95,50,56,52,32,95,57,50,53,41,32,40,40,95,50,56,52,32,95,57,
+52,49,41,32,40,40,67,32,95,53,48,51,41,32,95,53,48,50,41,41,
+41,41,32,40,40,40,95,49,55,32,95,49,55,53,51,41,32,40,40,40,
+95,49,54,32,95,49,55,53,51,41,32,40,95,49,49,57,56,32,35,57,
+49,41,41,32,95,49,50,51,53,41,41,32,40,95,49,49,57,56,32,35,
+57,51,41,41,41,41,41,32,40,40,65,32,58,49,50,52,50,32,40,40,
+95,49,55,54,48,32,40,40,95,49,55,54,48,32,40,40,95,49,55,54,
+48,32,40,40,95,49,55,54,48,32,40,40,95,49,55,54,48,32,40,40,
+40,95,51,53,32,95,49,55,53,52,41,32,95,49,50,49,52,41,32,40,
+40,40,83,39,32,95,49,55,54,48,41,32,40,40,40,67,39,32,40,95,
+50,57,56,32,95,49,55,53,50,41,41,32,95,57,51,50,41,32,40,40,
+40,95,49,54,32,95,49,55,53,51,41,32,40,95,49,49,57,57,32,40,
+40,79,32,35,54,52,41,32,75,41,41,41,32,95,49,50,52,50,41,41,
+41,32,40,40,66,32,40,95,49,52,32,95,49,55,53,51,41,41,32,95,
+57,49,55,41,41,41,41,32,40,40,40,95,50,57,56,32,95,49,55,53,
+50,41,32,95,57,49,55,41,32,95,49,50,49,50,41,41,41,32,95,49,
+50,49,54,41,41,32,40,40,40,95,50,57,56,32,95,49,55,53,50,41,
+32,95,49,50,55,52,41,32,40,40,40,95,49,55,32,95,49,55,53,51,
+41,32,40,40,40,95,49,54,32,95,49,55,53,51,41,32,40,95,49,49,
+57,56,32,35,52,48,41,41,32,40,40,95,49,55,55,53,32,95,49,50,
+52,51,41,32,40,95,49,49,57,56,32,35,52,52,41,41,41,41,32,40,
+95,49,49,57,56,32,35,52,49,41,41,41,41,41,32,40,40,40,95,50,
+57,56,32,95,49,55,53,50,41,32,40,40,95,50,56,52,32,95,57,50,
+53,41,32,95,57,52,49,41,41,32,40,40,40,95,49,55,32,95,49,55,
+53,51,41,32,40,40,40,95,49,54,32,95,49,55,53,51,41,32,40,95,
+49,49,57,56,32,35,57,49,41,41,32,40,40,95,49,55,55,53,32,95,
+49,50,52,51,41,32,40,95,49,49,57,56,32,35,52,52,41,41,41,41,
+32,40,95,49,49,57,56,32,35,57,51,41,41,41,41,41,32,40,40,40,
+95,49,53,32,95,49,55,53,51,41,32,40,40,40,95,50,57,56,32,95,
+49,55,53,50,41,32,95,57,51,51,41,32,40,40,40,95,49,54,32,95,
+49,55,53,51,41,32,40,95,49,49,57,56,32,35,52,48,41,41,32,95,
+49,50,54,55,41,41,41,32,40,40,40,95,49,55,32,95,49,55,53,51,
+41,32,40,40,40,95,49,54,32,95,49,55,53,51,41,32,40,95,49,49,
+57,57,32,34,45,62,34,41,41,32,95,49,50,52,50,41,41,32,40,95,
+49,49,57,56,32,35,52,49,41,41,41,41,41,32,40,40,65,32,58,49,
+50,52,51,32,95,49,50,52,52,41,32,40,40,65,32,58,49,50,52,52,
+32,40,40,95,49,50,55,49,32,95,49,50,48,49,41,32,95,49,50,52,
+53,41,41,32,40,40,65,32,58,49,50,52,53,32,40,40,95,49,55,54,
+48,32,40,40,40,95,49,54,32,95,49,55,53,51,41,32,40,95,49,49,
+57,57,32,40,40,79,32,35,52,53,41,32,75,41,41,41,32,40,40,40,
+95,50,57,56,32,95,49,55,53,50,41,32,95,57,51,49,41,32,95,49,
+50,49,55,41,41,41,32,95,49,50,52,54,41,41,32,40,40,65,32,58,
+49,50,52,54,32,40,40,40,95,51,53,32,95,49,55,53,52,41,32,95,
+49,50,52,50,41,32,40,40,66,32,40,40,95,51,53,32,95,49,55,53,
+52,41,32,40,95,49,55,54,50,32,95,49,50,52,50,41,41,41,32,40,
+40,40,83,39,32,40,83,39,32,40,95,51,54,32,95,49,55,53,52,41,
+41,41,32,40,40,66,32,40,66,32,40,95,49,48,32,95,49,55,53,54,
+41,41,41,32,40,40,66,32,40,40,67,39,32,95,49,51,48,41,32,95,
+52,50,56,41,41,32,95,57,54,55,41,41,41,32,40,40,66,32,40,66,
+32,40,95,50,56,50,32,40,95,49,52,32,95,49,55,53,51,41,41,41,
+41,32,40,95,52,51,54,32,95,57,49,56,41,41,41,41,41,41,32,40,
+40,65,32,58,49,50,52,55,32,40,40,40,95,51,53,32,95,49,55,53,
+52,41,32,95,49,50,52,51,41,32,40,40,40,83,39,32,40,95,51,54,
+32,95,49,55,53,52,41,41,32,40,40,66,32,40,95,49,48,32,95,49,
+55,53,54,41,41,32,95,57,54,55,41,41,32,40,95,49,52,32,95,49,
+55,53,51,41,41,41,41,32,40,40,65,32,58,49,50,52,56,32,40,40,
+40,95,51,53,32,95,49,55,53,52,41,32,40,95,49,50,52,57,32,40,
+75,50,32,95,49,51,53,41,41,41,32,40,85,32,40,40,66,32,40,83,
+32,73,41,41,32,40,40,40,83,39,32,40,83,39,32,40,83,39,32,67,
+41,41,41,32,40,40,66,32,40,66,32,40,40,67,39,32,40,67,39,32,
+66,41,41,32,80,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,
+83,39,32,67,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,67,
+32,67,39,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,85,41,
+41,41,32,40,40,66,32,40,66,32,40,40,83,39,32,40,67,39,32,66,
+41,41,32,85,41,41,41,32,40,40,66,32,40,66,32,40,66,32,90,41,
+41,41,32,40,40,40,67,39,32,40,67,39,32,40,83,39,32,40,67,39,
+32,80,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,
+32,40,40,66,32,40,66,32,80,41,41,32,40,40,66,32,40,66,32,40,
+95,49,52,32,95,49,55,53,51,41,41,41,32,40,40,40,67,39,32,66,
+41,32,80,41,32,40,40,67,32,79,41,32,75,41,41,41,41,41,32,40,
+90,32,75,41,41,41,32,40,90,32,75,41,41,41,41,41,41,41,32,40,
+90,32,75,41,41,41,41,32,40,40,40,83,39,32,66,41,32,40,40,66,
+32,40,67,39,32,40,95,51,53,32,95,49,55,53,52,41,41,41,32,40,
+40,66,32,40,66,32,95,49,55,54,50,41,41,32,40,40,66,32,40,66,
+32,40,40,95,49,54,32,95,49,55,53,51,41,32,40,95,49,49,57,56,
+32,35,53,57,41,41,41,41,32,40,40,66,32,40,66,32,95,49,50,52,
+57,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,67,39,
+32,66,41,41,32,40,40,66,32,40,66,32,95,49,51,49,41,41,32,40,
+67,32,40,95,50,50,51,32,95,49,48,55,56,41,41,41,41,41,32,40,
+40,66,32,40,67,32,40,95,50,50,51,32,95,51,49,52,41,41,41,32,
+95,52,52,57,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,
+66,32,40,95,49,52,32,95,49,55,53,51,41,41,41,41,32,40,40,40,
+67,39,32,66,41,32,40,66,39,32,80,41,41,32,40,40,40,67,39,32,
+66,41,32,95,53,48,51,41,32,40,95,52,51,49,32,95,54,54,53,41,
+41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,49,50,52,57,32,
+40,40,66,32,40,40,95,51,53,32,95,49,55,53,52,41,32,95,49,50,
+53,48,41,41,32,40,40,66,32,85,41,32,40,40,66,32,40,66,32,40,
+66,32,40,40,95,51,53,32,95,49,55,53,52,41,32,40,95,49,50,53,
+49,32,40,95,49,49,57,57,32,40,40,79,32,35,54,49,41,32,75,41,
+41,41,41,41,41,41,32,40,40,40,67,39,32,40,83,39,32,40,83,39,
+32,66,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,95,51,54,
+32,95,49,55,53,52,41,41,41,41,32,40,40,66,32,40,66,32,40,66,
+32,40,95,49,48,32,95,49,55,53,54,41,41,41,41,32,40,40,67,32,
+40,67,39,32,66,41,41,32,95,52,52,57,41,41,41,41,32,40,40,66,
+32,40,66,32,40,66,32,40,95,49,52,32,95,49,55,53,51,41,41,41,
+41,32,40,40,40,67,39,32,66,41,32,40,66,39,32,80,41,41,32,95,
+57,54,53,41,41,41,41,41,41,41,32,40,40,65,32,58,49,50,53,48,
+32,40,40,40,40,83,39,32,95,49,55,54,48,41,32,40,40,95,51,32,
+95,49,55,53,54,41,32,40,40,40,95,49,53,32,95,49,55,53,51,41,
+32,40,40,40,95,50,57,56,32,95,49,55,53,50,41,32,80,41,32,95,
+49,50,49,52,41,41,32,40,95,49,55,54,50,32,95,49,50,52,50,41,
+41,41,41,32,40,40,40,67,39,32,40,95,49,53,32,95,49,55,53,51,
+41,41,32,40,40,66,32,40,40,95,50,57,56,32,95,49,55,53,50,41,
+32,40,40,67,32,66,41,32,40,40,66,32,40,40,67,39,32,66,41,32,
+80,41,41,32,40,67,32,95,53,48,52,41,41,41,41,41,32,95,49,50,
+49,53,41,41,32,40,95,49,55,54,50,32,95,49,50,52,50,41,41,41,
+32,40,40,40,95,49,53,32,95,49,55,53,51,41,32,40,40,40,95,49,
+53,32,95,49,55,53,51,41,32,40,40,40,95,50,57,56,32,95,49,55,
+53,50,41,32,40,40,66,32,40,40,67,39,32,66,41,32,80,41,41,32,
+40,40,40,67,39,32,66,41,32,79,41,32,40,40,67,32,79,41,32,75,
+41,41,41,41,32,95,49,50,52,54,41,41,32,40,40,40,95,51,53,32,
+95,49,55,53,52,41,32,95,49,50,48,48,41,32,40,40,40,83,39,32,
+40,95,51,54,32,95,49,55,53,52,41,41,32,40,40,66,32,40,95,49,
+48,32,95,49,55,53,54,41,41,32,40,40,66,32,95,49,51,50,41,32,
+95,49,48,57,53,41,41,41,32,40,95,49,52,32,95,49,55,53,51,41,
+41,41,41,41,32,95,49,50,52,54,41,41,41,32,40,40,65,32,58,49,
+50,53,49,32,40,40,40,67,39,32,40,95,51,53,32,95,49,55,53,52,
+41,41,32,95,49,50,53,50,41,32,40,40,66,32,40,40,95,51,53,32,
+95,49,55,53,52,41,32,40,95,49,50,53,51,32,95,49,50,55,50,41,
+41,41,32,40,40,66,32,40,66,32,40,95,49,52,32,95,49,55,53,51,
+41,41,41,32,95,57,54,54,41,41,41,41,32,40,40,65,32,58,49,50,
+53,50,32,40,40,40,83,39,32,95,49,55,54,48,41,32,40,40,66,32,
+95,49,55,54,51,41,32,40,40,66,32,40,40,95,49,53,32,95,49,55,
+53,51,41,32,40,40,40,95,50,57,56,32,95,49,55,53,50,41,32,80,
+41,32,40,40,40,95,49,54,32,95,49,55,53,51,41,32,40,95,49,49,
+57,57,32,40,40,79,32,35,49,50,52,41,32,75,41,41,41,32,40,40,
+95,49,55,55,53,32,95,49,50,53,52,41,32,40,95,49,49,57,56,32,
+35,52,52,41,41,41,41,41,41,32,40,40,67,32,40,95,49,54,32,95,
+49,55,53,51,41,41,32,95,49,50,53,53,41,41,41,41,32,40,40,66,
+32,40,40,95,50,57,56,32,95,49,55,53,50,41,32,40,40,40,67,39,
+32,79,41,32,40,80,32,95,53,48,50,41,41,32,75,41,41,41,32,40,
+40,67,32,40,95,49,54,32,95,49,55,53,51,41,41,32,95,49,50,53,
+53,41,41,41,41,32,40,40,65,32,58,49,50,53,51,32,40,40,40,67,
+39,32,95,49,55,54,48,41,32,40,40,66,32,40,40,95,49,54,32,95,
+49,55,53,51,41,32,40,95,49,50,50,48,32,34,119,104,101,114,101,34,
+41,41,41,32,95,49,50,50,49,41,41,32,40,40,95,49,52,32,95,49,
+55,53,51,41,32,95,53,48,50,41,41,41,32,40,40,65,32,58,49,50,
+53,52,32,40,40,95,49,55,54,48,32,40,40,95,49,55,54,48,32,40,
+40,40,95,49,53,32,95,49,55,53,51,41,32,40,40,40,95,50,57,56,
+32,95,49,55,53,50,41,32,95,57,53,57,41,32,40,40,40,95,49,55,
+32,95,49,55,53,51,41,32,95,49,50,52,51,41,32,40,95,49,49,57,
+57,32,34,60,45,34,41,41,41,41,32,95,49,50,53,53,41,41,32,40,
+40,40,95,50,57,56,32,95,49,55,53,50,41,32,95,57,54,49,41,32,
+40,40,40,95,49,54,32,95,49,55,53,51,41,32,40,95,49,50,50,48,
+32,34,108,101,116,34,41,41,32,40,95,49,50,50,49,32,95,49,50,55,
+50,41,41,41,41,41,32,40,40,40,95,50,57,56,32,95,49,55,53,50,
+41,32,95,57,54,48,41,32,95,49,50,53,53,41,41,41,32,40,40,65,
+32,58,49,50,53,53,32,95,49,50,54,57,41,32,40,40,65,32,58,49,
+50,53,54,32,40,40,95,49,55,54,48,32,40,40,95,49,55,54,48,32,
+40,40,95,49,55,54,48,32,40,40,95,49,55,54,48,32,40,40,95,49,
+55,54,48,32,95,49,50,53,55,41,32,95,49,50,53,56,41,41,32,95,
+49,50,53,57,41,41,32,95,49,50,54,49,41,41,32,95,49,50,54,51,
+41,41,32,95,49,50,54,50,41,41,32,40,40,65,32,58,49,50,53,55,
+32,40,40,40,95,51,53,32,95,49,55,53,52,41,32,95,49,50,54,55,
+41,32,40,40,66,32,40,40,95,51,53,32,95,49,55,53,52,41,32,40,
+95,49,55,54,50,32,95,49,50,54,55,41,41,41,32,40,40,66,32,40,
+66,32,40,40,95,51,53,32,95,49,55,53,52,41,32,40,95,49,55,54,
+52,32,40,40,40,95,49,54,32,95,49,55,53,51,41,32,40,95,49,49,
+57,57,32,34,58,58,34,41,41,32,95,49,50,51,53,41,41,41,41,41,
+32,40,40,66,32,40,66,32,40,40,67,39,32,40,66,32,40,95,50,56,
+50,32,40,95,49,52,32,95,49,55,53,51,41,41,41,41,32,40,67,32,
+40,40,83,32,95,53,49,53,41,32,95,57,51,48,41,41,41,41,41,32,
+40,95,52,51,54,32,95,57,49,56,41,41,41,41,41,41,32,40,40,65,
+32,58,49,50,53,56,32,40,40,40,95,49,53,32,95,49,55,53,51,41,
+32,40,40,40,95,50,57,56,32,95,49,55,53,50,41,32,95,57,51,55,
+41,32,40,40,40,95,49,54,32,95,49,55,53,51,41,32,40,95,49,49,
+57,57,32,40,40,79,32,35,57,50,41,32,75,41,41,41,32,40,95,49,
+55,54,51,32,95,49,50,52,50,41,41,41,41,32,40,40,40,95,49,54,
+32,95,49,55,53,51,41,32,40,95,49,49,57,57,32,34,45,62,34,41,
+41,32,95,49,50,53,53,41,41,41,32,40,40,65,32,58,49,50,53,57,
+32,40,40,40,95,49,53,32,95,49,55,53,51,41,32,40,40,40,95,50,
+57,56,32,95,49,55,53,50,41,32,95,57,50,50,41,32,40,40,40,95,
+49,54,32,95,49,55,53,51,41,32,40,95,49,50,50,48,32,34,99,97,
+115,101,34,41,41,32,95,49,50,53,53,41,41,41,32,40,40,40,95,49,
+54,32,95,49,55,53,51,41,32,40,95,49,50,50,48,32,34,111,102,34,
+41,41,32,40,95,49,50,50,49,32,95,49,50,54,48,41,41,41,41,32,
+40,40,65,32,58,49,50,54,48,32,40,40,40,95,49,53,32,95,49,55,
+53,51,41,32,40,40,40,95,50,57,56,32,95,49,55,53,50,41,32,80,
+41,32,95,49,50,52,51,41,41,32,40,95,49,50,53,49,32,40,95,49,
+49,57,57,32,34,45,62,34,41,41,41,41,32,40,40,65,32,58,49,50,
+54,49,32,40,40,40,95,49,53,32,95,49,55,53,51,41,32,40,40,40,
+95,50,57,56,32,95,49,55,53,50,41,32,95,57,50,51,41,32,40,40,
+40,95,49,54,32,95,49,55,53,51,41,32,40,95,49,50,50,48,32,34,
+108,101,116,34,41,41,32,40,95,49,50,50,49,32,95,49,50,55,50,41,
+41,41,41,32,40,40,40,95,49,54,32,95,49,55,53,51,41,32,40,95,
+49,50,50,48,32,34,105,110,34,41,41,32,95,49,50,53,53,41,41,41,
+32,40,40,65,32,58,49,50,54,50,32,40,40,40,95,49,53,32,95,49,
+55,53,51,41,32,40,40,40,95,50,57,56,32,95,49,55,53,50,41,32,
+95,57,50,54,41,32,40,40,95,49,55,54,48,32,40,40,40,95,50,57,
+56,32,95,49,55,53,50,41,32,95,53,50,50,41,32,95,49,50,54,52,
+41,41,32,40,40,40,95,50,57,53,32,95,49,55,53,50,41,32,95,53,
+50,49,41,32,40,95,49,50,50,48,32,34,100,111,34,41,41,41,41,41,
+32,40,95,49,50,50,49,32,95,49,50,53,52,41,41,41,32,40,40,65,
+32,58,49,50,54,51,32,40,40,40,95,49,53,32,95,49,55,53,51,41,
+32,40,40,40,95,49,53,32,95,49,55,53,51,41,32,40,40,40,95,50,
+57,56,32,95,49,55,53,50,41,32,95,57,50,57,41,32,40,40,40,95,
+49,54,32,95,49,55,53,51,41,32,40,95,49,50,50,48,32,34,105,102,
+34,41,41,32,95,49,50,53,53,41,41,41,32,40,40,40,95,49,54,32,
+95,49,55,53,51,41,32,40,95,49,50,50,48,32,34,116,104,101,110,34,
+41,41,32,95,49,50,53,53,41,41,41,32,40,40,40,95,49,54,32,95,
+49,55,53,51,41,32,40,95,49,50,50,48,32,34,101,108,115,101,34,41,
+41,32,95,49,50,53,53,41,41,41,32,40,40,65,32,58,49,50,54,52,
+32,40,40,40,95,51,53,32,95,49,55,53,52,41,32,95,49,49,56,48,
+41,32,40,40,66,32,40,95,49,55,54,56,32,34,81,117,97,108,68,111,
+34,41,41,32,40,40,66,32,85,41,32,40,40,66,32,40,40,67,39,32,
+66,41,32,40,40,67,32,40,40,67,32,61,61,41,32,35,48,41,41,32,
+95,53,50,49,41,41,41,32,40,40,66,32,85,41,32,40,40,66,32,40,
+66,32,40,40,83,39,32,66,41,32,40,85,32,95,53,50,49,41,41,41,
+41,32,40,40,66,32,40,66,32,40,66,32,90,41,41,41,32,40,40,66,
+32,40,66,32,40,66,32,90,41,41,41,32,40,40,66,32,40,66,32,40,
+66,32,40,67,32,40,40,67,32,40,40,95,50,50,51,32,95,49,52,51,
+41,32,34,100,111,34,41,41,32,95,53,50,49,41,41,41,41,41,32,40,
+40,66,32,40,66,32,40,66,32,95,53,50,50,41,41,41,32,40,40,40,
+67,39,32,40,67,39,32,66,41,41,32,95,49,48,56,53,41,32,40,95,
+52,55,49,32,40,40,79,32,35,52,54,41,32,75,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,32,40,40,65,32,58,49,50,54,53,32,40,
+40,95,49,55,54,48,32,95,49,50,48,48,41,32,40,40,40,95,49,53,
+32,95,49,55,53,51,41,32,40,40,40,95,49,53,32,95,49,55,53,51,
+41,32,40,40,40,95,50,57,56,32,95,49,55,53,50,41,32,95,49,48,
+56,53,41,32,95,49,49,56,48,41,41,32,95,49,49,56,51,41,41,32,
+40,40,40,95,50,57,53,32,95,49,55,53,50,41,32,40,40,79,32,35,
+52,52,41,32,75,41,41,32,40,95,49,49,57,56,32,35,52,52,41,41,
+41,41,41,32,40,40,65,32,58,49,50,54,54,32,40,40,40,95,51,53,
+32,95,49,55,53,52,41,32,95,49,50,54,53,41,32,40,40,40,83,39,
+32,40,95,51,54,32,95,49,55,53,52,41,41,32,40,40,66,32,40,95,
+49,48,32,95,49,55,53,54,41,41,32,40,40,67,32,40,95,50,50,52,
+32,95,49,48,55,56,41,41,32,40,95,49,48,56,51,32,40,40,79,32,
+35,52,53,41,32,75,41,41,41,41,41,32,40,95,49,52,32,95,49,55,
+53,51,41,41,41,41,32,40,40,65,32,58,49,50,54,55,32,40,40,95,
+49,55,54,48,32,40,40,95,49,55,54,48,32,40,40,95,49,55,54,48,
+32,40,40,95,49,55,54,48,32,40,40,95,49,55,54,48,32,40,40,95,
+49,55,54,48,32,40,40,95,49,55,54,48,32,40,40,40,95,50,57,56,
+32,95,49,55,53,50,41,32,95,57,49,55,41,32,95,49,50,49,51,41,
+41,32,40,40,40,95,50,57,56,32,95,49,55,53,50,41,32,95,57,49,
+55,41,32,95,49,50,49,50,41,41,41,32,95,49,50,49,54,41,41,32,
+40,40,40,95,50,57,56,32,95,49,55,53,50,41,32,95,49,50,55,52,
+41,32,40,40,40,95,49,55,32,95,49,55,53,51,41,32,40,40,40,95,
+49,54,32,95,49,55,53,51,41,32,40,95,49,49,57,56,32,35,52,48,
+41,41,32,40,40,95,49,55,55,53,32,95,49,50,53,53,41,32,40,95,
+49,49,57,56,32,35,52,52,41,41,41,41,32,40,95,49,49,57,56,32,
+35,52,49,41,41,41,41,41,32,40,40,40,95,50,57,56,32,95,49,55,
+53,50,41,32,95,57,50,53,41,32,40,40,40,95,49,55,32,95,49,55,
+53,51,41,32,40,40,40,95,49,54,32,95,49,55,53,51,41,32,40,95,
+49,49,57,56,32,35,57,49,41,41,32,95,49,50,54,56,41,41,32,40,
+95,49,49,57,56,32,35,57,51,41,41,41,41,41,32,40,40,40,95,49,
+53,32,95,49,55,53,51,41,32,40,40,40,95,50,57,56,32,95,49,55,
+53,50,41,32,95,57,50,55,41,32,40,40,40,95,49,54,32,95,49,55,
+53,51,41,32,40,95,49,49,57,56,32,35,52,48,41,41,32,95,49,50,
+53,54,41,41,41,32,40,40,40,95,49,55,32,95,49,55,53,51,41,32,
+95,49,50,54,53,41,32,40,95,49,49,57,56,32,35,52,49,41,41,41,
+41,41,32,40,40,40,95,49,53,32,95,49,55,53,51,41,32,40,40,40,
+95,50,57,56,32,95,49,55,53,50,41,32,95,57,50,56,41,32,40,40,
+40,95,49,54,32,95,49,55,53,51,41,32,40,95,49,49,57,56,32,35,
+52,48,41,41,32,95,49,50,54,54,41,41,41,32,40,40,40,95,49,55,
+32,95,49,55,53,51,41,32,95,49,50,53,54,41,32,40,95,49,49,57,
+56,32,35,52,49,41,41,41,41,41,32,40,40,40,95,50,57,56,32,95,
+49,55,53,50,41,32,40,40,95,50,56,52,32,40,95,57,50,49,32,95,
+49,48,56,49,41,41,32,95,57,53,54,41,41,32,40,40,40,95,49,54,
+32,95,49,55,53,51,41,32,40,95,49,50,50,48,32,34,112,114,105,109,
+105,116,105,118,101,34,41,41,32,95,49,50,49,56,41,41,41,41,32,40,
+40,65,32,58,49,50,54,56,32,40,40,40,95,51,53,32,95,49,55,53,
+52,41,32,95,49,50,53,53,41,32,40,40,40,83,39,32,95,49,55,54,
+48,41,32,40,40,40,83,39,32,95,49,55,54,48,41,32,40,40,40,83,
+39,32,95,49,55,54,48,41,32,40,40,40,83,39,32,95,49,55,54,48,
+41,32,40,40,66,32,40,40,95,49,54,32,95,49,55,53,51,41,32,40,
+95,49,49,57,56,32,35,52,52,41,41,41,32,40,40,66,32,40,40,95,
+51,53,32,95,49,55,53,52,41,32,95,49,50,53,53,41,41,32,40,40,
+40,83,39,32,40,83,39,32,95,49,55,54,48,41,41,32,40,40,40,83,
+39,32,40,83,39,32,95,49,55,54,48,41,41,32,40,40,40,83,39,32,
+40,83,39,32,95,49,55,54,48,41,41,32,40,40,40,67,39,32,40,67,
+39,32,40,95,50,57,56,32,95,49,55,53,50,41,41,41,32,40,40,66,
+32,40,66,32,40,66,32,95,57,52,49,41,41,41,32,40,40,40,67,39,
+32,66,41,32,40,66,39,32,95,53,48,51,41,41,32,95,53,48,51,41,
+41,41,32,40,95,49,55,54,51,32,40,40,40,95,49,54,32,95,49,55,
+53,51,41,32,40,95,49,49,57,56,32,35,52,52,41,41,32,95,49,50,
+53,53,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,95,50,
+57,56,32,95,49,55,53,50,41,41,41,32,95,57,52,54,41,32,40,40,
+40,95,49,54,32,95,49,55,53,51,41,32,40,95,49,49,57,57,32,34,
+46,46,34,41,41,32,95,49,50,53,53,41,41,41,41,32,40,40,40,67,
+39,32,40,67,39,32,40,95,50,57,53,32,95,49,55,53,50,41,41,41,
+32,95,57,52,53,41,32,40,95,49,49,57,57,32,34,46,46,34,41,41,
+41,41,32,40,40,66,32,40,66,32,40,95,49,52,32,95,49,55,53,51,
+41,41,41,32,40,40,66,32,40,66,32,95,57,52,49,41,41,32,40,40,
+40,67,39,32,66,41,32,79,41,32,40,40,67,32,79,41,32,75,41,41,
+41,41,41,41,41,41,32,40,40,40,67,39,32,40,95,50,57,56,32,95,
+49,55,53,50,41,41,32,95,57,52,50,41,32,40,40,40,95,49,54,32,
+95,49,55,53,51,41,32,40,95,49,49,57,57,32,40,40,79,32,35,49,
+50,52,41,32,75,41,41,41,32,40,40,95,49,55,55,53,32,95,49,50,
+53,52,41,32,40,95,49,49,57,56,32,35,52,52,41,41,41,41,41,41,
+32,40,40,40,67,39,32,40,95,50,57,56,32,95,49,55,53,50,41,41,
+32,95,57,52,52,41,32,40,40,40,95,49,54,32,95,49,55,53,51,41,
+32,40,95,49,49,57,57,32,34,46,46,34,41,41,32,95,49,50,53,53,
+41,41,41,41,32,40,40,40,67,39,32,40,95,50,57,53,32,95,49,55,
+53,50,41,41,32,95,57,52,51,41,32,40,95,49,49,57,57,32,34,46,
+46,34,41,41,41,41,32,40,40,66,32,40,95,49,52,32,95,49,55,53,
+51,41,41,32,40,40,66,32,95,57,52,49,41,32,40,40,67,32,79,41,
+32,75,41,41,41,41,41,41,32,40,40,65,32,58,49,50,54,57,32,40,
+40,95,49,50,55,49,32,95,49,50,48,48,41,32,95,49,50,55,48,41,
+41,32,40,40,65,32,58,49,50,55,48,32,40,40,95,49,55,54,48,32,
+40,40,40,95,49,54,32,95,49,55,53,51,41,32,40,95,49,49,57,57,
+32,40,40,79,32,35,52,53,41,32,75,41,41,41,32,40,40,40,95,50,
+57,56,32,95,49,55,53,50,41,32,95,57,51,49,41,32,95,49,50,53,
+54,41,41,41,32,95,49,50,53,54,41,41,32,40,40,65,32,58,49,50,
+55,49,32,40,40,66,32,40,40,83,39,32,40,95,49,53,32,95,49,55,
+53,51,41,41,32,40,40,95,50,57,56,32,95,49,55,53,50,41,32,40,
+40,40,83,39,32,83,41,32,40,40,40,67,39,32,67,41,32,40,40,66,
+32,40,67,32,83,39,41,41,32,40,40,40,83,39,32,67,41,32,40,85,
+32,40,40,40,67,39,32,66,41,32,40,40,67,32,40,40,67,32,61,61,
+41,32,35,49,52,41,41,32,95,49,51,53,41,41,32,40,85,32,40,75,
+32,95,49,51,52,41,41,41,41,41,32,73,41,41,41,32,40,90,32,75,
+41,41,41,32,95,57,49,57,41,41,41,41,32,40,40,66,32,40,66,32,
+95,49,55,54,50,41,41,32,40,40,66,32,40,95,49,53,32,95,49,55,
+53,51,41,41,32,40,40,95,50,57,56,32,95,49,55,53,50,41,32,80,
+41,41,41,41,41,32,40,40,65,32,58,49,50,55,50,32,40,40,95,49,
+55,54,48,32,40,40,40,95,49,53,32,95,49,55,53,51,41,32,40,40,
+40,95,50,57,56,32,95,49,55,53,50,41,32,95,57,54,51,41,32,40,
+40,40,95,49,55,32,95,49,55,53,51,41,32,95,49,50,52,55,41,32,
+40,95,49,49,57,57,32,40,40,79,32,35,54,49,41,32,75,41,41,41,
+41,41,32,95,49,50,53,53,41,41,32,95,49,50,55,51,41,41,32,40,
+40,65,32,58,49,50,55,51,32,40,40,95,49,55,54,48,32,40,40,40,
+95,50,57,56,32,95,49,55,53,50,41,32,40,95,50,56,57,32,95,57,
+54,50,41,41,32,95,49,50,52,56,41,41,32,40,40,40,95,49,53,32,
+95,49,55,53,51,41,32,40,40,40,95,50,57,56,32,95,49,55,53,50,
+41,32,95,57,54,52,41,32,40,40,40,95,49,55,32,95,49,55,53,51,
+41,32,95,49,50,49,52,41,32,40,95,49,49,57,57,32,34,58,58,34,
+41,41,41,41,32,95,49,50,51,53,41,41,41,32,40,40,65,32,58,49,
+50,55,52,32,40,40,83,32,40,85,32,40,95,50,55,32,34,101,84,117,
+112,108,101,34,41,41,41,32,40,40,66,32,40,67,32,80,41,41,32,40,
+90,32,40,90,32,95,57,50,52,41,41,41,41,41,32,40,40,65,32,58,
+49,50,55,53,32,40,40,40,83,39,32,95,49,51,48,41,32,95,49,48,
+57,56,41,32,95,49,52,57,41,41,32,40,40,65,32,58,49,50,55,54,
+32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,66,32,66,
+39,41,32,95,49,48,56,53,41,41,32,40,40,66,32,40,66,32,40,95,
+52,55,49,32,40,40,79,32,35,52,54,41,32,75,41,41,41,41,32,40,
+40,40,67,39,32,66,41,32,95,53,48,52,41,32,40,40,67,32,79,41,
+32,75,41,41,41,41,41,32,40,40,65,32,58,49,50,55,55,32,40,90,
+32,40,40,66,32,85,41,32,40,90,32,40,40,67,32,40,40,40,67,39,
+32,83,39,41,32,40,40,66,32,67,39,41,32,40,40,66,32,40,67,39,
+32,95,53,48,52,41,41,32,40,40,66,32,40,66,32,95,49,49,48,49,
+41,41,32,40,40,67,32,40,40,40,67,39,32,83,39,41,32,95,49,48,
+55,53,41,32,40,85,32,75,41,41,41,32,40,85,32,65,41,41,41,41,
+41,41,32,40,40,66,32,40,66,32,40,95,53,48,52,32,34,58,92,49,
+48,38,34,41,41,41,32,40,40,66,32,40,66,32,40,95,53,48,52,32,
+34,32,32,102,111,117,110,100,58,32,32,32,32,34,41,41,41,32,40,40,
+40,67,39,32,66,41,32,40,40,66,32,95,53,48,52,41,32,40,40,66,
+32,95,52,54,56,41,32,40,40,40,67,39,32,95,53,48,52,41,32,40,
+95,52,51,49,32,95,49,49,53,51,41,41,32,40,40,79,32,34,69,79,
+70,34,41,32,75,41,41,41,41,41,32,40,40,66,32,40,95,53,48,52,
+32,40,40,79,32,35,49,48,41,32,75,41,41,41,32,40,40,66,32,40,
+95,53,48,52,32,34,32,32,101,120,112,101,99,116,101,100,58,32,34,41,
+41,32,40,40,66,32,95,49,56,54,49,41,32,40,95,52,56,52,32,95,
+49,52,51,41,41,41,41,41,41,41,41,41,32,95,49,49,55,48,41,41,
+41,41,41,32,40,40,65,32,58,49,50,55,56,32,85,41,32,40,40,65,
+32,58,49,50,55,57,32,40,85,32,73,41,41,32,40,40,65,32,58,49,
+50,56,48,32,40,40,40,67,39,32,40,67,39,32,40,95,51,53,32,95,
+49,54,57,55,41,41,41,32,95,49,50,55,57,41,32,40,85,32,40,75,
+32,40,95,51,55,32,95,49,54,57,55,41,41,41,41,41,32,40,40,65,
+32,58,49,50,56,49,32,40,40,95,50,57,51,32,40,40,66,32,40,66,
+32,40,95,50,56,50,32,95,49,50,55,56,41,41,41,32,40,40,66,32,
+40,40,67,39,32,40,67,39,32,40,95,51,53,32,95,49,54,57,55,41,
+41,41,32,95,49,50,55,57,41,41,32,40,40,66,32,85,41,32,40,40,
+66,32,40,66,32,40,66,32,40,95,51,55,32,95,49,54,57,55,41,41,
+41,41,32,40,66,32,80,41,41,41,41,41,41,32,40,95,50,57,55,32,
+95,49,50,56,49,41,41,41,32,40,40,65,32,58,49,50,56,50,32,40,
+40,40,40,40,95,49,50,32,95,49,50,56,49,41,32,40,40,66,32,40,
+95,50,56,50,32,95,49,50,55,56,41,41,32,40,40,66,32,40,66,32,
+40,95,51,55,32,95,49,54,57,55,41,41,41,32,80,41,41,41,32,40,
+95,52,49,32,95,49,50,56,51,41,41,32,40,40,66,32,40,66,32,40,
+95,50,56,50,32,95,49,50,55,56,41,41,41,32,40,40,40,67,39,32,
+66,41,32,40,40,66,32,40,67,39,32,40,95,51,53,32,95,49,54,57,
+55,41,41,41,32,95,49,50,55,57,41,41,32,40,40,66,32,85,41,32,
+40,90,32,95,49,50,55,57,41,41,41,41,41,32,40,95,50,49,32,95,
+49,50,56,50,41,41,41,32,40,40,65,32,58,49,50,56,51,32,40,40,
+40,40,95,51,51,32,95,49,50,56,50,41,32,40,40,66,32,40,66,32,
+40,95,50,56,50,32,95,49,50,55,56,41,41,41,32,40,40,40,67,39,
+32,66,41,32,40,40,66,32,40,67,39,32,40,95,51,53,32,95,49,54,
+57,55,41,41,41,32,95,49,50,55,57,41,41,32,40,40,66,32,85,41,
+32,40,66,32,95,49,50,55,57,41,41,41,41,41,32,40,95,49,54,32,
+95,49,50,56,50,41,41,32,40,95,52,48,32,95,49,50,56,51,41,41,
+41,32,40,40,65,32,58,49,50,56,52,32,40,40,95,52,50,32,95,49,
+50,56,51,41,32,95,50,55,41,41,32,40,40,65,32,58,49,50,56,53,
+32,40,40,66,32,40,95,50,56,50,32,95,49,50,55,56,41,41,32,40,
+40,66,32,40,66,32,40,95,51,55,32,95,49,54,57,55,41,41,41,32,
+40,40,67,32,40,83,39,32,80,41,41,32,73,41,41,41,41,32,40,40,
+65,32,58,49,50,56,54,32,40,40,66,32,40,95,50,56,50,32,95,49,
+50,55,56,41,41,32,40,40,66,32,40,66,32,40,95,51,55,32,95,49,
+54,57,55,41,41,41,32,40,66,32,40,80,32,95,49,53,54,56,41,41,
+41,41,41,32,40,40,65,32,58,49,50,56,55,32,40,40,66,32,40,95,
+50,56,50,32,95,49,50,55,56,41,41,32,40,90,32,40,40,66,32,40,
+95,51,55,32,95,49,54,57,55,41,41,32,40,80,32,95,49,53,54,56,
+41,41,41,41,41,32,40,40,65,32,58,49,50,56,56,32,40,40,95,50,
+56,50,32,95,49,50,55,56,41,32,40,40,66,32,40,95,51,55,32,95,
+49,54,57,55,41,41,32,40,40,83,32,80,41,32,73,41,41,41,41,32,
+40,40,65,32,58,49,50,56,57,32,40,40,66,32,40,95,50,56,50,32,
+95,49,50,55,56,41,41,32,40,40,40,67,39,32,66,41,32,40,95,51,
+53,32,95,49,54,57,55,41,41,32,40,40,66,32,40,66,32,40,95,51,
+55,32,95,49,54,57,55,41,41,41,32,40,67,32,80,41,41,41,41,41,
+32,40,40,65,32,58,49,50,57,48,32,95,54,57,41,32,40,40,65,32,
+58,49,50,57,49,32,95,49,48,49,51,41,32,40,40,65,32,58,49,50,
+57,50,32,40,40,95,52,50,32,95,51,48,50,41,32,95,50,55,41,41,
+32,40,40,65,32,58,49,50,57,51,32,40,40,66,32,40,40,95,51,53,
+32,95,49,54,57,55,41,32,95,49,54,55,48,41,41,32,40,40,66,32,
+40,40,67,39,32,95,50,56,50,41,32,40,40,66,32,95,49,54,55,49,
+41,32,40,40,66,32,40,95,50,56,50,32,40,95,52,52,56,32,35,49,
+41,41,41,32,40,95,52,54,53,32,40,40,67,32,40,95,50,50,52,32,
+95,49,52,51,41,41,32,34,45,45,34,41,41,41,41,41,41,32,40,40,
+66,32,40,95,50,56,50,32,95,49,56,54,53,41,41,32,95,49,50,57,
+52,41,41,41,41,32,40,40,65,32,58,49,50,57,52,32,40,85,32,40,
+40,40,67,39,32,67,41,32,40,40,67,39,32,67,41,32,40,40,66,32,
+40,83,32,73,41,41,32,40,40,66,32,40,66,32,89,41,41,32,40,40,
+66,32,40,66,32,40,66,32,95,49,49,49,48,41,41,41,32,40,40,67,
+39,32,40,67,39,32,95,52,51,48,41,41,32,40,40,66,32,40,66,32,
+85,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,
+39,32,79,41,41,41,41,32,40,40,66,32,40,66,32,40,40,67,39,32,
+66,41,32,80,41,41,41,32,40,66,32,95,49,50,57,53,41,41,41,32,
+75,41,41,41,41,41,41,41,41,32,40,40,66,32,40,40,83,39,32,95,
+50,56,50,41,32,40,40,66,32,95,53,49,54,41,32,40,40,66,32,40,
+95,50,56,50,32,95,50,55,41,41,32,40,40,66,32,40,95,53,48,52,
+32,34,116,114,97,110,115,108,97,116,101,58,32,110,111,116,32,102,111,117,
+110,100,32,34,41,41,32,95,49,48,56,56,41,41,41,41,41,32,40,67,
+32,95,49,49,49,52,41,41,41,41,41,32,40,40,65,32,58,49,50,57,
+53,32,40,40,66,32,89,41,32,40,40,40,67,39,32,40,67,39,32,83,
+41,41,32,40,40,40,67,39,32,40,83,39,32,67,41,41,32,40,40,40,
+67,39,32,40,67,39,32,40,67,39,32,83,39,41,41,41,32,40,40,40,
+67,39,32,66,41,32,80,41,32,40,40,40,83,39,32,40,67,39,32,66,
+41,41,32,40,66,32,95,49,56,54,53,41,41,32,73,41,41,41,32,40,
+90,32,75,41,41,41,32,40,40,66,32,40,66,32,85,41,41,32,40,40,
+40,83,39,32,66,41,32,40,40,66,32,83,41,32,40,40,66,32,40,40,
+83,39,32,83,39,41,32,40,40,67,32,60,41,32,35,53,41,41,41,32,
+40,40,40,83,39,32,67,41,32,40,40,66,32,40,40,83,39,32,83,39,
+41,32,40,40,67,32,60,41,32,35,54,41,41,41,32,40,40,40,67,39,
+32,67,41,32,40,40,66,32,40,40,67,39,32,83,39,41,32,40,40,67,
+32,60,41,32,35,55,41,41,41,32,40,40,66,32,85,41,32,40,40,67,
+32,66,41,32,40,40,66,32,40,95,56,56,48,32,40,95,56,56,50,32,
+40,95,57,53,54,32,34,100,121,110,115,121,109,34,41,41,41,41,32,40,
+40,66,32,95,56,56,50,41,32,95,57,53,53,41,41,41,41,41,41,32,
+40,85,32,40,40,40,83,39,32,95,50,56,50,41,32,40,40,66,32,95,
+53,49,54,41,32,40,40,66,32,40,95,50,56,50,32,95,50,55,41,41,
+32,40,95,53,48,52,32,34,116,114,97,110,115,58,32,110,111,32,112,114,
+105,109,111,112,32,34,41,41,41,41,32,40,40,67,32,40,95,52,55,54,
+32,95,49,52,51,41,41,32,95,49,50,57,54,41,41,41,41,41,41,32,
+40,40,66,32,85,41,32,40,40,67,32,66,41,32,95,56,57,54,41,41,
+41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,67,41,41,32,40,
+40,66,32,40,66,32,40,40,83,39,32,83,39,41,32,40,40,67,32,60,
+41,32,35,49,41,41,41,41,32,40,40,66,32,40,40,67,39,32,67,41,
+32,40,40,66,32,40,40,83,39,32,83,39,41,32,40,40,67,32,60,41,
+32,35,50,41,41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,
+32,40,67,32,40,40,67,32,61,61,41,32,35,50,41,41,41,32,40,85,
+32,95,49,56,54,53,41,41,41,41,41,32,40,40,66,32,85,41,32,40,
+40,67,32,66,41,32,95,56,51,48,41,41,41,41,41,32,40,85,32,95,
+49,56,54,53,41,41,41,41,41,41,32,40,40,66,32,40,95,50,56,50,
+32,95,50,55,41,41,32,40,40,66,32,40,95,53,48,52,32,34,116,114,
+97,110,115,58,32,105,109,112,111,115,115,105,98,108,101,58,32,34,41,41,
+32,40,95,49,56,52,50,32,95,56,56,55,41,41,41,41,41,41,32,40,
+40,65,32,58,49,50,57,54,32,40,40,79,32,40,40,80,32,40,40,79,
+32,35,54,54,41,32,75,41,41,32,66,41,41,32,40,40,79,32,40,40,
+80,32,40,40,79,32,35,55,57,41,32,75,41,41,32,79,41,41,32,40,
+40,79,32,40,40,80,32,40,40,79,32,35,55,53,41,32,75,41,41,32,
+75,41,41,32,40,40,79,32,40,40,80,32,34,67,39,34,41,32,67,39,
+41,41,32,40,40,79,32,40,40,80,32,40,40,79,32,35,54,55,41,32,
+75,41,41,32,67,41,41,32,40,40,79,32,40,40,80,32,40,40,79,32,
+35,54,53,41,32,75,41,41,32,65,41,41,32,40,40,79,32,40,40,80,
+32,34,83,39,34,41,32,83,39,41,41,32,40,40,79,32,40,40,80,32,
+40,40,79,32,35,56,48,41,32,75,41,41,32,80,41,41,32,40,40,79,
+32,40,40,80,32,40,40,79,32,35,55,51,41,32,75,41,41,32,73,41,
+41,32,40,40,79,32,40,40,80,32,40,40,79,32,35,56,51,41,32,75,
+41,41,32,83,41,41,32,40,40,79,32,40,40,80,32,40,40,79,32,35,
+56,53,41,32,75,41,41,32,85,41,41,32,40,40,79,32,40,40,80,32,
+40,40,79,32,35,56,57,41,32,75,41,41,32,89,41,41,32,40,40,79,
+32,40,40,80,32,34,66,39,34,41,32,66,39,41,41,32,40,40,79,32,
+40,40,80,32,40,40,79,32,35,57,48,41,32,75,41,41,32,90,41,41,
+32,40,40,79,32,40,40,80,32,40,40,79,32,35,56,50,41,32,75,41,
+41,32,82,41,41,32,40,40,79,32,40,40,80,32,34,75,50,34,41,32,
+75,50,41,41,32,40,40,79,32,40,40,80,32,34,75,51,34,41,32,75,
+51,41,41,32,40,40,79,32,40,40,80,32,34,75,52,34,41,32,75,52,
+41,41,32,40,40,79,32,40,40,80,32,40,40,79,32,35,52,51,41,32,
+75,41,41,32,43,41,41,32,40,40,79,32,40,40,80,32,40,40,79,32,
+35,52,53,41,32,75,41,41,32,45,41,41,32,40,40,79,32,40,40,80,
+32,40,40,79,32,35,52,50,41,32,75,41,41,32,42,41,41,32,40,40,
+79,32,40,40,80,32,34,113,117,111,116,34,41,32,113,117,111,116,41,41,
+32,40,40,79,32,40,40,80,32,34,114,101,109,34,41,32,114,101,109,41,
+41,32,40,40,79,32,40,40,80,32,34,117,113,117,111,116,34,41,32,117,
+113,117,111,116,41,41,32,40,40,79,32,40,40,80,32,34,117,114,101,109,
+34,41,32,117,114,101,109,41,41,32,40,40,79,32,40,40,80,32,34,110,
+101,103,34,41,32,110,101,103,41,41,32,40,40,79,32,40,40,80,32,34,
+97,110,100,34,41,32,97,110,100,41,41,32,40,40,79,32,40,40,80,32,
+34,111,114,34,41,32,111,114,41,41,32,40,40,79,32,40,40,80,32,34,
+120,111,114,34,41,32,120,111,114,41,41,32,40,40,79,32,40,40,80,32,
+34,105,110,118,34,41,32,105,110,118,41,41,32,40,40,79,32,40,40,80,
+32,34,115,104,108,34,41,32,115,104,108,41,41,32,40,40,79,32,40,40,
+80,32,34,115,104,114,34,41,32,115,104,114,41,41,32,40,40,79,32,40,
+40,80,32,34,97,115,104,114,34,41,32,97,115,104,114,41,41,32,40,40,
+79,32,40,40,80,32,34,115,117,98,116,114,97,99,116,34,41,32,115,117,
+98,116,114,97,99,116,41,41,32,40,40,79,32,40,40,80,32,34,61,61,
+34,41,32,61,61,41,41,32,40,40,79,32,40,40,80,32,34,47,61,34,
+41,32,47,61,41,41,32,40,40,79,32,40,40,80,32,40,40,79,32,35,
+54,48,41,32,75,41,41,32,60,41,41,32,40,40,79,32,40,40,80,32,
+34,60,61,34,41,32,60,61,41,41,32,40,40,79,32,40,40,80,32,40,
+40,79,32,35,54,50,41,32,75,41,41,32,62,41,41,32,40,40,79,32,
+40,40,80,32,34,62,61,34,41,32,62,61,41,41,32,40,40,79,32,40,
+40,80,32,34,117,60,34,41,32,117,60,41,41,32,40,40,79,32,40,40,
+80,32,34,117,60,61,34,41,32,117,60,61,41,41,32,40,40,79,32,40,
+40,80,32,34,117,62,34,41,32,117,62,41,41,32,40,40,79,32,40,40,
+80,32,34,117,62,61,34,41,32,117,62,61,41,41,32,40,40,79,32,40,
+40,80,32,34,111,114,100,34,41,32,111,114,100,41,41,32,40,40,79,32,
+40,40,80,32,34,99,104,114,34,41,32,99,104,114,41,41,32,40,40,79,
+32,40,40,80,32,34,102,43,34,41,32,102,43,41,41,32,40,40,79,32,
+40,40,80,32,34,102,45,34,41,32,102,45,41,41,32,40,40,79,32,40,
+40,80,32,34,102,42,34,41,32,102,42,41,41,32,40,40,79,32,40,40,
+80,32,34,102,47,34,41,32,102,47,41,41,32,40,40,79,32,40,40,80,
+32,34,102,61,61,34,41,32,102,61,61,41,41,32,40,40,79,32,40,40,
+80,32,34,102,47,61,34,41,32,102,47,61,41,41,32,40,40,79,32,40,
+40,80,32,34,102,60,34,41,32,102,60,41,41,32,40,40,79,32,40,40,
+80,32,34,102,60,61,34,41,32,102,60,61,41,41,32,40,40,79,32,40,
+40,80,32,34,102,62,34,41,32,102,62,41,41,32,40,40,79,32,40,40,
+80,32,34,102,62,61,34,41,32,102,62,61,41,41,32,40,40,79,32,40,
+40,80,32,34,102,110,101,103,34,41,32,102,110,101,103,41,41,32,40,40,
+79,32,40,40,80,32,34,102,115,104,111,119,34,41,32,102,115,104,111,119,
+41,41,32,40,40,79,32,40,40,80,32,34,102,114,101,97,100,34,41,32,
+102,114,101,97,100,41,41,32,40,40,79,32,40,40,80,32,34,105,116,111,
+102,34,41,32,105,116,111,102,41,41,32,40,40,79,32,40,40,80,32,34,
+115,101,113,34,41,32,115,101,113,41,41,32,40,40,79,32,40,40,80,32,
+34,101,114,114,111,114,34,41,32,101,114,114,111,114,41,41,32,40,40,79,
+32,40,40,80,32,34,115,101,113,117,97,108,34,41,32,115,101,113,117,97,
+108,41,41,32,40,40,79,32,40,40,80,32,34,101,113,117,97,108,34,41,
+32,101,113,117,97,108,41,41,32,40,40,79,32,40,40,80,32,34,115,99,
+109,112,34,41,32,115,99,109,112,41,41,32,40,40,79,32,40,40,80,32,
+34,105,99,109,112,34,41,32,105,99,109,112,41,41,32,40,40,79,32,40,
+40,80,32,34,114,110,102,34,41,32,114,110,102,41,41,32,40,40,79,32,
+40,40,80,32,34,110,111,77,97,116,99,104,34,41,32,110,111,77,97,116,
+99,104,41,41,32,40,40,79,32,40,40,80,32,34,110,111,68,101,102,97,
+117,108,116,34,41,32,110,111,68,101,102,97,117,108,116,41,41,32,40,40,
+79,32,40,40,80,32,34,73,79,46,62,62,61,34,41,32,73,79,46,62,
+62,61,41,41,32,40,40,79,32,40,40,80,32,34,73,79,46,62,62,34,
+41,32,73,79,46,62,62,41,41,32,40,40,79,32,40,40,80,32,34,73,
+79,46,114,101,116,117,114,110,34,41,32,73,79,46,114,101,116,117,114,110,
+41,41,32,40,40,79,32,40,40,80,32,34,73,79,46,112,114,105,110,116,
+34,41,32,73,79,46,112,114,105,110,116,41,41,32,40,40,79,32,40,40,
+80,32,34,73,79,46,115,101,114,105,97,108,105,122,101,34,41,32,73,79,
+46,115,101,114,105,97,108,105,122,101,41,41,32,40,40,79,32,40,40,80,
+32,34,73,79,46,100,101,115,101,114,105,97,108,105,122,101,34,41,32,73,
+79,46,100,101,115,101,114,105,97,108,105,122,101,41,41,32,40,40,79,32,
+40,40,80,32,34,73,79,46,115,116,100,105,110,34,41,32,73,79,46,115,
+116,100,105,110,41,41,32,40,40,79,32,40,40,80,32,34,73,79,46,115,
+116,100,111,117,116,34,41,32,73,79,46,115,116,100,111,117,116,41,41,32,
+40,40,79,32,40,40,80,32,34,73,79,46,115,116,100,101,114,114,34,41,
+32,73,79,46,115,116,100,101,114,114,41,41,32,40,40,79,32,40,40,80,
+32,34,73,79,46,103,101,116,65,114,103,115,34,41,32,73,79,46,103,101,
+116,65,114,103,115,41,41,32,40,40,79,32,40,40,80,32,34,73,79,46,
+112,101,114,102,111,114,109,73,79,34,41,32,73,79,46,112,101,114,102,111,
+114,109,73,79,41,41,32,40,40,79,32,40,40,80,32,34,73,79,46,99,
+97,116,99,104,34,41,32,73,79,46,99,97,116,99,104,41,41,32,40,40,
+79,32,40,40,80,32,34,100,121,110,115,121,109,34,41,32,100,121,110,115,
+121,109,41,41,32,40,40,79,32,40,40,80,32,34,110,101,119,67,65,83,
+116,114,105,110,103,76,101,110,34,41,32,110,101,119,67,65,83,116,114,105,
+110,103,76,101,110,41,41,32,40,40,79,32,40,40,80,32,34,112,101,101,
+107,67,65,83,116,114,105,110,103,34,41,32,112,101,101,107,67,65,83,116,
+114,105,110,103,41,41,32,40,40,79,32,40,40,80,32,34,112,101,101,107,
+67,65,83,116,114,105,110,103,76,101,110,34,41,32,112,101,101,107,67,65,
+83,116,114,105,110,103,76,101,110,41,41,32,40,40,79,32,40,40,80,32,
+34,116,111,73,110,116,34,41,32,116,111,73,110,116,41,41,32,40,40,79,
+32,40,40,80,32,34,116,111,80,116,114,34,41,32,116,111,80,116,114,41,
+41,32,40,40,79,32,40,40,80,32,34,116,111,68,98,108,34,41,32,116,
+111,68,98,108,41,41,32,40,40,79,32,40,40,80,32,34,112,61,61,34,
+41,32,112,61,61,41,41,32,40,40,79,32,40,40,80,32,34,112,110,117,
+108,108,34,41,32,112,110,117,108,108,41,41,32,40,40,79,32,40,40,80,
+32,34,112,99,97,115,116,34,41,32,112,99,97,115,116,41,41,32,40,40,
+79,32,40,40,80,32,34,112,43,34,41,32,112,43,41,41,32,40,40,79,
+32,40,40,80,32,34,112,45,34,41,32,112,45,41,41,32,40,40,79,32,
+40,40,80,32,34,65,46,97,108,108,111,99,34,41,32,65,46,97,108,108,
+111,99,41,41,32,40,40,79,32,40,40,80,32,34,65,46,115,105,122,101,
+34,41,32,65,46,115,105,122,101,41,41,32,40,40,79,32,40,40,80,32,
+34,65,46,114,101,97,100,34,41,32,65,46,114,101,97,100,41,41,32,40,
+40,79,32,40,40,80,32,34,65,46,119,114,105,116,101,34,41,32,65,46,
+119,114,105,116,101,41,41,32,40,40,79,32,40,40,80,32,34,65,46,61,
+61,34,41,32,65,46,61,61,41,41,32,75,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,49,50,57,
+55,32,34,68,97,116,97,46,66,111,111,108,95,84,121,112,101,46,34,41,
+32,40,40,65,32,58,49,50,57,56,32,34,68,97,116,97,46,76,105,115,
+116,95,84,121,112,101,46,34,41,32,40,40,65,32,58,49,50,57,57,32,
+34,80,114,105,109,105,116,105,118,101,115,46,73,110,116,34,41,32,40,40,
+65,32,58,49,51,48,48,32,34,80,114,105,109,105,116,105,118,101,115,46,
+87,111,114,100,34,41,32,40,40,65,32,58,49,51,48,49,32,34,80,114,
+105,109,105,116,105,118,101,115,46,68,111,117,98,108,101,34,41,32,40,40,
+65,32,58,49,51,48,50,32,34,80,114,105,109,105,116,105,118,101,115,46,
+67,104,97,114,34,41,32,40,40,65,32,58,49,51,48,51,32,34,68,97,
+116,97,46,73,110,116,101,103,101,114,95,84,121,112,101,46,73,110,116,101,
+103,101,114,34,41,32,40,40,65,32,58,49,51,48,52,32,34,80,114,105,
+109,105,116,105,118,101,115,46,126,34,41,32,40,40,65,32,58,49,51,48,
+53,32,34,80,114,105,109,105,116,105,118,101,115,46,61,62,34,41,32,40,
+40,65,32,58,49,51,48,54,32,34,80,114,105,109,105,116,105,118,101,115,
+46,45,62,34,41,32,40,40,65,32,58,49,51,48,55,32,34,80,114,105,
+109,105,116,105,118,101,115,46,83,121,109,98,111,108,34,41,32,40,40,65,
+32,58,49,51,48,56,32,34,80,114,105,109,105,116,105,118,101,115,46,78,
+97,116,34,41,32,40,40,65,32,58,49,51,48,57,32,34,80,114,105,109,
+105,116,105,118,101,115,46,84,121,112,101,34,41,32,40,40,65,32,58,49,
+51,49,48,32,34,80,114,105,109,105,116,105,118,101,115,46,67,111,110,115,
+116,114,97,105,110,116,34,41,32,40,40,65,32,58,49,51,49,49,32,34,
+68,97,116,97,46,84,121,112,101,76,105,116,115,46,75,110,111,119,110,78,
+97,116,34,41,32,40,40,65,32,58,49,51,49,50,32,34,68,97,116,97,
+46,84,121,112,101,76,105,116,115,46,75,110,111,119,110,83,121,109,98,111,
+108,34,41,32,40,40,65,32,58,49,51,49,51,32,40,40,66,32,40,66,
+32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,
+41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
+32,40,66,32,67,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,
+66,32,40,66,32,40,66,32,67,41,41,41,41,41,32,40,40,66,32,40,
+66,32,40,66,32,40,66,32,67,41,41,41,41,32,40,40,66,32,40,66,
+32,40,66,32,67,41,41,41,32,40,40,66,32,40,66,32,67,41,41,32,
+80,41,41,41,41,41,41,41,32,40,40,65,32,58,49,51,49,52,32,40,
+85,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,
+75,41,41,41,41,41,41,41,41,32,40,40,65,32,58,49,51,49,53,32,
+40,85,32,40,75,50,32,40,75,52,32,65,41,41,41,41,32,40,40,65,
+32,58,49,51,49,54,32,40,40,66,32,40,66,32,67,41,41,32,80,41,
+41,32,40,40,65,32,58,49,51,49,55,32,80,41,32,40,40,65,32,58,
+49,51,49,56,32,80,41,32,40,40,65,32,58,49,51,49,57,32,40,40,
+95,50,50,50,32,40,40,67,32,66,41,32,40,40,66,32,90,41,32,40,
+40,67,32,66,41,32,40,40,66,32,90,41,32,40,40,40,67,39,32,66,
+41,32,40,40,66,32,40,95,50,50,51,32,95,49,48,55,56,41,41,32,
+95,49,51,51,53,41,41,32,95,49,51,51,53,41,41,41,41,41,41,32,
+40,95,50,50,54,32,95,49,51,49,57,41,41,41,32,40,40,65,32,58,
+49,51,50,48,32,40,85,32,65,41,41,32,40,40,65,32,58,49,51,50,
+49,32,40,40,66,32,40,66,32,67,41,41,32,80,41,41,32,40,40,65,
+32,58,49,51,50,50,32,40,40,66,32,85,41,32,40,40,66,32,40,40,
+67,39,32,40,67,39,32,67,41,41,32,40,40,40,67,39,32,40,67,39,
+32,67,41,41,32,40,40,40,83,39,32,66,41,32,40,40,66,32,40,67,
+39,32,83,39,41,41,32,40,40,66,32,40,40,67,39,32,67,39,41,32,
+40,40,66,32,95,49,50,57,48,41,32,95,49,52,51,48,41,41,41,32,
+40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,
+40,67,39,32,83,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,
+39,32,83,41,32,40,40,67,32,40,40,40,67,39,32,83,39,41,32,95,
+49,51,55,56,41,32,40,85,32,40,90,32,40,90,32,40,90,32,40,90,
+32,40,90,32,75,41,41,41,41,41,41,41,41,32,40,85,32,40,75,32,
+40,90,32,40,90,32,40,90,32,40,90,32,75,41,41,41,41,41,41,41,
+41,32,40,85,32,40,75,50,32,40,90,32,40,90,32,40,90,32,75,41,
+41,41,41,41,41,41,32,40,85,32,40,75,51,32,40,90,32,40,90,32,
+75,41,41,41,41,41,41,32,40,85,32,40,75,52,32,40,90,32,75,41,
+41,41,41,41,32,40,85,32,40,75,32,40,75,52,32,75,41,41,41,41,
+41,32,40,85,32,40,75,32,40,75,52,32,65,41,41,41,41,41,41,41,
+32,40,40,40,83,39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,
+66,32,40,83,39,32,83,41,41,41,32,40,40,40,67,39,32,66,41,32,
+40,40,66,32,40,67,39,32,40,83,39,32,83,41,41,41,32,40,40,66,
+32,40,67,39,32,40,67,39,32,67,41,41,41,32,40,40,40,67,39,32,
+40,67,39,32,40,67,39,32,83,41,41,41,32,40,40,40,67,39,32,40,
+83,39,32,40,67,39,32,67,41,41,41,32,40,40,40,67,39,32,40,67,
+39,32,40,67,39,32,83,41,41,41,32,40,40,40,67,39,32,66,41,32,
+40,40,66,32,67,41,32,40,40,40,67,39,32,40,67,39,32,67,39,41,
+41,32,40,40,40,67,39,32,66,41,32,95,49,51,50,51,41,32,40,40,
+66,32,40,95,52,56,53,32,40,40,95,50,57,48,32,40,95,50,50,51,
+32,95,49,48,55,56,41,41,32,95,54,54,52,41,41,41,32,40,40,66,
+32,95,52,50,57,41,32,40,40,66,32,40,95,52,51,48,32,40,85,32,
+40,75,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,
+32,40,40,67,32,79,41,32,75,41,41,41,41,41,41,41,41,41,41,41,
+32,95,49,49,48,55,41,41,41,41,41,32,40,40,66,32,95,52,50,57,
+41,32,40,85,32,40,90,32,75,41,41,41,41,41,41,32,40,40,66,32,
+95,49,49,48,57,41,32,95,49,51,52,50,41,41,41,32,40,40,66,32,
+95,52,50,57,41,32,40,85,32,40,75,32,75,41,41,41,41,41,32,40,
+40,66,32,95,49,49,48,57,41,32,95,49,51,52,57,41,41,41,32,40,
+40,66,32,95,52,50,57,41,32,40,85,32,40,75,32,65,41,41,41,41,
+41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,95,50,56,50,32,
+95,52,53,53,41,41,41,41,32,40,40,67,39,32,40,67,39,32,95,52,
+51,49,41,41,32,40,40,40,83,39,32,67,41,32,40,40,40,83,39,32,
+67,41,32,40,40,40,83,39,32,67,41,32,40,40,66,32,40,67,32,95,
+49,51,50,53,41,41,32,95,49,51,52,48,41,41,32,95,49,51,52,49,
+41,41,32,95,49,51,52,52,41,41,32,95,49,51,52,55,41,41,41,41,
+41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,95,49,49,49,
+48,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,
+95,52,51,48,32,40,85,32,40,40,40,67,39,32,40,67,39,32,79,41,
+41,32,80,41,32,75,41,41,41,41,41,41,41,32,40,40,40,67,39,32,
+66,41,32,40,40,66,32,40,67,39,32,40,67,39,32,95,53,48,51,41,
+41,41,32,40,40,40,67,39,32,66,41,32,40,66,39,32,80,41,41,32,
+95,49,51,51,49,41,41,41,32,40,95,52,51,48,32,40,85,32,40,40,
+67,32,66,41,32,40,90,32,40,40,66,32,40,66,32,90,41,41,32,40,
+40,40,67,39,32,40,67,39,32,40,67,39,32,79,41,41,41,32,40,40,
+67,39,32,40,67,39,32,80,41,41,32,95,53,49,54,41,41,32,75,41,
+41,41,41,41,41,41,41,41,41,41,41,32,95,49,51,51,51,41,41,41,
+32,40,95,52,51,49,32,95,49,51,50,52,41,41,41,41,32,40,40,65,
+32,58,49,51,50,51,32,40,40,66,32,40,66,32,40,40,83,39,32,66,
+41,32,40,66,39,32,40,66,39,32,40,40,66,32,40,83,39,32,66,41,
+41,32,40,40,66,32,40,66,32,95,50,57,50,41,41,32,40,40,40,67,
+39,32,66,41,32,40,40,66,32,95,50,57,50,41,32,40,89,32,40,40,
+66,32,40,80,32,95,49,53,54,56,41,41,32,40,40,66,32,40,67,32,
+66,41,41,32,40,40,66,32,90,41,32,40,40,66,32,40,66,32,90,41,
+41,32,40,66,32,40,67,32,95,50,57,50,41,41,41,41,41,41,41,41,
+41,32,40,89,32,40,40,66,32,40,80,32,95,49,53,54,56,41,41,32,
+40,40,66,32,40,67,32,66,41,41,32,40,40,66,32,90,41,32,40,66,
+32,40,67,32,95,50,57,50,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,32,95,49,51,49,51,41,41,32,40,40,65,32,58,49,51,50,52,
+32,40,40,83,32,73,41,32,40,40,66,32,40,83,32,66,41,41,32,40,
+40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,90,41,41,
+32,40,40,66,32,40,66,32,90,41,41,32,40,40,40,67,39,32,66,41,
+32,40,66,39,32,80,41,41,32,40,40,66,32,40,66,32,85,41,41,32,
+40,40,66,32,40,40,67,39,32,66,41,32,66,41,41,32,40,40,40,67,
+39,32,66,41,32,40,40,66,32,40,67,39,32,40,67,39,32,40,67,39,
+32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,
+32,67,41,41,41,41,41,41,41,41,41,32,40,40,67,32,40,40,40,67,
+39,32,83,39,41,32,40,40,66,32,67,39,41,32,40,40,66,32,67,39,
+41,32,40,40,66,32,67,39,41,32,40,40,66,32,67,39,41,32,40,40,
+66,32,67,39,41,32,40,40,66,32,67,39,41,32,40,40,66,32,67,39,
+41,32,40,40,66,32,67,39,41,32,40,40,66,32,67,39,41,32,40,66,
+39,32,80,41,41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,
+66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
+40,67,39,32,67,41,41,41,41,41,41,41,41,41,32,40,40,40,83,39,
+32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,
+32,40,67,39,32,66,41,41,41,41,41,41,41,32,40,40,66,32,40,66,
+32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,83,39,32,
+67,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
+40,66,32,40,66,32,40,66,32,40,67,39,32,67,41,41,41,41,41,41,
+41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,67,
+39,32,67,41,41,41,41,41,41,32,40,40,66,32,40,40,67,39,32,40,
+67,39,32,66,41,41,32,40,40,66,32,40,66,32,67,39,41,41,32,40,
+40,66,32,40,66,32,67,39,41,41,32,95,49,51,49,51,41,41,41,41,
+32,40,40,66,32,40,66,32,40,40,83,39,32,40,83,39,32,95,50,56,
+50,41,41,32,40,40,66,32,40,66,32,95,52,51,49,41,41,32,40,40,
+66,32,40,66,32,40,83,32,73,41,41,41,32,40,40,66,32,40,66,32,
+40,66,32,40,66,32,90,41,41,41,41,32,40,40,66,32,40,66,32,67,
+41,41,32,40,40,40,67,39,32,40,67,39,32,40,83,39,32,67,39,41,
+41,41,32,67,41,32,40,40,40,67,39,32,67,41,32,95,49,51,49,54,
+41,32,95,53,48,50,41,41,41,41,41,41,41,41,41,32,40,40,66,32,
+40,67,39,32,40,67,39,32,95,52,51,50,41,41,41,32,40,40,66,32,
+40,66,32,40,66,32,85,41,41,41,32,40,40,66,32,40,66,32,40,66,
+32,90,41,41,41,32,40,40,66,32,40,66,32,40,66,32,90,41,41,41,
+32,40,40,66,32,40,40,67,39,32,66,41,32,67,41,41,32,40,40,66,
+32,95,53,48,52,41,32,40,95,52,51,48,32,40,40,67,32,40,40,80,
+32,40,75,32,75,41,41,32,40,40,67,32,79,41,32,75,41,41,41,32,
+40,75,32,75,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,
+40,40,66,32,40,67,39,32,95,52,51,50,41,41,32,40,40,66,32,40,
+66,32,85,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,
+32,82,41,32,40,95,52,51,48,32,40,40,67,32,40,40,80,32,40,75,
+32,75,41,41,32,40,75,32,75,41,41,41,32,40,40,67,32,79,41,32,
+75,41,41,41,41,41,41,41,41,41,41,41,32,40,95,52,51,48,32,40,
+40,67,32,40,40,80,32,40,40,67,32,79,41,32,75,41,41,32,40,75,
+32,75,41,41,41,32,40,75,32,75,41,41,41,41,41,41,32,40,40,67,
+39,32,40,67,39,32,40,95,50,50,52,32,95,49,50,55,41,41,41,32,
+40,95,52,55,50,32,95,49,48,55,56,41,41,41,41,41,41,41,41,41,
+41,41,41,32,40,40,65,32,58,49,51,50,53,32,40,40,40,67,39,32,
+40,67,39,32,40,83,39,32,40,67,39,32,40,67,39,32,67,41,41,41,
+41,41,32,40,40,40,67,39,32,40,83,39,32,40,67,39,32,40,67,39,
+32,40,83,39,32,67,41,41,41,41,41,32,40,40,40,67,39,32,66,41,
+32,40,66,39,32,40,66,39,32,40,66,39,32,40,40,66,32,80,41,32,
+40,40,40,67,39,32,67,41,32,40,40,40,67,39,32,83,41,32,40,67,
+32,95,49,49,49,52,41,41,32,40,40,40,83,39,32,95,50,56,50,41,
+32,40,40,66,32,40,95,49,48,49,51,32,95,55,54,48,41,41,32,40,
+95,57,55,57,32,95,57,56,49,41,41,41,32,40,40,66,32,40,95,53,
+48,52,32,34,117,110,100,101,102,105,110,101,100,32,109,111,100,117,108,101,
+58,32,34,41,41,32,95,49,48,56,56,41,41,41,41,32,40,85,32,40,
+75,50,32,40,90,32,40,40,66,32,90,41,32,40,40,66,32,40,66,32,
+90,41,41,32,40,40,66,32,40,66,32,67,41,41,32,80,41,41,41,41,
+41,41,41,41,41,41,41,41,32,40,40,66,32,40,40,67,39,32,40,67,
+39,32,40,67,39,32,83,41,41,41,32,40,40,40,67,39,32,40,67,39,
+32,40,67,39,32,40,67,39,32,83,41,41,41,41,32,40,40,40,67,39,
+32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,
+32,67,41,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,66,
+41,41,32,40,40,66,32,40,66,32,40,67,39,32,40,67,39,32,40,83,
+39,32,80,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,
+67,39,32,40,67,39,32,40,67,39,32,79,41,41,41,41,41,32,40,40,
+66,32,40,66,32,40,40,67,39,32,40,67,39,32,66,41,41,32,95,49,
+51,49,54,41,41,41,32,95,49,51,51,50,41,41,32,75,41,41,41,32,
+40,40,40,67,39,32,83,41,32,40,40,40,67,39,32,67,41,32,40,67,
+32,95,49,49,49,52,41,41,32,95,53,48,50,41,41,32,40,40,40,67,
+39,32,40,67,39,32,79,41,41,32,80,41,32,75,41,41,41,41,32,95,
+53,48,50,41,41,32,95,49,51,50,55,41,41,41,32,40,67,32,95,49,
+51,50,54,41,41,41,41,32,40,40,66,32,40,40,67,39,32,83,41,32,
+40,40,40,67,39,32,40,67,39,32,83,41,41,32,40,40,40,67,39,32,
+40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,41,41,32,40,40,
+66,32,40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,
+66,32,80,41,41,32,40,40,40,67,39,32,40,67,39,32,79,41,41,32,
+40,40,40,67,39,32,67,41,32,95,49,51,49,54,41,32,95,53,48,50,
+41,41,32,75,41,41,41,41,32,40,40,40,67,39,32,83,41,32,40,40,
+40,67,39,32,67,41,32,40,67,32,95,49,49,49,52,41,41,32,95,53,
+48,50,41,41,32,40,40,40,67,39,32,40,67,39,32,79,41,41,32,80,
+41,32,75,41,41,41,41,32,95,53,48,50,41,41,32,95,49,51,50,55,
+41,41,41,32,40,67,32,95,49,51,50,54,41,41,41,41,32,40,40,66,
+32,40,66,32,40,67,32,40,40,80,32,95,53,48,50,41,32,95,53,48,
+50,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,79,41,41,32,
+40,40,66,32,40,83,32,95,49,51,49,55,41,41,32,40,67,32,95,49,
+51,50,54,41,41,41,32,75,41,41,41,41,32,40,40,65,32,58,49,51,
+50,54,32,40,40,40,83,39,32,66,41,32,40,40,66,32,95,50,56,50,
+41,32,40,40,40,67,39,32,95,49,57,53,41,32,40,40,66,32,40,95,
+49,48,49,51,32,95,55,54,48,41,41,32,40,95,57,55,57,32,95,57,
+56,49,41,41,41,32,95,50,56,53,41,41,41,32,40,95,49,53,53,57,
+32,34,101,120,112,111,114,116,34,41,41,41,32,40,40,65,32,58,49,51,
+50,55,32,40,85,32,40,90,32,40,85,32,40,40,40,67,39,32,66,41,
+32,40,40,67,32,40,40,67,32,61,61,41,32,35,48,41,41,32,40,95,
+50,55,32,34,116,121,81,73,100,101,110,116,34,41,41,41,32,40,85,32,
+73,41,41,41,41,41,41,32,40,40,65,32,58,49,51,50,56,32,40,40,
+66,32,40,95,50,56,52,32,95,57,49,55,41,41,32,95,49,48,56,52,
+41,41,32,40,40,65,32,58,49,51,50,57,32,40,85,32,40,40,67,32,
+40,40,40,83,39,32,83,39,41,32,40,40,67,32,60,41,32,35,49,41,
+41,32,40,40,40,67,39,32,66,41,32,40,40,67,32,40,40,67,32,61,
+61,41,32,35,49,41,41,32,40,95,50,55,32,34,103,101,116,65,112,112,
+67,111,110,34,41,41,41,32,40,85,32,40,90,32,95,49,51,50,57,41,
+41,41,41,41,32,40,85,32,73,41,41,41,41,32,40,40,65,32,58,49,
+51,51,48,32,40,40,40,67,39,32,89,41,32,40,40,66,32,40,66,32,
+40,66,32,40,83,32,73,41,41,41,41,32,40,40,40,67,39,32,40,67,
+39,32,40,83,39,32,40,67,39,32,67,41,41,41,41,32,40,40,66,32,
+40,66,32,40,66,32,40,66,32,40,40,83,39,32,83,39,41,32,40,40,
+67,32,60,41,32,35,49,41,41,41,41,41,41,32,40,40,40,67,39,32,
+66,41,32,40,66,39,32,40,40,66,32,40,67,39,32,40,67,39,32,66,
+41,41,41,32,40,40,66,32,40,66,32,40,67,32,40,40,67,32,61,61,
+41,32,35,49,41,41,41,41,32,40,40,67,32,95,49,53,49,52,41,32,
+40,40,80,32,95,49,48,49,53,41,32,95,57,56,50,41,41,41,41,41,
+41,32,40,40,66,32,40,66,32,85,41,41,32,40,40,40,67,39,32,66,
+41,32,67,39,41,32,40,67,32,95,53,48,51,41,41,41,41,41,41,32,
+40,40,66,32,85,41,32,40,67,32,80,41,41,41,41,41,32,95,53,48,
+50,41,41,32,40,40,65,32,58,49,51,51,49,32,40,40,40,67,39,32,
+83,41,32,40,40,40,67,39,32,40,83,39,32,83,41,41,32,40,40,40,
+67,39,32,40,83,39,32,40,83,39,32,67,41,41,41,32,40,40,40,67,
+39,32,40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,41,41,32,
+40,40,40,83,39,32,40,67,39,32,40,83,39,32,40,67,39,32,67,41,
+41,41,41,32,40,40,40,67,39,32,40,83,39,32,40,67,39,32,40,67,
+39,32,67,41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,
+32,40,67,39,32,40,67,39,32,67,41,41,41,32,40,40,40,83,39,32,
+83,41,32,40,40,40,83,39,32,40,67,39,32,67,39,41,41,32,40,40,
+66,32,40,66,32,67,39,41,41,32,40,40,66,32,40,83,32,95,49,51,
+49,51,41,41,32,40,40,67,39,32,95,52,51,48,41,32,40,40,66,32,
+85,41,32,40,40,66,32,40,40,67,39,32,66,41,32,40,40,67,32,40,
+40,67,32,61,61,41,32,35,55,41,41,32,75,41,41,41,32,40,40,66,
+32,85,41,32,40,40,66,32,40,66,32,95,52,51,48,41,41,32,40,40,
+40,67,39,32,40,67,39,32,40,67,39,32,79,41,41,41,32,40,40,66,
+32,40,67,39,32,80,41,41,32,40,95,49,48,57,49,32,95,55,54,48,
+41,41,41,32,75,41,41,41,41,41,41,41,41,41,32,40,40,40,83,39,
+32,40,83,39,32,40,83,39,32,95,53,48,52,41,41,41,32,40,40,67,
+39,32,40,67,39,32,95,52,51,48,41,41,32,40,40,66,32,40,66,32,
+85,41,41,32,40,40,66,32,40,66,32,40,40,67,39,32,66,41,32,40,
+40,67,32,40,40,67,32,61,61,41,32,35,48,41,41,32,75,41,41,41,
+41,32,40,40,66,32,40,66,32,85,41,41,32,40,40,66,32,40,66,32,
+90,41,41,32,40,40,66,32,40,66,32,85,41,41,32,40,40,66,32,40,
+66,32,90,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,
+79,41,41,41,32,40,40,66,32,83,41,32,40,83,32,95,49,51,49,54,
+41,41,41,32,75,41,41,41,41,41,41,41,41,41,32,40,40,40,83,39,
+32,40,83,39,32,40,83,39,32,95,53,48,52,41,41,41,32,40,40,67,
+39,32,40,67,39,32,95,52,51,48,41,41,32,40,40,66,32,40,66,32,
+85,41,41,32,40,40,66,32,40,66,32,40,40,67,39,32,66,41,32,40,
+40,67,32,40,40,67,32,61,61,41,32,35,49,41,41,32,75,41,41,41,
+41,32,40,40,66,32,40,66,32,85,41,41,32,40,40,66,32,40,66,32,
+90,41,41,32,40,40,66,32,40,66,32,85,41,41,32,40,40,66,32,40,
+66,32,90,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,
+79,41,41,41,32,40,40,66,32,83,41,32,40,83,32,95,49,51,49,54,
+41,41,41,32,75,41,41,41,41,41,41,41,41,41,32,40,40,40,83,39,
+32,40,83,39,32,40,67,39,32,95,53,48,52,41,41,41,32,40,40,67,
+39,32,40,67,39,32,95,52,51,48,41,41,32,40,40,66,32,40,66,32,
+85,41,41,32,40,40,66,32,40,66,32,40,40,67,39,32,66,41,32,40,
+40,67,32,40,40,67,32,61,61,41,32,35,56,41,41,32,75,41,41,41,
+41,32,40,40,66,32,40,66,32,85,41,41,32,40,40,66,32,90,41,32,
+40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,90,41,
+41,32,40,40,66,32,40,66,32,85,41,41,32,40,40,66,32,40,66,32,
+90,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,79,41,
+41,41,32,40,40,66,32,83,41,32,40,83,32,95,49,51,49,54,41,41,
+41,32,75,41,41,41,41,41,41,41,41,41,41,41,32,40,40,67,39,32,
+95,52,51,48,41,32,40,40,66,32,85,41,32,40,40,66,32,40,40,67,
+39,32,66,41,32,40,40,67,32,40,40,67,32,61,61,41,32,35,50,41,
+41,32,75,41,41,41,32,40,40,66,32,85,41,32,40,40,66,32,90,41,
+32,40,40,66,32,85,41,32,40,40,66,32,90,41,32,40,40,40,67,39,
+32,40,67,39,32,79,41,41,32,40,40,40,67,39,32,67,41,32,40,83,
+32,95,49,51,49,54,41,41,32,95,53,48,50,41,41,32,75,41,41,41,
+41,41,41,41,41,41,41,41,41,41,32,40,40,67,39,32,95,52,51,48,
+41,32,40,40,66,32,85,41,32,40,40,66,32,40,40,67,39,32,66,41,
+32,40,40,67,32,40,40,67,32,61,61,41,32,35,50,41,41,32,75,41,
+41,41,32,40,40,66,32,85,41,32,40,40,66,32,40,67,32,66,41,41,
+32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,79,
+41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,67,
+39,32,66,41,41,32,40,40,66,32,40,66,32,80,41,41,32,40,95,49,
+48,57,49,32,95,55,54,48,41,41,41,41,32,40,67,32,95,57,51,54,
+41,41,41,32,75,41,41,41,41,41,41,41,41,41,32,40,40,66,32,95,
+49,49,48,57,41,32,95,49,51,52,55,41,41,41,32,40,40,66,32,95,
+49,49,48,57,41,32,95,49,51,52,57,41,41,41,32,40,40,67,39,32,
+95,52,51,48,41,32,40,40,66,32,85,41,32,40,40,66,32,40,40,67,
+39,32,66,41,32,40,40,67,32,40,40,67,32,61,61,41,32,35,52,41,
+41,32,75,41,41,41,32,40,40,66,32,85,41,32,40,40,40,67,39,32,
+40,67,39,32,40,67,39,32,79,41,41,41,32,40,40,66,32,40,40,83,
+39,32,66,41,32,95,49,51,49,55,41,41,32,40,40,66,32,40,66,32,
+95,49,51,49,56,41,41,32,40,40,66,32,40,66,32,95,57,49,55,41,
+41,32,40,95,49,48,57,49,32,95,55,54,48,41,41,41,41,41,32,75,
+41,41,41,41,41,41,41,32,40,95,49,53,49,51,32,95,55,54,48,41,
+41,41,32,40,40,40,67,39,32,66,41,32,40,66,39,32,40,40,40,83,
+39,32,95,49,51,51,50,41,32,95,49,51,52,49,41,32,95,49,51,52,
+52,41,41,41,32,40,95,49,48,57,49,32,95,55,54,48,41,41,41,41,
+32,40,40,40,67,39,32,40,67,39,32,67,41,41,32,40,40,40,67,39,
+32,40,67,39,32,67,41,41,32,40,40,66,32,40,40,67,39,32,40,67,
+39,32,40,95,49,53,53,57,32,75,41,41,41,32,40,95,49,48,57,49,
+32,95,55,54,48,41,41,41,32,95,49,51,52,48,41,41,32,40,75,32,
+40,95,49,53,49,51,32,95,55,54,48,41,41,41,41,32,73,41,41,41,
+32,95,49,51,52,54,41,41,32,40,40,65,32,58,49,51,51,50,32,40,
+40,40,67,39,32,66,41,32,40,66,39,32,40,40,66,32,95,52,51,49,
+41,32,40,40,66,32,40,40,83,39,32,95,49,51,49,55,41,32,95,49,
+48,57,52,41,41,32,40,40,40,67,39,32,67,41,32,40,40,40,67,39,
+32,67,41,32,40,67,32,40,95,49,53,53,57,32,75,41,41,41,32,40,
+75,32,40,95,49,53,49,51,32,95,55,54,48,41,41,41,41,32,73,41,
+41,41,41,41,32,40,40,66,32,40,66,32,40,95,50,56,50,32,40,95,
+53,49,54,32,95,53,48,50,41,41,41,41,32,40,67,32,95,49,49,49,
+52,41,41,41,41,32,40,40,65,32,58,49,51,51,51,32,40,40,67,32,
+40,40,40,83,39,32,40,67,39,32,67,41,41,32,40,40,40,83,39,32,
+40,83,39,32,67,41,41,32,40,40,40,83,39,32,40,67,39,32,67,41,
+41,32,40,40,40,83,39,32,40,67,39,32,67,41,41,32,40,40,40,83,
+39,32,40,67,39,32,67,41,41,32,40,40,40,83,39,32,66,41,32,40,
+40,66,32,80,41,32,40,40,66,32,95,49,49,49,48,41,32,40,95,52,
+51,48,32,40,85,32,40,75,32,40,85,32,40,75,32,40,90,32,40,90,
+32,40,90,32,40,90,32,40,90,32,75,41,41,41,41,41,41,41,41,41,
+41,41,41,41,32,40,40,66,32,40,66,32,40,95,50,56,50,32,40,95,
+49,53,54,48,32,40,95,52,55,56,32,95,49,51,49,57,41,41,41,41,
+41,32,40,40,67,39,32,95,52,51,48,41,32,40,40,66,32,85,41,32,
+40,40,66,32,40,66,32,85,41,41,32,40,40,66,32,40,66,32,90,41,
+41,32,40,40,66,32,40,66,32,40,66,32,90,41,41,41,32,40,40,66,
+32,40,66,32,40,66,32,90,41,41,41,32,40,40,66,32,40,66,32,40,
+66,32,90,41,41,41,32,40,40,66,32,40,66,32,40,66,32,90,41,41,
+41,32,40,40,66,32,40,66,32,40,66,32,90,41,41,41,32,40,40,66,
+32,40,66,32,40,66,32,95,52,51,48,41,41,41,32,40,40,66,32,40,
+66,32,40,66,32,85,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
+40,66,32,90,41,41,41,41,32,40,66,32,40,66,32,40,66,32,40,40,
+67,39,32,95,52,51,48,41,32,40,40,40,67,39,32,40,67,39,32,79,
+41,41,32,40,40,66,32,40,67,32,80,41,41,32,40,40,67,32,79,41,
+32,75,41,41,41,32,75,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,32,40,40,66,32,95,49,49,49,48,41,32,40,
+95,52,51,48,32,40,85,32,40,75,32,40,85,32,40,75,51,32,40,90,
+32,40,90,32,40,90,32,75,41,41,41,41,41,41,41,41,41,41,41,32,
+40,40,66,32,40,95,50,56,50,32,95,49,49,49,48,41,41,32,40,95,
+52,51,48,32,40,85,32,40,75,32,40,85,32,40,75,52,32,40,90,32,
+40,90,32,75,41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,
+95,50,56,50,32,40,95,49,49,49,49,32,95,49,51,51,52,41,41,41,
+32,40,95,52,51,48,32,40,85,32,40,75,32,40,85,32,40,75,32,40,
+75,52,32,40,90,32,75,41,41,41,41,41,41,41,41,41,41,32,40,40,
+66,32,40,66,32,40,95,50,56,50,32,40,95,49,53,54,48,32,40,95,
+52,55,56,32,95,49,51,49,57,41,41,41,41,41,32,40,40,67,39,32,
+95,52,51,48,41,32,40,40,66,32,85,41,32,40,40,66,32,40,66,32,
+85,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,
+66,32,40,66,32,90,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
+40,66,32,90,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,
+66,32,40,66,32,90,41,41,41,41,41,32,40,40,40,83,39,32,40,83,
+39,32,40,83,39,32,66,41,41,41,32,40,40,66,32,40,66,32,66,39,
+41,41,32,40,40,66,32,40,66,32,40,66,32,40,67,39,32,95,53,48,
+52,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,95,52,51,48,
+41,41,41,32,40,40,66,32,40,66,32,40,66,32,85,41,41,41,32,40,
+66,32,40,66,32,40,66,32,40,40,67,39,32,95,52,51,48,41,32,40,
+40,40,67,39,32,40,67,39,32,79,41,41,32,40,40,66,32,40,67,32,
+80,41,41,32,40,40,67,32,79,41,32,75,41,41,41,32,75,41,41,41,
+41,41,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,
+39,32,40,67,39,32,66,41,41,41,41,32,40,40,66,32,40,66,32,40,
+66,32,40,66,32,95,53,48,52,41,41,41,41,32,40,40,66,32,40,66,
+32,40,66,32,95,52,51,48,41,41,41,32,40,40,66,32,40,66,32,40,
+66,32,85,41,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,
+66,32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,40,66,32,95,
+52,51,48,41,41,41,32,40,40,66,32,40,66,32,40,66,32,85,41,41,
+41,32,40,66,32,40,66,32,40,66,32,40,40,67,39,32,95,52,51,48,
+41,32,40,40,40,67,39,32,40,67,39,32,79,41,41,32,40,40,66,32,
+40,67,32,80,41,41,32,40,40,67,32,79,41,32,75,41,41,41,32,75,
+41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,95,52,51,48,32,
+40,85,32,40,40,66,32,85,41,32,40,90,32,40,90,32,40,40,66,32,
+90,41,32,40,40,66,32,90,41,32,40,40,66,32,40,67,32,40,40,40,
+67,39,32,40,67,39,32,79,41,41,32,40,40,66,32,40,83,32,80,41,
+41,32,40,40,40,67,39,32,40,67,39,32,79,41,41,32,40,40,67,39,
+32,95,49,51,49,56,41,32,95,57,49,55,41,41,32,75,41,41,41,32,
+75,41,41,41,32,95,49,52,53,56,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,95,50,56,50,
+32,95,49,49,49,48,41,41,32,40,95,52,51,48,32,40,85,32,40,40,
+67,32,66,41,32,40,90,32,40,90,32,40,40,66,32,90,41,32,40,40,
+67,32,66,41,32,40,40,66,32,90,41,32,40,40,66,32,40,66,32,90,
+41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,66,
+32,90,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,
+40,66,32,90,41,41,32,40,40,66,32,40,66,32,40,67,32,40,40,67,
+39,32,95,52,51,48,41,32,40,40,66,32,85,41,32,40,40,66,32,90,
+41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,79,41,41,41,
+32,40,40,40,83,39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,
+66,32,80,41,41,32,40,95,49,48,57,49,32,95,55,54,48,41,41,41,
+32,40,40,66,32,95,52,51,48,41,32,40,40,66,32,85,41,32,40,40,
+66,32,90,41,32,40,40,40,67,39,32,40,67,39,32,79,41,41,32,40,
+95,49,48,57,49,32,95,55,54,48,41,41,32,75,41,41,41,41,41,41,
+32,75,41,41,41,41,41,41,41,32,40,67,32,95,53,49,54,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,40,67,
+39,32,66,41,32,66,41,32,40,40,66,32,40,66,32,90,41,41,32,40,
+40,66,32,40,66,32,40,66,32,90,41,41,41,32,40,40,66,32,40,40,
+67,39,32,40,67,39,32,66,41,41,32,40,40,40,83,39,32,67,41,32,
+40,40,66,32,40,67,32,83,39,41,41,32,40,40,40,83,39,32,66,41,
+32,79,41,32,40,40,40,67,39,32,40,67,39,32,79,41,41,32,40,67,
+32,40,95,49,48,57,49,32,95,55,54,48,41,41,41,32,75,41,41,41,
+41,32,40,40,40,67,39,32,40,67,39,32,79,41,41,32,40,67,32,40,
+95,49,48,57,49,32,95,55,54,48,41,41,41,32,75,41,41,41,41,32,
+95,53,49,54,41,41,41,41,41,41,32,40,40,65,32,58,49,51,51,52,
+32,40,40,67,32,66,41,32,40,40,40,67,39,32,66,41,32,40,66,39,
+32,66,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,90,41,
+41,41,41,32,40,40,66,32,40,66,32,67,41,41,32,40,40,40,67,39,
+32,66,41,32,40,40,66,32,40,67,39,32,67,39,41,41,32,40,40,66,
+32,40,66,32,95,49,51,50,49,41,41,32,40,40,66,32,40,67,32,40,
+95,52,51,51,32,40,40,95,50,56,50,32,95,50,56,57,41,32,40,95,
+49,49,49,54,32,75,41,41,41,41,41,32,95,49,49,48,57,41,41,41,
+41,32,40,95,52,55,57,32,95,49,51,51,54,41,41,41,41,41,41,41,
+32,40,40,65,32,58,49,51,51,53,32,40,40,67,32,40,40,67,32,66,
+41,32,40,40,40,83,39,32,83,41,32,40,40,66,32,40,40,83,39,32,
+83,39,41,32,40,40,67,32,60,41,32,35,49,56,41,41,41,32,40,40,
+40,67,39,32,40,67,39,32,66,41,41,32,40,67,32,40,40,67,32,61,
+61,41,32,35,49,56,41,41,41,32,40,85,32,40,95,57,52,55,32,95,
+55,54,48,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,66,
+41,41,32,40,67,32,40,40,67,32,61,61,41,32,35,48,41,41,41,32,
+40,85,32,73,41,41,41,41,41,32,40,95,49,53,49,51,32,95,55,54,
+48,41,41,41,32,40,40,65,32,58,49,51,51,54,32,40,40,67,32,66,
+41,32,40,40,66,32,90,41,32,40,40,66,32,90,41,32,40,40,67,32,
+66,41,32,40,40,66,32,90,41,32,40,40,66,32,90,41,32,40,95,57,
+57,56,32,95,55,54,48,41,41,41,41,41,41,41,41,32,40,40,65,32,
+58,49,51,51,55,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,
+66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
+40,66,32,67,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,66,
+32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
+66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,41,41,41,41,
+41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
+40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,
+41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,
+40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,
+41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,
+66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,41,41,41,41,
+32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
+40,66,32,67,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,
+66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,41,41,32,40,
+40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,
+41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,
+32,40,40,66,32,40,66,32,40,66,32,67,41,41,41,32,40,40,66,32,
+40,66,32,67,41,41,32,80,41,41,41,41,41,41,41,41,41,41,41,41,
+32,40,40,65,32,58,49,51,51,56,32,75,41,32,40,40,65,32,58,49,
+51,51,57,32,65,41,32,40,40,65,32,58,49,51,52,48,32,40,85,32,
+40,75,51,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,
+90,32,40,90,32,40,90,32,75,41,41,41,41,41,41,41,41,41,41,41,
+32,40,40,65,32,58,49,51,52,49,32,40,85,32,40,75,32,40,75,52,
+32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,75,
+41,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,49,51,52,50,
+32,40,85,32,40,75,52,32,40,90,32,40,90,32,40,90,32,40,90,32,
+40,90,32,40,90,32,40,90,32,75,41,41,41,41,41,41,41,41,41,41,
+32,40,40,65,32,58,49,51,52,51,32,40,85,32,40,75,50,32,40,90,
+32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,
+90,32,40,90,32,75,41,41,41,41,41,41,41,41,41,41,41,41,32,40,
+40,65,32,58,49,51,52,52,32,40,85,32,40,75,50,32,40,75,52,32,
+40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,75,41,41,41,41,
+41,41,41,41,41,32,40,40,65,32,58,49,51,52,53,32,40,85,32,40,
+75,51,32,40,75,52,32,40,90,32,40,90,32,40,90,32,40,90,32,75,
+41,41,41,41,41,41,41,41,32,40,40,65,32,58,49,51,52,54,32,40,
+85,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,
+40,90,32,40,90,32,40,90,32,40,90,32,40,90,32,75,41,41,41,41,
+41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,49,51,52,55,32,
+40,85,32,40,75,32,40,75,52,32,40,75,52,32,40,90,32,40,90,32,
+75,41,41,41,41,41,41,41,32,40,40,65,32,58,49,51,52,56,32,40,
+85,32,40,75,52,32,40,75,52,32,40,90,32,40,90,32,40,90,32,75,
+41,41,41,41,41,41,41,32,40,40,65,32,58,49,51,52,57,32,40,85,
+32,40,75,50,32,40,75,52,32,40,75,52,32,40,90,32,40,90,32,40,
+85,32,40,90,32,75,41,41,41,41,41,41,41,41,41,32,40,40,65,32,
+58,49,51,53,48,32,40,85,32,40,75,50,32,40,75,52,32,40,75,52,
+32,40,90,32,40,90,32,40,85,32,40,75,32,75,41,41,41,41,41,41,
+41,41,41,32,40,40,65,32,58,49,51,53,49,32,40,85,32,40,75,50,
+32,40,75,52,32,40,75,52,32,40,90,32,40,90,32,40,85,32,40,75,
+32,65,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,49,51,53,
+50,32,40,85,32,40,75,50,32,40,75,52,32,40,75,52,32,40,90,32,
+75,41,41,41,41,41,41,32,40,40,65,32,58,49,51,53,51,32,40,85,
+32,40,75,51,32,40,75,52,32,40,75,52,32,75,41,41,41,41,41,32,
+40,40,65,32,58,49,51,53,52,32,40,85,32,40,75,51,32,40,75,52,
+32,40,75,52,32,65,41,41,41,41,41,32,40,40,65,32,58,49,51,53,
+53,32,40,40,66,32,40,40,95,51,53,32,95,54,56,41,32,95,55,51,
+41,41,32,40,40,66,32,85,41,32,40,40,66,32,40,66,32,40,66,32,
+40,66,32,40,66,32,90,41,41,41,41,41,32,40,40,66,32,40,66,32,
+40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
+32,40,66,32,40,66,32,40,66,32,40,66,32,95,55,50,41,41,41,41,
+41,41,41,41,41,41,41,41,41,32,40,40,67,39,32,40,67,39,32,40,
+67,39,32,40,67,39,32,67,41,41,41,41,32,95,49,51,51,55,41,41,
+41,41,41,41,32,40,40,65,32,58,49,51,53,54,32,40,40,66,32,40,
+40,95,51,53,32,95,54,56,41,32,95,55,51,41,41,32,40,40,66,32,
+85,41,32,40,40,66,32,40,66,32,40,66,32,90,41,41,41,32,40,40,
+66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
+40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,95,55,
+50,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,67,39,32,
+40,67,39,32,67,41,41,32,95,49,51,51,55,41,41,41,41,41,41,32,
+40,40,65,32,58,49,51,53,55,32,40,40,66,32,40,40,95,51,53,32,
+95,54,56,41,32,95,55,51,41,41,32,40,40,66,32,85,41,32,40,40,
+66,32,40,66,32,40,66,32,40,66,32,90,41,41,41,41,32,40,40,66,
+32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
+66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,95,55,50,
+41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,67,39,32,40,
+67,39,32,40,67,39,32,67,41,41,41,32,95,49,51,51,55,41,41,41,
+41,41,41,32,40,40,65,32,58,49,51,53,56,32,40,40,66,32,40,40,
+95,51,53,32,95,54,56,41,32,95,55,51,41,41,32,40,40,66,32,85,
+41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
+32,40,66,32,90,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,
+40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
+32,40,66,32,40,66,32,40,66,32,40,66,32,95,55,50,41,41,41,41,
+41,41,41,41,41,41,41,41,41,32,40,40,67,39,32,40,67,39,32,40,
+67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,41,41,
+41,41,32,95,49,51,51,55,41,41,41,41,41,41,32,40,40,65,32,58,
+49,51,53,57,32,40,40,66,32,40,40,95,51,53,32,95,54,56,41,32,
+95,55,51,41,41,32,40,40,66,32,85,41,32,40,40,66,32,40,66,32,
+40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,90,41,
+41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,
+32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
+66,32,40,66,32,40,66,32,95,55,50,41,41,41,41,41,41,41,41,41,
+41,41,41,41,32,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,
+39,32,40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,41,41,41,
+41,41,32,95,49,51,51,55,41,41,41,41,41,41,32,40,40,65,32,58,
+49,51,54,48,32,40,40,66,32,40,40,95,51,53,32,95,54,56,41,32,
+95,55,51,41,41,32,40,40,66,32,85,41,32,40,40,66,32,40,66,32,
+40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
+32,40,66,32,40,66,32,40,40,67,39,32,66,41,32,66,41,41,41,41,
+41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,
+66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
+40,66,32,40,66,32,90,41,41,41,41,41,41,41,41,41,41,41,41,32,
+40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
+66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
+40,66,32,40,66,32,95,55,50,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
+32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
+66,32,40,67,39,32,67,41,41,41,41,41,41,41,41,41,41,41,41,41,
+32,40,40,66,32,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,
+39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,
+39,32,40,67,39,32,67,39,41,41,41,41,41,41,41,41,41,41,32,40,
+40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
+32,40,66,32,40,66,32,40,66,32,67,39,41,41,41,41,41,41,41,41,
+41,41,32,95,49,51,51,55,41,41,41,32,40,40,66,32,40,66,32,67,
+41,41,32,80,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,49,
+51,54,49,32,40,40,66,32,40,40,95,51,53,32,95,54,56,41,32,95,
+55,51,41,41,32,40,40,66,32,85,41,32,40,40,66,32,40,66,32,40,
+66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
+40,66,32,40,66,32,40,40,67,39,32,66,41,32,66,41,41,41,41,41,
+41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,
+32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
+66,32,40,66,32,40,66,32,90,41,41,41,41,41,41,41,41,41,41,41,
+41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
+66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
+40,66,32,40,66,32,40,66,32,95,55,50,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,
+32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
+66,32,40,66,32,40,67,39,32,67,41,41,41,41,41,41,41,41,41,41,
+41,41,41,32,40,40,66,32,40,40,67,39,32,40,67,39,32,40,67,39,
+32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,
+32,40,67,39,32,40,67,39,32,67,39,41,41,41,41,41,41,41,41,41,
+41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
+32,40,66,32,40,66,32,40,66,32,40,66,32,67,39,41,41,41,41,41,
+41,41,41,41,41,32,95,49,51,51,55,41,41,41,32,40,40,66,32,40,
+66,32,67,41,41,32,40,67,32,80,41,41,41,41,41,41,41,41,41,41,
+32,40,40,65,32,58,49,51,54,50,32,40,40,66,32,40,40,95,51,53,
+32,95,54,56,41,32,95,55,51,41,41,32,40,40,66,32,85,41,32,40,
+40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
+32,40,66,32,40,66,32,40,66,32,40,66,32,40,40,67,39,32,66,41,
+32,66,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,
+66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
+40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,90,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,
+32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
+66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
+95,55,50,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,
+40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
+32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,67,39,32,
+67,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,
+40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,
+40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,
+67,39,41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,
+40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
+32,40,66,32,67,39,41,41,41,41,41,41,41,41,41,41,32,95,49,51,
+51,55,41,41,41,32,40,40,67,39,32,40,67,39,32,67,41,41,32,80,
+41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,49,51,54,51,32,
+40,40,66,32,40,40,95,51,53,32,95,54,56,41,32,95,55,51,41,41,
+32,40,40,66,32,85,41,32,40,40,66,32,40,66,32,40,66,32,40,66,
+32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,90,
+41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,
+32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
+66,32,40,66,32,40,66,32,40,66,32,95,55,50,41,41,41,41,41,41,
+41,41,41,41,41,41,41,32,40,40,67,39,32,40,67,39,32,40,67,39,
+32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,
+32,40,67,39,32,67,41,41,41,41,41,41,41,41,41,32,95,49,51,51,
+55,41,41,41,41,41,41,32,40,40,65,32,58,49,51,54,52,32,40,40,
+66,32,40,40,95,51,53,32,95,54,56,41,32,95,55,51,41,41,32,40,
+40,66,32,85,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,
+66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
+90,41,41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,
+40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
+32,40,66,32,40,66,32,40,66,32,40,66,32,95,55,50,41,41,41,41,
+41,41,41,41,41,41,41,41,41,32,40,40,67,39,32,40,67,39,32,40,
+67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,
+67,39,32,40,67,39,32,40,67,39,32,67,41,41,41,41,41,41,41,41,
+41,41,32,95,49,51,51,55,41,41,41,41,41,41,32,40,40,65,32,58,
+49,51,54,53,32,40,40,66,32,40,40,95,51,53,32,95,54,56,41,32,
+95,55,51,41,41,32,40,40,66,32,85,41,32,40,40,66,32,40,66,32,
+40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
+32,40,66,32,40,66,32,40,66,32,90,41,41,41,41,41,41,41,41,41,
+41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
+40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
+32,40,66,32,95,55,50,41,41,41,41,41,41,41,41,41,41,41,41,41,
+32,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,
+39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,
+39,32,40,67,39,32,67,41,41,41,41,41,41,41,41,41,41,41,32,95,
+49,51,51,55,41,41,41,41,41,41,32,40,40,65,32,58,49,51,54,54,
+32,40,40,66,32,40,66,32,40,40,95,51,53,32,95,54,56,41,32,40,
+95,55,52,32,95,49,51,52,56,41,41,41,41,32,40,40,40,67,39,32,
+66,41,32,40,66,39,32,40,40,66,32,40,95,51,54,32,95,54,56,41,
+41,32,95,49,51,53,57,41,41,41,32,40,40,40,67,39,32,66,41,32,
+40,95,51,53,32,95,54,56,41,41,32,40,40,40,67,39,32,66,41,32,
+40,40,66,32,40,95,51,54,32,95,54,56,41,41,32,95,49,51,53,57,
+41,41,32,40,95,51,55,32,95,54,56,41,41,41,41,41,41,32,40,40,
+65,32,58,49,51,54,55,32,40,40,66,32,40,40,95,51,53,32,95,54,
+56,41,32,95,55,51,41,41,32,40,40,66,32,85,41,32,40,40,66,32,
+40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,
+32,66,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,
+32,40,66,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,
+40,67,39,32,40,67,39,32,40,67,39,32,40,95,51,54,32,95,54,56,
+41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,
+32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
+66,32,40,66,32,40,66,32,40,66,32,95,55,50,41,41,41,41,41,41,
+41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,67,41,41,
+41,32,40,40,40,67,39,32,40,67,39,32,67,41,41,32,95,49,51,51,
+55,41,32,95,49,51,56,54,41,41,41,41,41,41,32,40,40,40,67,39,
+32,66,41,32,40,95,51,53,32,95,54,56,41,41,32,40,40,66,32,40,
+66,32,40,40,95,51,53,32,95,54,56,41,32,95,55,51,41,41,41,32,
+40,40,66,32,40,66,32,85,41,41,32,40,40,66,32,40,66,32,40,66,
+32,40,66,32,90,41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,
+40,66,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,
+67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,
+67,39,32,40,67,39,32,40,67,39,32,40,95,51,54,32,95,54,56,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,
+32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
+66,32,40,66,32,40,66,32,40,66,32,40,66,32,95,55,50,41,41,41,
+41,41,41,41,41,41,41,41,41,41,32,40,40,67,39,32,40,67,39,32,
+40,67,39,32,40,67,39,32,67,41,41,41,41,32,40,40,66,32,40,66,
+32,40,66,32,67,41,41,41,32,95,49,51,51,55,41,41,41,41,41,32,
+40,95,51,55,32,95,54,56,41,41,41,41,41,41,41,41,41,41,32,40,
+40,65,32,58,49,51,54,56,32,40,40,66,32,40,66,32,40,40,95,51,
+53,32,95,54,56,41,32,95,55,51,41,41,41,32,40,40,66,32,40,66,
+32,85,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
+32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
+66,32,40,66,32,40,66,32,40,66,32,40,95,50,56,50,32,95,55,50,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,66,
+32,40,66,32,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,
+32,40,67,39,32,40,67,39,32,66,41,41,41,41,41,41,32,95,49,51,
+51,55,41,41,41,32,95,49,49,49,53,41,41,41,41,41,32,40,40,65,
+32,58,49,51,54,57,32,40,40,66,32,40,66,32,40,40,95,51,53,32,
+95,54,56,41,32,95,55,51,41,41,41,32,40,40,66,32,40,66,32,85,
+41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
+66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
+40,66,32,40,66,32,40,66,32,40,95,50,56,50,32,95,55,50,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,
+66,32,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,
+67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,66,
+41,41,41,41,41,41,41,41,41,32,95,49,51,51,55,41,41,41,32,95,
+49,49,49,53,41,41,41,41,41,32,40,40,65,32,58,49,51,55,48,32,
+40,40,40,67,39,32,40,95,51,53,32,95,54,56,41,41,32,40,40,95,
+52,54,32,95,54,56,41,32,40,85,32,40,40,66,32,40,40,83,39,32,
+40,83,39,32,40,67,39,32,66,41,41,41,32,40,40,40,67,39,32,40,
+67,39,32,66,41,41,32,40,40,66,32,40,66,32,67,41,41,32,80,41,
+41,32,40,95,49,51,51,48,32,95,55,54,48,41,41,41,41,32,40,40,
+40,83,39,32,66,41,32,40,66,39,32,40,40,66,32,40,83,39,32,40,
+67,39,32,40,67,39,32,83,41,41,41,41,32,40,40,40,67,39,32,40,
+67,39,32,67,41,41,32,40,40,66,32,40,66,32,40,40,67,39,32,67,
+39,41,32,40,40,66,32,67,39,41,32,83,39,41,41,41,41,32,40,40,
+40,67,39,32,40,67,39,32,67,41,41,32,40,40,66,32,40,66,32,40,
+40,67,39,32,67,39,41,32,83,39,41,41,41,32,40,40,66,32,40,66,
+32,40,67,32,66,41,41,41,32,40,40,66,32,40,66,32,40,40,83,39,
+32,66,41,32,80,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,
+66,32,40,67,32,66,41,41,41,41,41,32,40,40,66,32,40,66,32,40,
+40,83,39,32,66,41,32,40,66,39,32,40,40,66,32,40,67,39,32,66,
+41,41,32,40,67,32,40,40,67,32,61,61,41,32,35,48,41,41,41,41,
+41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
+85,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,
+32,40,40,66,32,40,66,32,40,67,39,32,67,41,41,41,32,40,40,66,
+32,40,66,32,40,66,32,40,67,32,67,39,41,41,41,41,32,40,40,66,
+32,40,66,32,40,66,32,40,66,32,40,95,50,56,50,32,40,95,51,55,
+32,95,54,56,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,40,
+67,39,32,66,41,32,80,41,41,41,32,40,40,66,32,67,41,32,40,40,
+40,67,39,32,40,67,39,32,95,49,51,50,49,41,41,32,40,67,32,95,
+49,49,48,54,41,41,32,95,53,48,50,41,41,41,41,41,41,41,32,40,
+90,32,75,41,41,41,41,41,41,41,41,41,32,40,90,32,75,41,41,41,
+41,32,40,90,32,75,41,41,41,41,41,32,40,40,66,32,40,66,32,40,
+66,32,40,66,32,85,41,41,41,41,32,40,40,40,67,39,32,66,41,32,
+40,40,66,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,
+40,66,32,40,95,50,56,50,32,40,95,51,55,32,95,54,56,41,41,41,
+41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,40,67,39,
+32,66,41,32,40,66,39,32,80,41,41,41,41,41,32,40,40,66,32,40,
+66,32,40,67,39,32,40,67,39,32,40,95,49,51,50,49,32,95,49,49,
+48,53,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,
+39,32,40,67,39,32,79,41,41,41,41,32,40,40,40,67,39,32,40,67,
+39,32,66,41,41,32,40,40,66,32,40,66,32,40,83,39,32,67,41,41,
+41,32,40,40,40,67,39,32,66,41,32,40,66,39,32,80,41,41,32,40,
+40,67,39,32,95,52,51,49,41,32,95,57,57,54,41,41,41,41,32,40,
+40,67,39,32,95,52,51,49,41,32,95,57,57,54,41,41,41,32,75,41,
+41,41,41,41,32,40,40,67,32,40,95,52,53,50,32,40,40,40,67,39,
+32,66,41,32,40,40,66,32,80,41,32,95,57,55,50,41,41,32,95,57,
+51,52,41,41,41,32,40,40,40,95,50,48,54,32,95,50,49,57,41,32,
+40,40,95,53,55,56,32,95,51,49,48,41,32,40,40,95,53,56,49,32,
+95,51,49,48,41,32,40,95,51,57,50,32,35,49,41,41,41,41,32,40,
+40,95,53,55,56,32,95,51,49,48,41,32,40,40,95,53,56,49,32,95,
+51,49,48,41,32,40,95,51,57,50,32,35,50,41,41,41,41,41,41,41,
+41,41,41,41,41,32,40,40,66,32,40,40,95,51,53,32,95,54,56,41,
+32,40,95,55,52,32,95,49,51,52,57,41,41,41,32,40,40,66,32,40,
+66,32,40,95,50,56,50,32,95,49,51,54,48,41,41,41,32,40,67,32,
+40,95,52,51,51,32,40,40,95,50,56,50,32,95,50,56,57,41,32,40,
+95,49,49,49,54,32,95,49,51,51,52,41,41,41,41,41,41,41,41,32,
+40,40,65,32,58,49,51,55,49,32,40,40,66,32,40,40,67,39,32,40,
+95,51,53,32,95,54,56,41,41,32,40,95,49,52,48,49,32,95,55,54,
+48,41,41,41,32,40,40,66,32,40,66,32,40,40,95,51,53,32,95,54,
+56,41,32,95,55,51,41,41,41,32,40,40,66,32,40,66,32,85,41,41,
+32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
+40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
+32,40,66,32,40,66,32,40,95,50,56,50,32,95,55,50,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,
+40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,
+32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,
+32,40,67,39,32,66,41,41,41,41,41,41,41,41,41,41,41,32,95,49,
+51,51,55,41,41,41,32,40,40,66,32,40,66,32,95,53,48,51,41,41,
+32,80,41,41,41,41,41,41,41,32,40,40,65,32,58,49,51,55,50,32,
+40,75,32,40,40,66,32,40,66,32,40,40,95,51,53,32,95,54,56,41,
+32,40,95,55,52,32,95,49,51,53,50,41,41,41,41,32,40,40,40,67,
+39,32,66,41,32,40,66,39,32,40,40,66,32,40,95,51,54,32,95,54,
+56,41,41,32,40,40,95,52,55,32,95,54,56,41,32,95,49,51,55,52,
+41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,95,51,53,32,95,
+54,56,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,95,
+51,54,32,95,54,56,41,41,32,95,49,51,54,51,41,41,32,40,95,51,
+55,32,95,54,56,41,41,41,41,41,41,41,32,40,40,65,32,58,49,51,
+55,51,32,40,75,32,40,40,66,32,40,66,32,40,66,32,40,40,95,51,
+53,32,95,54,56,41,32,40,95,55,52,32,95,49,51,53,50,41,41,41,
+41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,66,
+32,66,39,41,32,40,40,66,32,40,66,32,40,95,51,54,32,95,54,56,
+41,41,41,32,40,40,66,32,40,66,32,95,49,51,55,52,41,41,32,80,
+41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,95,51,53,32,95,
+54,56,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,95,
+51,54,32,95,54,56,41,41,32,95,49,51,54,51,41,41,32,40,95,51,
+55,32,95,54,56,41,41,41,41,41,41,41,32,40,40,65,32,58,49,51,
+55,52,32,40,85,32,40,40,66,32,40,40,67,39,32,40,95,51,53,32,
+95,54,56,41,41,32,40,40,40,67,39,32,40,95,51,53,32,95,54,56,
+41,41,32,40,95,49,52,48,49,32,95,55,54,48,41,41,32,95,49,52,
+48,50,41,41,41,32,40,40,40,83,39,32,83,41,32,40,40,66,32,40,
+40,83,39,32,95,52,50,56,41,32,40,40,66,32,95,49,53,50,51,41,
+32,40,40,67,32,79,41,32,75,41,41,41,41,32,40,95,49,51,55,55,
+32,95,55,54,48,41,41,41,32,40,40,40,83,39,32,83,41,32,40,40,
+66,32,40,67,32,66,41,41,32,40,40,66,32,40,40,83,39,32,40,67,
+39,32,66,41,41,32,40,67,32,40,40,67,32,61,61,41,32,35,49,41,
+41,41,41,32,40,40,66,32,40,66,32,85,41,41,32,40,40,66,32,40,
+66,32,40,67,32,66,41,41,41,32,40,40,66,32,40,40,83,39,32,66,
+41,32,40,40,66,32,40,67,39,32,66,41,41,32,40,67,32,40,40,67,
+32,61,61,41,32,35,49,41,41,41,41,41,32,40,40,66,32,40,66,32,
+40,66,32,85,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,67,
+32,66,41,41,41,41,32,40,40,66,32,40,40,83,39,32,66,41,32,40,
+66,39,32,40,40,66,32,40,67,39,32,66,41,41,32,40,67,32,40,40,
+67,32,61,61,41,32,35,48,41,41,41,41,41,41,32,40,40,66,32,40,
+66,32,40,66,32,40,66,32,85,41,41,41,41,32,40,40,66,32,40,40,
+67,39,32,66,41,32,40,66,39,32,40,40,66,32,67,41,32,40,67,32,
+40,40,67,32,40,95,50,50,51,32,95,49,48,55,56,41,41,32,40,95,
+49,48,56,51,32,95,49,51,48,52,41,41,41,41,41,41,41,32,40,40,
+66,32,67,41,32,95,49,51,55,54,41,41,41,41,41,41,41,41,41,41,
+41,41,32,40,95,49,51,55,53,32,95,55,54,48,41,41,41,41,41,41,
+32,40,40,65,32,58,49,51,55,53,32,40,40,40,83,39,32,66,41,32,
+40,40,66,32,40,67,39,32,40,95,51,53,32,95,54,56,41,41,41,32,
+95,49,52,48,49,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,
+39,32,40,95,51,53,32,95,54,56,41,41,41,41,32,40,40,40,67,39,
+32,66,41,32,95,49,53,50,56,41,32,95,57,49,55,41,41,32,95,49,
+51,55,48,41,41,41,32,40,40,65,32,58,49,51,55,54,32,40,75,32,
+40,40,66,32,40,66,32,40,40,95,51,53,32,95,54,56,41,32,40,95,
+55,52,32,95,49,51,53,49,41,41,41,41,32,40,40,66,32,40,66,32,
+40,66,32,95,49,51,54,50,41,41,41,32,95,49,53,53,54,41,41,41,
+41,32,40,40,65,32,58,49,51,55,55,32,40,75,32,40,40,66,32,40,
+66,32,40,40,95,51,53,32,95,54,56,41,32,40,95,55,52,32,95,49,
+51,53,48,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,95,49,
+51,54,49,41,41,41,32,40,40,66,32,40,66,32,95,53,48,51,41,41,
+32,80,41,41,41,41,41,32,40,40,65,32,58,49,51,55,56,32,40,40,
+40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,
+40,67,39,32,40,67,39,32,67,41,41,41,41,41,41,41,32,40,40,40,
+67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,
+67,39,32,40,67,39,32,67,41,41,41,41,41,41,41,32,40,40,40,67,
+39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,66,41,
+41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
+32,40,67,39,32,67,41,41,41,41,41,41,32,40,40,66,32,40,66,32,
+40,66,32,40,66,32,40,67,39,32,67,41,41,41,41,41,32,40,40,40,
+67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,67,
+41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,
+40,67,39,32,40,67,39,32,67,41,41,41,41,41,32,40,40,40,67,39,
+32,40,67,39,32,40,67,39,32,40,67,39,32,66,41,41,41,41,32,40,
+40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,40,67,39,32,66,
+41,32,40,40,67,32,95,49,51,51,55,41,32,35,49,41,41,32,95,49,
+51,55,57,41,41,32,40,40,67,32,40,95,52,51,51,32,40,95,50,56,
+57,32,95,49,53,54,52,41,41,41,32,95,49,51,56,55,41,41,41,32,
+40,40,67,32,40,95,52,51,51,32,40,95,50,56,57,32,95,49,53,54,
+52,41,41,41,32,95,49,51,56,56,41,41,41,32,95,51,50,51,41,41,
+32,95,49,51,51,56,41,41,41,41,32,40,40,40,67,39,32,67,41,32,
+40,40,67,32,80,41,32,95,53,48,50,41,41,32,95,53,48,50,41,41,
+41,32,95,53,48,50,41,41,32,95,53,48,50,41,41,32,40,40,65,32,
+58,49,51,55,57,32,40,40,95,50,56,52,32,40,40,95,49,49,49,53,
+32,40,95,49,48,56,51,32,34,80,114,105,109,105,116,105,118,101,115,46,
+45,62,34,41,41,32,40,40,80,32,95,57,57,51,41,32,40,40,95,53,
+55,56,32,95,51,49,48,41,32,40,40,95,53,56,49,32,95,51,49,48,
+41,32,40,95,51,57,50,32,35,49,41,41,41,41,41,41,32,40,40,95,
+49,49,49,53,32,40,95,49,48,56,51,32,34,80,114,105,109,105,116,105,
+118,101,115,46,61,62,34,41,41,32,40,40,80,32,95,57,57,51,41,32,
+40,40,95,53,55,56,32,95,51,49,48,41,32,40,40,95,53,56,49,32,
+95,51,49,48,41,32,40,95,51,57,50,32,35,50,41,41,41,41,41,41,
+41,32,40,40,65,32,58,49,51,56,48,32,95,57,55,51,41,32,40,40,
+65,32,58,49,51,56,49,32,40,40,95,49,51,57,53,32,95,57,55,51,
+41,32,95,57,55,51,41,41,32,40,40,65,32,58,49,51,56,50,32,40,
+40,95,50,56,50,32,40,95,49,51,57,53,32,95,57,55,51,41,41,32,
+40,40,95,49,51,57,53,32,95,57,55,51,41,32,95,57,55,51,41,41,
+41,32,40,40,65,32,58,49,51,56,51,32,40,40,95,49,51,57,53,32,
+95,57,55,51,41,32,40,40,95,49,51,57,53,32,95,57,55,51,41,32,
+95,57,55,52,41,41,41,32,40,40,65,32,58,49,51,56,52,32,40,40,
+40,95,49,48,55,53,32,34,98,117,105,108,116,105,110,34,41,32,35,48,
+41,32,35,48,41,41,32,40,40,65,32,58,49,51,56,53,32,40,95,49,
+48,56,52,32,95,49,51,56,52,41,41,32,40,40,65,32,58,49,51,56,
+54,32,40,40,40,66,32,95,49,53,54,49,41,32,40,40,40,83,39,32,
+79,41,32,40,40,66,32,40,80,32,40,95,49,51,56,53,32,95,49,51,
+48,57,41,41,41,32,40,40,40,67,39,32,79,41,32,40,40,80,32,95,
+49,51,48,57,41,32,95,49,51,56,48,41,41,32,75,41,41,41,32,40,
+40,40,83,39,32,79,41,32,40,40,66,32,40,80,32,40,95,49,51,56,
+53,32,34,84,121,112,101,34,41,41,41,32,40,40,40,67,39,32,79,41,
+32,40,40,80,32,95,49,51,48,57,41,32,95,49,51,56,48,41,41,32,
+75,41,41,41,32,40,40,40,83,39,32,79,41,32,40,40,66,32,40,80,
+32,40,95,49,51,56,53,32,95,49,51,49,48,41,41,41,32,40,40,40,
+67,39,32,79,41,32,40,40,80,32,95,49,51,49,48,41,32,95,49,51,
+56,48,41,41,32,75,41,41,41,32,40,40,40,83,39,32,79,41,32,40,
+40,66,32,40,80,32,40,95,49,51,56,53,32,34,67,111,110,115,116,114,
+97,105,110,116,34,41,41,41,32,40,40,40,67,39,32,79,41,32,40,40,
+80,32,95,49,51,49,48,41,32,95,49,51,56,48,41,41,32,75,41,41,
+41,32,40,40,40,83,39,32,79,41,32,40,40,66,32,40,80,32,40,95,
+49,51,56,53,32,95,49,51,48,55,41,41,41,32,40,40,40,67,39,32,
+79,41,32,40,40,80,32,95,49,51,48,55,41,32,95,49,51,56,48,41,
+41,32,75,41,41,41,32,40,40,40,83,39,32,79,41,32,40,40,66,32,
+40,80,32,40,95,49,51,56,53,32,34,83,121,109,98,111,108,34,41,41,
+41,32,40,40,40,67,39,32,79,41,32,40,40,80,32,95,49,51,48,55,
+41,32,95,49,51,56,48,41,41,32,75,41,41,41,32,40,40,40,83,39,
+32,79,41,32,40,40,66,32,40,80,32,40,95,49,51,56,53,32,95,49,
+51,48,56,41,41,41,32,40,40,40,67,39,32,79,41,32,40,40,80,32,
+95,49,51,48,56,41,32,95,49,51,56,48,41,41,32,75,41,41,41,32,
+40,40,40,83,39,32,79,41,32,40,40,66,32,40,80,32,40,95,49,51,
+56,53,32,34,78,97,116,34,41,41,41,32,40,40,40,67,39,32,79,41,
+32,40,40,80,32,95,49,51,48,56,41,32,95,49,51,56,48,41,41,32,
+75,41,41,41,32,40,40,40,83,39,32,79,41,32,40,40,66,32,40,80,
+32,40,95,49,51,56,53,32,95,49,51,48,54,41,41,41,32,40,40,40,
+67,39,32,79,41,32,40,40,80,32,95,49,51,48,54,41,32,95,49,51,
+56,50,41,41,32,75,41,41,41,32,40,40,40,67,39,32,79,41,32,40,
+40,66,32,40,80,32,40,95,49,51,56,53,32,34,45,62,34,41,41,41,
+32,40,40,40,67,39,32,79,41,32,40,40,80,32,95,49,51,48,54,41,
+32,95,49,51,56,50,41,41,32,75,41,41,41,32,75,41,41,41,41,41,
+41,41,41,41,41,41,32,40,40,66,32,95,49,51,49,56,41,32,40,40,
+66,32,95,57,49,55,41,32,95,49,51,56,53,41,41,41,41,32,40,40,
+65,32,58,49,51,56,55,32,40,40,40,40,83,39,32,40,67,32,40,40,
+40,67,39,32,67,41,32,40,40,40,83,39,32,40,83,39,32,40,83,39,
+32,95,53,48,52,41,41,41,32,40,40,66,32,40,66,32,40,40,83,39,
+32,79,41,32,40,40,66,32,40,80,32,40,95,49,51,56,53,32,34,45,
+62,34,41,41,41,32,40,40,40,67,39,32,79,41,32,40,40,80,32,95,
+49,51,48,54,41,32,95,49,51,56,50,41,41,32,75,41,41,41,41,41,
+32,40,40,40,67,39,32,40,67,39,32,40,83,39,32,79,41,41,41,32,
+40,40,66,32,40,66,32,40,66,32,40,80,32,40,95,49,51,56,53,32,
+34,61,62,34,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,
+40,67,39,32,79,41,41,41,32,40,40,66,32,40,66,32,40,80,32,95,
+49,51,48,53,41,41,41,32,40,40,66,32,40,40,67,39,32,95,50,56,
+50,41,32,40,40,66,32,95,57,51,54,41,32,40,40,67,32,79,41,32,
+75,41,41,41,41,32,40,40,66,32,40,95,49,51,57,53,32,95,57,55,
+52,41,41,32,40,40,83,32,95,49,51,57,53,41,32,73,41,41,41,41,
+41,32,75,41,41,41,32,40,40,40,83,39,32,79,41,32,40,40,66,32,
+40,80,32,40,95,49,51,56,53,32,40,40,79,32,35,49,50,54,41,32,
+75,41,41,41,41,32,40,40,40,67,39,32,79,41,32,40,40,80,32,95,
+49,51,48,52,41,32,95,49,51,56,51,41,41,32,75,41,41,41,32,40,
+40,40,67,39,32,79,41,32,40,40,66,32,40,80,32,40,95,49,51,56,
+53,32,40,40,95,53,48,52,32,95,49,50,57,56,41,32,34,91,93,34,
+41,41,41,41,32,40,40,40,67,39,32,79,41,32,40,40,80,32,40,40,
+95,53,48,52,32,95,49,50,57,56,41,32,34,91,93,34,41,41,32,95,
+49,51,56,49,41,41,32,75,41,41,41,32,75,41,41,41,41,41,32,40,
+40,40,67,39,32,40,67,39,32,40,67,39,32,95,52,51,49,41,41,41,
+32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,83,39,32,40,
+83,32,80,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,
+67,39,32,40,67,39,32,40,67,39,32,79,41,41,41,41,41,32,40,40,
+66,32,40,66,32,40,40,67,39,32,66,41,32,40,40,66,32,40,67,39,
+32,95,50,56,50,41,41,32,40,40,67,32,66,41,32,95,49,48,56,54,
+41,41,41,41,41,32,40,40,66,32,40,40,67,39,32,66,41,32,40,40,
+66,32,95,50,56,50,41,32,40,40,66,32,95,57,51,54,41,32,40,40,
+67,32,79,41,32,75,41,41,41,41,41,32,40,40,40,83,39,32,66,41,
+32,40,95,52,51,51,32,95,49,51,57,53,41,41,32,40,67,32,95,52,
+56,54,41,41,41,41,41,32,75,41,41,32,40,95,57,55,53,32,95,49,
+51,56,52,41,41,41,32,40,40,40,95,50,48,55,32,95,50,49,57,41,
+32,40,40,95,53,56,49,32,95,51,49,48,41,32,40,95,51,57,50,32,
+35,50,41,41,41,32,40,40,95,53,56,49,32,95,51,49,48,41,32,40,
+95,51,57,50,32,35,49,48,41,41,41,41,41,41,32,40,40,66,32,95,
+49,51,49,56,41,32,40,40,66,32,95,57,49,55,41,32,95,49,51,56,
+53,41,41,41,41,41,32,40,40,67,32,95,57,55,48,41,32,95,49,51,
+56,48,41,41,32,95,57,49,55,41,32,40,95,49,48,56,51,32,40,40,
+79,32,35,49,48,55,41,32,75,41,41,41,41,32,40,40,65,32,58,49,
+51,56,56,32,40,40,95,52,51,49,32,40,40,83,32,40,40,40,67,39,
+32,83,41,32,40,40,40,83,39,32,40,67,39,32,40,67,39,32,40,83,
+32,80,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,
+32,40,67,39,32,79,41,41,41,41,32,40,40,40,67,39,32,66,41,32,
+40,66,39,32,40,40,66,32,40,83,39,32,95,50,56,50,41,41,32,40,
+40,66,32,40,66,32,95,49,51,49,56,41,41,32,40,40,66,32,40,66,
+32,40,95,50,56,50,32,95,57,51,53,41,41,41,32,40,40,40,67,39,
+32,40,83,39,32,95,57,51,57,41,41,32,40,40,40,67,39,32,40,67,
+39,32,79,41,41,32,40,67,32,80,41,41,32,75,41,41,32,73,41,41,
+41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,66,39,32,40,40,
+66,32,95,50,56,50,41,32,95,57,51,54,41,41,41,32,40,40,40,83,
+39,32,40,67,39,32,40,95,52,51,51,32,95,49,51,57,51,41,41,41,
+32,40,67,32,95,49,51,57,50,41,41,32,73,41,41,41,41,32,75,41,
+41,32,40,95,57,55,53,32,95,49,51,56,52,41,41,41,32,40,95,52,
+51,49,32,95,49,51,57,48,41,41,41,32,40,40,66,32,40,95,52,51,
+48,32,40,40,40,67,39,32,79,41,32,40,40,40,67,39,32,95,57,55,
+48,41,32,40,40,66,32,95,49,48,56,51,41,32,40,40,66,32,40,95,
+53,48,52,32,40,40,79,32,35,57,55,41,32,75,41,41,41,32,40,95,
+49,56,52,50,32,95,51,49,54,41,41,41,41,32,95,57,55,51,41,41,
+32,75,41,41,41,32,40,40,95,50,48,55,32,95,50,49,57,41,32,40,
+40,95,53,56,49,32,95,51,49,48,41,32,40,95,51,57,50,32,35,49,
+41,41,41,41,41,41,32,40,40,40,95,50,48,55,32,95,50,49,57,41,
+32,40,40,95,53,56,49,32,95,51,49,48,41,32,40,95,51,57,50,32,
+35,50,41,41,41,32,40,40,95,53,56,49,32,95,51,49,48,41,32,40,
+95,51,57,50,32,35,49,48,41,41,41,41,41,32,40,40,65,32,58,49,
+51,56,57,32,95,57,49,55,41,32,40,40,65,32,58,49,51,57,48,32,
+40,85,32,40,90,32,95,57,49,55,41,41,41,32,40,40,65,32,58,49,
+51,57,49,32,95,57,49,56,41,32,40,40,65,32,58,49,51,57,50,32,
+40,40,66,32,40,95,52,51,54,32,95,49,51,57,49,41,41,32,95,49,
+51,56,57,41,41,32,40,40,65,32,58,49,51,57,51,32,40,40,66,32,
+95,49,51,57,49,41,32,40,95,49,51,57,49,32,40,40,95,49,53,48,
+57,32,95,49,51,56,52,41,32,34,80,114,105,109,105,116,105,118,101,115,
+46,45,62,34,41,41,41,41,32,40,40,65,32,58,49,51,57,52,32,40,
+40,66,32,95,49,51,57,49,41,32,40,95,49,51,57,49,32,40,40,95,
+49,53,48,57,32,95,49,51,56,52,41,32,34,80,114,105,109,105,116,105,
+118,101,115,46,61,62,34,41,41,41,41,32,40,40,65,32,58,49,51,57,
+53,32,95,49,51,57,51,41,32,40,40,65,32,58,49,51,57,54,32,40,
+85,32,40,40,40,67,39,32,66,41,32,40,40,67,32,40,40,67,32,61,
+61,41,32,35,49,41,41,32,95,53,50,49,41,41,32,40,85,32,40,40,
+67,32,66,41,32,40,40,66,32,40,40,67,39,32,66,41,32,40,40,67,
+32,40,40,67,32,61,61,41,32,35,49,41,41,32,95,53,50,49,41,41,
+41,32,40,40,66,32,85,41,32,40,40,66,32,40,67,32,66,41,41,32,
+40,40,66,32,40,66,32,40,40,67,39,32,66,41,32,40,40,67,32,40,
+40,67,32,61,61,41,32,35,48,41,41,32,95,53,50,49,41,41,41,41,
+32,40,40,66,32,40,66,32,85,41,41,32,40,40,66,32,40,66,32,40,
+67,32,40,40,67,32,40,40,40,83,39,32,95,49,51,48,41,32,40,95,
+49,48,57,48,32,34,45,62,34,41,41,32,40,95,49,48,57,48,32,34,
+80,114,105,109,105,116,105,118,101,115,46,45,62,34,41,41,41,32,95,53,
+50,49,41,41,41,41,32,40,40,66,32,40,66,32,95,53,50,50,41,41,
+32,40,67,32,80,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,
+40,65,32,58,49,51,57,55,32,40,85,32,40,40,40,67,39,32,66,41,
+32,40,40,67,32,40,40,67,32,61,61,41,32,35,49,41,41,32,95,53,
+50,49,41,41,32,40,85,32,40,40,67,32,66,41,32,40,40,66,32,40,
+40,67,39,32,66,41,32,40,40,67,32,40,40,67,32,61,61,41,32,35,
+49,41,41,32,95,53,50,49,41,41,41,32,40,40,66,32,85,41,32,40,
+40,66,32,40,67,32,66,41,41,32,40,40,66,32,40,66,32,40,40,67,
+39,32,66,41,32,40,40,67,32,40,40,67,32,61,61,41,32,35,48,41,
+41,32,95,53,50,49,41,41,41,41,32,40,40,66,32,40,66,32,85,41,
+41,32,40,40,66,32,40,66,32,40,67,32,40,40,67,32,40,40,40,83,
+39,32,95,49,51,48,41,32,40,95,49,48,57,48,32,34,61,62,34,41,
+41,32,40,95,49,48,57,48,32,34,80,114,105,109,105,116,105,118,101,115,
+46,61,62,34,41,41,41,32,95,53,50,49,41,41,41,41,32,40,40,66,
+32,40,66,32,95,53,50,50,41,41,32,40,67,32,80,41,41,41,41,41,
+41,41,41,41,41,41,41,41,32,40,40,65,32,58,49,51,57,56,32,40,
+40,66,32,40,66,32,40,40,95,51,53,32,95,54,56,41,32,95,55,51,
+41,41,41,32,40,40,66,32,40,66,32,85,41,41,32,40,40,66,32,40,
+66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
+40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
+32,95,55,50,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,
+40,40,66,32,40,66,32,40,40,67,39,32,40,67,39,32,40,67,39,32,
+40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,66,41,41,41,
+41,41,41,41,32,95,49,51,51,55,41,41,41,32,95,51,50,53,41,41,
+41,41,41,32,40,40,65,32,58,49,51,57,57,32,40,40,66,32,95,55,
+52,41,32,40,40,40,67,39,32,95,50,56,52,41,32,95,51,50,52,41,
+32,95,49,51,52,53,41,41,41,32,40,40,65,32,58,49,52,48,48,32,
+40,40,40,83,39,32,40,83,39,32,67,41,41,32,40,40,66,32,40,66,
+32,40,67,32,83,39,41,41,41,32,40,40,66,32,40,66,32,67,41,41,
+32,95,49,52,55,49,41,41,41,32,40,40,66,32,40,66,32,67,41,41,
+32,95,49,52,48,52,41,41,41,32,40,40,65,32,58,49,52,48,49,32,
+40,40,66,32,89,41,32,40,40,40,67,39,32,40,67,39,32,89,41,41,
+32,40,40,40,83,39,32,40,67,39,32,40,67,39,32,40,67,39,32,67,
+41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,83,
+32,66,41,41,41,41,41,32,40,40,66,32,40,40,83,39,32,66,41,32,
+40,40,66,32,40,83,39,32,40,83,39,32,40,83,39,32,83,41,41,41,
+41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,40,83,39,32,
+83,39,41,32,40,40,67,32,60,41,32,35,49,51,41,41,41,41,41,41,
+32,40,40,40,83,39,32,40,67,39,32,40,67,39,32,40,83,39,32,83,
+41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,40,
+83,39,32,83,39,41,32,40,40,67,32,60,41,32,35,49,55,41,41,41,
+41,41,41,32,40,40,40,67,39,32,40,83,39,32,66,41,41,32,40,40,
+66,32,40,66,32,40,83,39,32,83,41,41,41,32,40,40,66,32,40,66,
+32,40,66,32,40,40,67,39,32,83,39,41,32,40,40,67,32,60,41,32,
+35,49,57,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,85,
+41,41,41,32,40,40,66,32,40,40,67,39,32,40,67,39,32,66,41,41,
+32,40,40,66,32,66,39,41,32,95,52,50,56,41,41,41,32,40,40,67,
+39,32,66,41,32,40,40,66,32,40,95,50,57,56,32,95,54,54,41,41,
+32,95,57,51,54,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,
+40,40,67,39,32,40,67,39,32,66,41,41,32,40,67,32,40,40,67,32,
+61,61,41,32,35,49,55,41,41,41,41,41,32,40,40,66,32,40,66,32,
+85,41,41,32,40,40,66,32,90,41,32,40,40,66,32,40,66,32,40,95,
+50,56,50,32,40,95,51,55,32,95,54,56,41,41,41,41,32,40,67,32,
+40,95,52,51,54,32,95,49,51,57,49,41,41,41,41,41,41,41,41,41,
+32,40,40,66,32,40,40,67,39,32,40,67,39,32,66,41,41,32,40,67,
+32,40,40,67,32,61,61,41,32,35,49,51,41,41,41,41,32,40,40,66,
+32,85,41,32,90,41,41,41,41,41,41,41,32,40,40,66,32,40,40,83,
+39,32,40,67,39,32,40,83,39,32,40,83,39,32,40,67,39,32,67,41,
+41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
+32,40,40,83,39,32,83,39,41,32,40,40,67,32,60,41,32,35,49,41,
+41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,40,67,
+39,32,40,83,39,32,83,41,41,32,40,40,66,32,40,66,32,40,40,83,
+39,32,83,39,41,32,40,40,67,32,60,41,32,35,52,41,41,41,41,32,
+40,40,66,32,40,40,83,39,32,40,67,39,32,66,41,41,32,40,67,32,
+40,40,67,32,61,61,41,32,35,52,41,41,41,41,32,40,40,66,32,40,
+66,32,85,41,41,32,40,40,66,32,90,41,32,40,40,66,32,40,66,32,
+85,41,41,32,40,40,40,83,39,32,40,83,39,32,83,41,41,32,40,40,
+66,32,40,66,32,40,40,83,39,32,83,39,41,32,40,40,67,32,60,41,
+32,35,53,41,41,41,41,32,40,40,66,32,40,40,67,39,32,40,67,39,
+32,66,41,41,32,40,67,32,40,40,67,32,61,61,41,32,35,53,41,41,
+41,41,32,40,40,66,32,85,41,32,40,90,32,40,95,51,55,32,95,54,
+56,41,41,41,41,41,41,32,40,40,66,32,40,40,67,39,32,40,67,39,
+32,66,41,41,32,40,67,32,40,40,67,32,61,61,41,32,35,49,41,41,
+41,41,32,40,40,66,32,85,41,32,40,90,32,40,95,51,55,32,95,54,
+56,41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,
+40,66,32,40,66,32,40,40,67,39,32,40,67,39,32,66,41,41,32,40,
+67,32,40,40,67,32,61,61,41,32,35,49,41,41,41,41,41,41,32,40,
+40,66,32,40,66,32,40,66,32,85,41,41,41,32,40,40,40,67,39,32,
+66,41,32,40,66,39,32,40,66,39,32,40,67,39,32,40,95,51,53,32,
+95,54,56,41,41,41,41,41,32,40,40,40,67,39,32,66,41,32,67,39,
+41,32,40,67,32,95,53,48,51,41,41,41,41,41,41,41,41,41,32,40,
+40,66,32,40,66,32,40,66,32,40,66,32,85,41,41,41,41,32,40,40,
+66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,40,95,51,53,32,
+95,54,56,41,32,40,95,55,52,32,95,49,51,52,50,41,41,41,41,41,
+41,41,32,40,40,66,32,40,66,32,40,40,83,39,32,40,67,39,32,40,
+83,39,32,67,41,41,41,32,40,40,66,32,40,66,32,40,40,67,39,32,
+67,41,32,95,49,49,49,52,41,41,41,32,40,40,66,32,40,66,32,40,
+95,50,56,50,32,40,95,51,55,32,95,54,56,41,41,41,41,32,40,67,
+32,40,95,52,51,54,32,95,49,51,57,49,41,41,41,41,41,41,41,32,
+40,40,66,32,40,66,32,40,66,32,40,66,32,85,41,41,41,41,32,40,
+40,40,83,39,32,66,41,32,40,66,39,32,40,66,39,32,40,40,66,32,
+40,67,39,32,66,41,41,32,40,40,66,32,40,67,32,40,40,67,32,61,
+61,41,32,35,49,57,41,41,41,32,95,49,53,49,51,41,41,41,41,41,
+32,40,40,66,32,40,66,32,40,66,32,40,66,32,85,41,41,41,41,32,
+40,40,66,32,40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,66,
+32,40,66,32,67,41,41,32,40,40,66,32,40,40,83,39,32,40,83,39,
+32,67,39,41,41,32,40,40,66,32,40,40,67,39,32,40,95,50,50,52,
+32,95,51,49,52,41,41,32,95,52,52,57,41,41,32,95,52,52,57,41,
+41,41,32,40,40,40,67,39,32,66,41,32,40,66,39,32,40,66,39,32,
+95,50,56,50,41,41,41,32,40,40,66,32,40,66,32,95,57,57,54,41,
+41,32,40,40,67,39,32,95,52,53,48,41,32,40,95,52,51,49,32,95,
+57,55,50,41,41,41,41,41,41,41,41,32,40,40,40,67,39,32,40,67,
+39,32,95,50,56,50,41,41,32,40,40,40,67,39,32,66,41,32,95,49,
+50,57,49,41,32,40,95,57,55,57,32,95,57,56,49,41,41,41,32,34,
+98,97,100,32,115,121,110,111,110,121,109,32,117,115,101,34,41,41,41,41,
+41,41,41,41,41,41,41,41,32,95,49,53,49,51,41,41,32,95,53,48,
+50,41,41,41,32,40,40,65,32,58,49,52,48,50,32,40,40,67,32,40,
+40,83,32,66,41,32,40,40,40,83,39,32,40,83,39,32,83,41,41,32,
+40,40,66,32,40,66,32,40,40,83,39,32,83,39,41,32,40,40,67,32,
+60,41,32,35,49,51,41,41,41,41,32,40,40,40,67,39,32,40,83,39,
+32,83,41,41,32,40,40,66,32,40,66,32,40,40,83,39,32,83,39,41,
+32,40,40,67,32,60,41,32,35,49,55,41,41,41,41,32,40,40,66,32,
+40,66,32,40,83,32,40,40,40,67,39,32,83,39,41,32,40,40,67,32,
+60,41,32,35,49,57,41,41,32,40,85,32,40,40,40,67,39,32,66,41,
+32,40,40,66,32,40,95,50,57,56,32,95,54,54,41,41,32,95,57,51,
+54,41,41,32,95,49,52,48,50,41,41,41,41,41,41,32,40,40,66,32,
+40,40,67,39,32,40,67,39,32,66,41,41,32,40,67,32,40,40,67,32,
+61,61,41,32,35,49,55,41,41,41,41,32,40,40,66,32,85,41,32,40,
+40,66,32,40,40,83,39,32,40,95,51,53,32,95,54,56,41,41,32,95,
+49,51,57,57,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,
+80,41,32,40,95,51,55,32,95,54,56,41,41,41,32,40,40,66,32,40,
+40,67,39,32,40,95,51,53,32,95,54,56,41,41,32,95,49,52,48,50,
+41,41,32,40,40,40,67,39,32,40,83,39,32,40,95,51,54,32,95,54,
+56,41,41,41,32,95,49,51,57,56,41,32,40,95,51,55,32,95,54,56,
+41,41,41,41,41,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,
+32,66,41,41,32,40,67,32,40,40,67,32,61,61,41,32,35,49,51,41,
+41,41,32,40,85,32,40,40,66,32,40,40,67,39,32,40,95,50,57,56,
+32,95,54,54,41,41,32,40,95,50,56,55,32,95,57,51,48,41,41,41,
+32,95,49,52,48,50,41,41,41,41,41,41,32,40,40,40,83,39,32,40,
+67,39,32,67,41,41,32,40,40,66,32,40,66,32,40,40,83,39,32,83,
+39,41,32,40,40,67,32,60,41,32,35,49,41,41,41,41,32,40,40,40,
+67,39,32,40,83,39,32,83,41,41,32,40,40,66,32,40,66,32,40,40,
+83,39,32,83,39,41,32,40,40,67,32,60,41,32,35,52,41,41,41,41,
+32,40,40,66,32,40,40,83,39,32,40,67,39,32,66,41,41,32,40,67,
+32,40,40,67,32,61,61,41,32,35,52,41,41,41,41,32,40,40,66,32,
+40,66,32,85,41,41,32,40,40,66,32,90,41,32,40,40,66,32,40,66,
+32,85,41,41,32,40,40,40,83,39,32,40,83,39,32,83,41,41,32,40,
+40,66,32,40,66,32,40,40,83,39,32,83,39,41,32,40,40,67,32,60,
+41,32,35,53,41,41,41,41,32,40,40,66,32,40,40,67,39,32,40,67,
+39,32,66,41,41,32,40,67,32,40,40,67,32,61,61,41,32,35,53,41,
+41,41,41,32,40,40,66,32,85,41,32,40,90,32,40,95,51,55,32,95,
+54,56,41,41,41,41,41,41,32,40,40,66,32,40,40,67,39,32,40,67,
+39,32,66,41,41,32,40,67,32,40,40,67,32,61,61,41,32,35,49,41,
+41,41,41,32,40,40,66,32,85,41,32,40,90,32,40,95,51,55,32,95,
+54,56,41,41,41,41,41,41,41,41,41,41,41,32,40,40,40,67,39,32,
+40,67,39,32,66,41,41,32,40,67,32,40,40,67,32,61,61,41,32,35,
+49,41,41,41,32,40,85,32,40,40,40,67,39,32,66,41,32,40,40,66,
+32,40,95,51,53,32,95,54,56,41,41,32,95,49,52,48,50,41,41,32,
+40,40,40,67,39,32,66,41,32,40,40,66,32,40,95,51,53,32,95,54,
+56,41,41,32,95,49,52,48,50,41,41,32,40,40,66,32,40,66,32,40,
+95,50,56,50,32,40,95,51,55,32,95,54,56,41,41,41,41,32,95,57,
+49,56,41,41,41,41,41,41,41,41,32,40,40,66,32,85,41,32,40,90,
+32,40,95,51,55,32,95,54,56,41,41,41,41,41,41,41,32,40,95,49,
+53,49,51,32,95,55,54,48,41,41,41,32,40,40,65,32,58,49,52,48,
+51,32,40,40,66,32,40,66,32,40,66,32,40,40,95,51,53,32,95,54,
+56,41,32,40,95,55,52,32,95,49,51,52,56,41,41,41,41,41,32,40,
+40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,66,32,66,39,41,
+32,40,40,66,32,40,66,32,95,50,56,50,41,41,32,95,49,50,57,49,
+41,41,41,32,40,40,66,32,40,40,67,39,32,95,53,48,52,41,32,40,
+40,80,32,34,116,121,112,101,34,41,32,34,107,105,110,100,34,41,41,41,
+32,40,95,53,48,52,32,34,32,101,114,114,111,114,58,32,34,41,41,41,
+41,41,32,40,40,65,32,58,49,52,48,52,32,40,40,40,83,39,32,66,
+41,32,40,40,66,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,
+32,40,95,51,53,32,95,54,56,41,41,41,32,95,49,52,48,49,41,41,
+41,32,40,40,40,83,39,32,66,41,32,40,40,66,32,40,67,39,32,66,
+41,41,32,40,40,66,32,40,66,32,40,95,51,53,32,95,54,56,41,41,
+41,32,95,49,52,48,49,41,41,41,32,95,49,52,48,53,41,41,41,32,
+40,40,65,32,58,49,52,48,53,32,40,40,66,32,89,41,32,40,40,40,
+83,39,32,40,67,39,32,40,83,39,32,83,41,41,41,32,40,40,66,32,
+40,66,32,40,66,32,40,40,67,39,32,83,39,41,32,66,41,41,41,41,
+32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,83,39,32,40,
+83,39,32,67,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
+40,66,32,40,66,32,40,40,83,39,32,83,39,41,32,40,40,67,32,60,
+41,32,35,49,41,41,41,41,41,41,41,32,40,40,40,67,39,32,66,41,
+32,40,40,66,32,40,83,39,32,40,83,39,32,40,83,39,32,83,41,41,
+41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,40,83,39,
+32,83,39,41,32,40,40,67,32,60,41,32,35,49,55,41,41,41,41,41,
+41,32,40,40,66,32,40,66,32,40,66,32,40,40,67,39,32,40,67,39,
+32,66,41,41,32,40,67,32,40,40,67,32,61,61,41,32,35,49,55,41,
+41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,85,41,41,41,
+32,40,40,66,32,40,66,32,40,83,32,40,40,40,67,39,32,83,39,41,
+32,66,41,32,40,40,66,32,40,40,83,39,32,40,67,39,32,66,41,41,
+32,40,67,32,40,40,67,32,61,61,41,32,35,49,55,41,41,41,41,32,
+40,40,66,32,40,66,32,85,41,41,32,40,40,40,67,39,32,40,67,39,
+32,67,41,41,32,40,40,66,32,67,41,32,40,95,50,50,51,32,95,51,
+49,52,41,41,41,32,40,40,95,51,55,32,95,54,56,41,32,95,49,53,
+54,56,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,67,41,
+41,32,95,49,52,48,54,41,41,41,41,41,41,41,32,40,40,66,32,40,
+66,32,40,66,32,40,40,83,39,32,40,67,39,32,66,41,41,32,40,67,
+32,40,40,67,32,61,61,41,32,35,49,41,41,41,41,41,41,32,40,40,
+66,32,40,66,32,40,66,32,40,66,32,85,41,41,41,41,32,40,40,66,
+32,40,66,32,40,40,67,39,32,66,41,32,40,66,39,32,66,41,41,41,
+41,32,40,40,66,32,40,66,32,40,40,67,39,32,66,41,32,40,66,39,
+32,40,40,66,32,40,67,39,32,66,41,41,32,40,67,32,40,40,67,32,
+61,61,41,32,35,49,41,41,41,41,41,41,41,32,40,40,66,32,40,66,
+32,40,66,32,40,66,32,85,41,41,41,41,32,40,40,40,83,39,32,40,
+83,39,32,40,67,39,32,66,41,41,41,32,40,40,66,32,40,66,32,40,
+66,32,40,67,39,32,66,41,41,41,41,32,40,66,32,40,66,32,40,66,
+32,40,95,51,54,32,95,54,56,41,41,41,41,41,41,32,73,41,41,41,
+41,41,41,41,41,41,32,40,40,66,32,40,66,32,85,41,41,32,40,40,
+40,67,39,32,66,41,32,66,41,32,40,40,40,83,39,32,66,41,32,40,
+40,66,32,40,67,39,32,66,41,41,32,40,67,32,40,40,67,32,61,61,
+41,32,35,48,41,41,41,41,32,40,40,66,32,40,66,32,85,41,41,32,
+40,40,40,67,39,32,40,67,39,32,67,41,41,32,40,40,67,39,32,67,
+41,32,40,95,50,50,51,32,95,49,48,55,56,41,41,41,32,40,40,95,
+51,55,32,95,54,56,41,32,95,49,53,54,56,41,41,41,41,41,41,41,
+41,41,32,40,40,66,32,40,66,32,40,66,32,40,83,32,73,41,41,41,
+41,32,40,40,40,83,39,32,40,83,39,32,40,83,39,32,40,67,39,32,
+40,67,39,32,66,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,
+32,40,66,32,40,67,32,40,40,67,32,61,61,41,32,35,49,55,41,41,
+41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,40,
+95,51,53,32,95,54,56,41,32,40,95,55,52,32,95,49,51,52,56,41,
+41,41,41,41,41,32,40,40,66,32,40,40,83,39,32,40,83,39,32,40,
+83,39,32,80,41,41,41,32,95,49,53,53,51,41,41,32,40,40,40,67,
+39,32,40,67,39,32,66,41,41,32,40,40,66,32,66,39,41,32,40,40,
+66,32,40,66,32,95,50,56,50,41,41,32,95,49,52,48,51,41,41,41,
+32,40,40,66,32,40,66,32,40,95,53,48,52,32,34,99,97,110,110,111,
+116,32,117,110,105,102,121,32,34,41,41,41,32,40,40,40,67,39,32,66,
+41,32,40,40,66,32,95,53,48,52,41,32,95,49,48,49,55,41,41,32,
+40,40,66,32,40,95,53,48,52,32,34,32,97,110,100,32,34,41,41,32,
+95,49,48,49,55,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,
+32,40,66,32,85,41,41,41,32,40,40,66,32,40,66,32,67,41,41,32,
+95,49,52,48,54,41,41,41,41,41,41,41,32,40,40,65,32,58,49,52,
+48,54,32,40,40,66,32,40,66,32,40,40,83,39,32,66,41,32,40,40,
+66,32,40,95,51,53,32,95,54,56,41,41,32,95,49,51,57,57,41,41,
+41,41,32,40,40,40,83,39,32,40,83,39,32,40,67,39,32,40,83,39,
+32,80,41,41,41,41,32,95,49,52,48,55,41,32,40,40,66,32,40,66,
+32,67,41,41,32,95,49,52,48,52,41,41,41,41,32,40,40,65,32,58,
+49,52,48,55,32,40,40,66,32,40,66,32,40,66,32,40,83,32,73,41,
+41,41,41,32,40,40,40,83,39,32,40,83,39,32,40,83,39,32,40,83,
+39,32,40,67,39,32,66,41,41,41,41,41,32,40,40,66,32,40,66,32,
+40,66,32,40,66,32,40,67,32,40,40,67,32,61,61,41,32,35,49,55,
+41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,40,83,
+39,32,40,95,51,53,32,95,54,56,41,41,32,40,40,66,32,95,49,53,
+49,55,41,32,40,40,67,32,79,41,32,75,41,41,41,41,41,41,32,40,
+40,66,32,40,66,32,40,40,83,39,32,40,83,39,32,67,41,41,32,40,
+40,40,83,39,32,66,41,32,40,40,66,32,67,41,32,40,95,52,55,52,
+32,40,95,50,50,51,32,95,51,49,52,41,41,41,41,32,95,49,51,57,
+56,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,
+40,40,66,32,66,39,41,32,40,40,66,32,40,66,32,95,50,56,50,41,
+41,32,95,49,52,48,51,41,41,41,32,40,40,66,32,40,66,32,40,95,
+53,48,52,32,34,99,121,99,108,105,99,32,34,41,41,41,32,40,40,40,
+67,39,32,66,41,32,40,40,66,32,95,53,48,52,41,32,40,40,66,32,
+95,49,48,49,55,41,32,95,57,51,52,41,41,41,32,40,40,66,32,40,
+95,53,48,52,32,34,32,61,32,34,41,41,32,95,49,48,49,55,41,41,
+41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,
+85,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,
+40,67,39,32,40,95,51,53,32,95,54,56,41,41,32,95,49,51,57,57,
+41,41,41,41,41,32,40,40,66,32,40,66,32,40,40,83,39,32,40,67,
+39,32,80,41,41,32,95,49,51,57,56,41,41,41,32,40,40,40,67,39,
+32,40,67,39,32,66,41,41,32,95,49,52,48,52,41,32,95,57,51,52,
+41,41,41,41,41,41,41,32,40,40,65,32,58,49,52,48,56,32,40,40,
+40,95,51,53,32,95,54,56,41,32,95,55,51,41,32,40,85,32,40,40,
+66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,90,41,41,
+41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
+32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
+66,32,95,55,50,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,
+40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,
+40,67,39,32,67,41,41,41,41,41,41,32,95,49,51,51,55,41,32,95,
+51,50,51,41,41,41,41,41,41,32,40,40,65,32,58,49,52,48,57,32,
+40,40,40,95,50,57,56,32,95,54,54,41,32,95,57,51,52,41,32,95,
+49,52,49,48,41,41,32,40,40,65,32,58,49,52,49,48,32,40,40,40,
+95,51,53,32,95,54,56,41,32,95,55,51,41,32,40,85,32,40,40,40,
+67,39,32,40,83,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,
+67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,
+67,39,32,40,67,39,32,67,41,41,41,41,41,41,41,41,41,41,41,41,
+32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,67,39,32,40,67,
+39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,
+39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,
+39,32,40,95,51,54,32,95,54,56,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
+32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
+66,32,40,66,32,95,55,50,41,41,41,41,41,41,41,41,41,41,41,41,
+41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
+32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
+40,83,39,32,95,50,56,50,41,32,95,50,57,50,41,41,41,41,41,41,
+41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,
+32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
+66,32,67,41,41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,
+66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
+40,66,32,40,66,32,67,41,41,41,41,41,41,41,41,41,41,32,40,40,
+66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
+40,66,32,40,66,32,67,41,41,41,41,41,41,41,41,41,32,40,40,66,
+32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
+66,32,67,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,
+66,32,40,66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,41,
+41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
+66,32,67,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
+40,66,32,40,66,32,67,41,41,41,41,41,32,40,40,66,32,40,66,32,
+40,66,32,40,66,32,67,41,41,41,41,32,40,40,66,32,40,66,32,40,
+66,32,67,41,41,41,32,40,40,66,32,40,66,32,67,41,41,32,40,40,
+66,32,67,41,32,95,49,51,51,55,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,32,40,95,51,55,32,95,54,56,41,41,41,32,40,40,
+67,32,40,95,53,55,53,32,95,51,49,48,41,41,32,35,49,41,41,41,
+41,41,32,40,40,65,32,58,49,52,49,49,32,40,40,79,32,35,51,54,
+41,32,75,41,41,32,40,40,65,32,58,49,52,49,50,32,40,40,66,32,
+40,66,32,40,40,95,51,53,32,95,54,56,41,32,95,49,52,49,48,41,
+41,41,32,40,40,66,32,40,66,32,40,66,32,40,95,50,56,50,32,40,
+95,51,55,32,95,54,56,41,41,41,41,41,32,40,40,40,67,39,32,66,
+41,32,40,66,39,32,40,40,66,32,95,50,56,50,41,32,95,49,48,56,
+52,41,41,41,32,40,40,40,67,39,32,66,41,32,95,53,48,52,41,32,
+40,40,66,32,40,95,53,48,52,32,95,49,52,49,49,41,41,32,40,95,
+49,56,52,50,32,95,51,49,54,41,41,41,41,41,41,41,32,40,40,65,
+32,58,49,52,49,51,32,40,40,66,32,40,66,32,40,66,32,40,40,95,
+51,53,32,95,54,56,41,32,40,95,55,52,32,95,49,51,52,49,41,41,
+41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,83,39,32,67,41,
+41,41,32,40,40,66,32,40,40,67,39,32,40,83,39,32,67,41,41,32,
+95,49,53,53,57,41,41,32,40,40,40,67,39,32,66,41,32,95,49,50,
+57,49,41,32,40,95,57,55,57,32,95,57,56,49,41,41,41,41,32,40,
+40,66,32,85,41,32,40,40,66,32,40,66,32,40,66,32,40,95,51,55,
+32,95,54,56,41,41,41,41,32,40,40,66,32,40,66,32,80,41,41,32,
+40,40,66,32,95,49,48,49,49,41,32,40,95,57,55,57,32,95,57,56,
+49,41,41,41,41,41,41,41,41,32,40,40,65,32,58,49,52,49,52,32,
+40,40,66,32,40,66,32,40,40,95,51,53,32,95,54,56,41,32,40,95,
+55,52,32,95,49,51,52,56,41,41,41,41,32,40,40,40,67,39,32,67,
+39,41,32,95,49,52,49,51,41,32,40,40,80,32,34,118,97,108,117,101,
+34,41,32,34,116,121,112,101,34,41,41,41,41,32,40,40,65,32,58,49,
+52,49,53,32,40,75,32,40,89,32,40,40,66,32,40,83,32,73,41,41,
+32,40,40,66,32,40,66,32,40,66,32,40,83,32,73,41,41,41,41,32,
+40,40,40,83,39,32,40,67,39,32,40,83,39,32,40,67,39,32,40,67,
+39,32,66,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,
+66,32,40,67,32,40,40,67,32,61,61,41,32,35,49,57,41,41,41,41,
+41,41,32,40,40,66,32,40,40,67,39,32,66,41,32,40,40,66,32,67,
+41,32,40,40,66,32,40,67,32,95,49,51,57,55,41,41,32,40,95,51,
+55,32,95,54,56,41,41,41,41,41,32,40,40,66,32,40,66,32,85,41,
+41,32,40,40,66,32,40,40,83,39,32,66,41,32,40,66,39,32,40,40,
+66,32,40,95,51,53,32,95,54,56,41,41,32,40,40,66,32,95,49,52,
+56,53,41,32,40,95,57,55,57,32,95,57,56,50,41,41,41,41,41,41,
+32,40,40,66,32,40,66,32,40,40,67,39,32,66,41,32,40,40,66,32,
+40,83,39,32,40,95,51,54,32,95,54,56,41,41,41,32,40,67,32,95,
+49,51,55,49,41,41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,
+66,39,32,66,41,41,32,40,40,66,32,40,67,39,32,80,41,41,32,40,
+40,40,67,39,32,66,41,32,95,57,49,56,41,32,95,57,49,55,41,41,
+41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,85,41,41,32,40,
+40,67,39,32,40,67,39,32,40,67,39,32,40,95,51,53,32,95,54,56,
+41,41,41,41,32,95,49,52,49,54,41,41,41,41,41,41,41,41,32,40,
+40,65,32,58,49,52,49,54,32,40,40,40,83,39,32,67,41,32,40,40,
+66,32,40,40,83,39,32,83,39,41,32,95,52,50,56,41,41,32,40,40,
+66,32,40,40,83,39,32,66,41,32,40,40,66,32,40,95,51,53,32,95,
+54,56,41,41,32,40,40,95,52,54,32,95,54,56,41,32,40,95,50,56,
+54,32,95,49,52,48,57,41,41,41,41,41,32,40,40,66,32,40,66,32,
+40,66,32,40,66,32,40,95,51,55,32,95,54,56,41,41,41,41,41,32,
+40,40,40,67,39,32,66,41,32,40,66,39,32,40,66,39,32,80,41,41,
+41,32,40,40,66,32,40,67,39,32,95,57,57,54,41,41,32,40,40,66,
+32,95,52,53,48,41,32,40,95,52,51,49,32,95,57,55,50,41,41,41,
+41,41,41,41,41,32,40,40,66,32,40,66,32,40,95,51,55,32,95,54,
+56,41,41,41,32,80,41,41,41,32,40,40,65,32,58,49,52,49,55,32,
+40,40,83,32,73,41,32,40,40,66,32,40,66,32,85,41,41,32,40,40,
+40,67,39,32,66,41,32,40,40,66,32,40,67,39,32,66,41,41,32,40,
+40,66,32,40,67,32,40,40,67,32,61,61,41,32,35,49,57,41,41,41,
+32,40,95,51,55,32,95,54,56,41,41,41,41,32,40,40,66,32,85,41,
+32,95,49,52,49,54,41,41,41,41,41,32,40,40,65,32,58,49,52,49,
+56,32,40,75,32,40,40,66,32,40,66,32,40,66,32,40,40,95,51,53,
+32,95,54,56,41,32,40,95,55,52,32,95,49,51,52,49,41,41,41,41,
+41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,95,49,51,53,53,
+41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,66,39,32,95,49,
+53,54,51,41,41,32,40,67,32,95,49,51,49,56,41,41,41,41,41,41,
+32,40,40,65,32,58,49,52,49,57,32,40,40,66,32,40,66,32,40,66,
+32,40,66,32,40,40,95,51,53,32,95,54,56,41,32,40,95,55,52,32,
+95,49,51,52,54,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,
+66,32,40,66,32,40,66,32,40,40,95,51,53,32,95,54,56,41,32,40,
+95,55,52,32,95,49,51,52,49,41,41,41,41,41,41,41,32,40,40,66,
+32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,95,49,51,53,
+53,41,41,41,41,41,41,32,40,40,66,32,40,40,83,39,32,40,83,39,
+32,40,83,39,32,66,41,41,41,32,40,40,66,32,40,66,32,66,39,41,
+41,32,40,40,40,67,39,32,66,41,32,40,66,39,32,95,49,53,54,52,
+41,41,32,40,40,40,67,39,32,40,67,39,32,79,41,41,32,40,67,32,
+95,49,51,49,56,41,41,32,75,41,41,41,41,41,32,40,40,40,67,39,
+32,40,67,39,32,66,41,41,32,40,40,66,32,66,39,41,32,40,40,66,
+32,40,66,32,40,67,39,32,95,49,53,54,52,41,41,41,32,40,40,66,
+32,67,41,32,95,49,48,57,49,41,41,41,41,32,40,40,40,67,39,32,
+40,67,39,32,79,41,41,32,40,67,32,95,49,51,49,56,41,41,32,75,
+41,41,41,41,41,41,41,32,40,40,65,32,58,49,52,50,48,32,40,40,
+66,32,40,66,32,40,66,32,40,40,95,51,53,32,95,54,56,41,32,40,
+95,55,52,32,95,49,51,52,54,41,41,41,41,41,32,40,40,40,83,39,
+32,40,83,39,32,40,67,39,32,66,41,41,41,32,95,49,52,49,57,41,
+32,40,40,66,32,40,66,32,40,66,32,95,57,49,55,41,41,41,32,40,
+40,66,32,67,41,32,95,49,48,57,49,41,41,41,41,41,32,40,40,65,
+32,58,49,52,50,49,32,40,40,40,67,39,32,40,83,39,32,40,67,39,
+32,95,50,56,50,41,41,41,32,95,49,52,49,56,41,32,95,57,49,55,
+41,41,32,40,40,65,32,58,49,52,50,50,32,40,40,66,32,40,95,52,
+55,32,95,54,56,41,41,32,40,40,66,32,95,50,56,57,41,32,95,49,
+52,50,49,41,41,41,32,40,40,65,32,58,49,52,50,51,32,40,40,66,
+32,40,66,32,40,40,95,51,53,32,95,54,56,41,32,40,95,55,52,32,
+95,49,51,52,48,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
+95,49,51,53,54,41,41,41,32,40,40,40,83,39,32,66,41,32,95,49,
+53,54,51,41,32,40,40,66,32,95,49,51,49,56,41,32,95,57,49,55,
+41,41,41,41,41,32,40,40,65,32,58,49,52,50,52,32,40,40,95,52,
+55,32,95,54,56,41,32,40,95,50,56,57,32,95,49,52,50,51,41,41,
+41,32,40,40,65,32,58,49,52,50,53,32,40,40,66,32,40,66,32,40,
+40,95,51,53,32,95,54,56,41,32,40,95,55,52,32,95,49,51,52,50,
+41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,95,49,51,53,55,
+41,41,41,32,95,49,49,49,53,41,41,41,32,40,40,65,32,58,49,52,
+50,54,32,40,40,66,32,40,66,32,40,40,95,51,53,32,95,54,56,41,
+32,95,55,51,41,41,41,32,40,40,66,32,40,66,32,85,41,41,32,40,
+40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,
+32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,
+32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,
+32,40,95,51,54,32,95,54,56,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,
+66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
+40,66,32,40,66,32,40,66,32,40,66,32,40,95,50,56,50,32,95,55,
+50,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,
+66,32,40,66,32,40,40,67,39,32,40,67,39,32,66,41,41,32,95,49,
+51,51,55,41,41,41,32,95,49,49,49,53,41,41,41,32,40,40,95,51,
+55,32,95,54,56,41,32,95,49,53,54,56,41,41,41,41,41,32,40,40,
+65,32,58,49,52,50,55,32,40,40,66,32,40,66,32,40,66,32,40,66,
+32,40,40,95,51,53,32,95,54,56,41,32,40,95,55,52,32,95,49,51,
+52,49,41,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,
+67,39,32,66,41,41,41,32,40,40,66,32,40,66,32,66,39,41,41,32,
+40,40,66,32,40,66,32,40,66,32,40,95,51,54,32,95,54,56,41,41,
+41,41,32,95,49,52,50,49,41,41,41,32,40,40,40,67,39,32,66,41,
+32,40,95,51,53,32,95,54,56,41,41,32,40,40,40,67,39,32,66,41,
+32,40,40,66,32,40,95,51,54,32,95,54,56,41,41,32,95,49,51,53,
+53,41,41,32,40,95,51,55,32,95,54,56,41,41,41,41,41,41,32,40,
+40,65,32,58,49,52,50,56,32,40,40,66,32,40,66,32,40,66,32,40,
+40,95,51,53,32,95,54,56,41,32,40,95,55,52,32,95,49,51,52,49,
+41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,
+40,40,66,32,66,39,41,32,40,40,66,32,40,66,32,40,95,51,54,32,
+95,54,56,41,41,41,32,95,49,52,50,50,41,41,41,32,40,40,40,67,
+39,32,66,41,32,40,95,51,53,32,95,54,56,41,41,32,40,40,40,67,
+39,32,66,41,32,40,40,66,32,40,95,51,54,32,95,54,56,41,41,32,
+95,49,51,53,53,41,41,32,40,95,51,55,32,95,54,56,41,41,41,41,
+41,41,32,40,40,65,32,58,49,52,50,57,32,40,40,66,32,40,66,32,
+40,40,95,51,53,32,95,54,56,41,32,40,95,55,52,32,95,49,51,52,
+48,41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,66,39,32,40,
+40,66,32,40,95,51,54,32,95,54,56,41,41,32,40,40,66,32,95,49,
+52,50,52,41,32,40,95,52,51,49,32,40,85,32,80,41,41,41,41,41,
+41,32,40,40,40,67,39,32,66,41,32,40,95,51,53,32,95,54,56,41,
+41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,95,51,54,32,
+95,54,56,41,41,32,95,49,51,53,54,41,41,32,40,95,51,55,32,95,
+54,56,41,41,41,41,41,41,32,40,40,65,32,58,49,52,51,48,32,40,
+40,40,83,39,32,40,95,51,54,32,95,54,56,41,41,32,40,40,95,52,
+55,32,95,54,56,41,32,95,49,52,51,50,41,41,32,40,40,40,67,39,
+32,40,95,51,53,32,95,54,56,41,41,32,95,49,52,51,51,41,32,40,
+40,40,83,39,32,40,95,51,54,32,95,54,56,41,41,32,40,40,95,52,
+55,32,95,54,56,41,32,95,49,52,52,49,41,41,32,40,40,40,67,39,
+32,40,95,51,53,32,95,54,56,41,41,32,95,49,52,51,52,41,32,40,
+40,40,83,39,32,40,95,51,54,32,95,54,56,41,41,32,95,49,52,51,
+49,41,32,95,49,52,53,53,41,41,41,41,41,41,32,40,40,65,32,58,
+49,52,51,49,32,40,40,66,32,40,95,50,56,50,32,95,49,51,54,53,
+41,41,32,40,40,66,32,40,95,50,56,50,32,95,52,57,54,41,41,32,
+40,40,66,32,40,95,53,48,51,32,95,53,48,50,41,41,32,40,95,52,
+51,48,32,40,85,32,40,40,40,67,39,32,66,41,32,40,40,67,32,40,
+40,67,32,61,61,41,32,35,49,48,41,41,32,75,41,41,32,40,85,32,
+40,40,67,32,79,41,32,75,41,41,41,41,41,41,41,41,41,32,40,40,
+65,32,58,49,52,51,50,32,40,85,32,40,40,40,67,39,32,66,41,32,
+40,40,67,32,40,40,67,32,61,61,41,32,35,55,41,41,32,40,40,95,
+51,55,32,95,54,56,41,32,95,49,53,54,56,41,41,41,32,40,85,32,
+40,40,66,32,40,66,32,40,40,95,51,53,32,95,54,56,41,32,40,95,
+55,52,32,95,49,51,52,54,41,41,41,41,32,40,40,66,32,40,67,39,
+32,40,95,52,55,32,95,54,56,41,41,41,32,40,40,67,39,32,40,67,
+39,32,95,49,52,50,54,41,41,32,40,95,49,48,57,49,32,95,55,54,
+48,41,41,41,41,41,41,41,41,32,40,40,65,32,58,49,52,51,51,32,
+40,40,66,32,40,95,50,56,50,32,95,49,51,54,55,41,41,32,40,40,
+40,67,39,32,40,95,51,53,32,95,54,56,41,41,32,40,40,95,52,54,
+32,95,54,56,41,32,95,49,52,51,53,41,41,32,40,40,40,83,39,32,
+40,95,51,54,32,95,54,56,41,41,32,40,40,95,52,55,32,95,54,56,
+41,32,95,49,52,51,55,41,41,32,40,40,95,52,54,32,95,54,56,41,
+32,95,49,52,52,50,41,41,41,41,41,32,40,40,65,32,58,49,52,51,
+52,32,40,40,66,32,40,95,50,56,50,32,95,49,51,54,55,41,41,32,
+40,40,40,67,39,32,40,95,51,53,32,95,54,56,41,41,32,40,40,95,
+52,54,32,95,54,56,41,32,95,49,52,52,54,41,41,32,40,40,40,67,
+39,32,40,95,51,53,32,95,54,56,41,41,32,40,40,66,32,40,40,95,
+52,54,32,95,54,56,41,32,95,49,52,53,52,41,41,32,95,52,50,57,
+41,41,32,40,40,66,32,40,95,51,55,32,95,54,56,41,41,32,95,52,
+50,57,41,41,41,41,41,32,40,40,65,32,58,49,52,51,53,32,40,40,
+66,32,40,40,95,51,54,32,95,54,56,41,32,95,49,52,48,56,41,41,
+32,40,40,83,32,40,40,67,32,66,41,32,40,40,40,67,39,32,83,41,
+32,40,40,66,32,40,40,83,39,32,83,39,41,32,40,40,67,32,60,41,
+32,35,50,41,41,41,32,40,40,40,83,39,32,83,41,32,40,40,66,32,
+40,40,83,39,32,83,39,41,32,40,40,67,32,60,41,32,35,56,41,41,
+41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,40,67,32,40,
+40,67,32,61,61,41,32,35,56,41,41,41,32,40,85,32,40,40,66,32,
+40,40,67,39,32,66,41,32,66,41,41,32,40,40,66,32,40,66,32,40,
+66,32,40,66,32,40,40,67,39,32,95,50,56,50,41,32,40,40,67,32,
+95,49,52,51,54,41,32,95,57,55,52,41,41,41,41,41,41,32,40,40,
+66,32,40,66,32,40,66,32,40,66,32,90,41,41,41,41,32,40,40,66,
+32,40,66,32,40,66,32,40,66,32,40,66,32,40,95,50,56,50,32,40,
+95,51,55,32,95,54,56,41,41,41,41,41,41,41,32,40,40,66,32,40,
+66,32,40,67,39,32,67,41,41,41,32,40,40,40,67,39,32,67,39,41,
+32,40,40,66,32,67,39,41,32,95,57,49,48,41,41,32,80,41,41,41,
+41,41,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,
+41,32,40,67,32,40,40,67,32,61,61,41,32,35,50,41,41,41,32,40,
+85,32,40,40,67,32,66,41,32,40,40,40,83,39,32,66,41,32,66,41,
+32,40,40,40,67,39,32,40,83,39,32,40,83,39,32,40,67,39,32,66,
+41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,67,32,40,40,
+67,32,61,61,41,32,35,49,51,41,41,41,41,41,32,40,40,66,32,40,
+66,32,40,40,67,39,32,95,50,56,50,41,32,40,40,67,32,95,49,52,
+51,54,41,32,95,57,55,51,41,41,41,41,32,40,40,66,32,40,66,32,
+90,41,41,32,40,40,66,32,40,66,32,40,66,32,40,95,50,56,50,32,
+40,95,51,55,32,95,54,56,41,41,41,41,41,32,40,40,67,39,32,40,
+67,39,32,95,57,48,52,41,41,32,80,41,41,41,41,41,41,32,40,40,
+66,32,40,66,32,85,41,41,32,40,40,66,32,40,40,67,39,32,66,41,
+32,40,40,66,32,40,67,39,32,95,50,56,50,41,41,32,95,49,52,51,
+54,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,95,
+50,56,50,32,40,95,51,55,32,95,54,56,41,41,41,41,41,41,32,40,
+40,40,67,39,32,66,41,32,40,40,66,32,40,67,39,32,66,41,41,32,
+40,40,66,32,40,66,32,95,57,48,52,41,41,32,80,41,41,41,32,95,
+57,51,48,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,67,32,
+40,40,40,67,39,32,83,39,41,32,40,40,67,32,60,41,32,35,49,41,
+41,32,40,85,32,40,40,67,32,66,41,32,40,40,66,32,40,66,32,40,
+40,67,39,32,95,50,56,50,41,32,40,40,67,32,95,49,52,51,54,41,
+32,95,57,55,51,41,41,41,41,32,40,40,66,32,40,66,32,90,41,41,
+32,40,40,66,32,40,66,32,40,66,32,40,95,50,56,50,32,40,95,51,
+55,32,95,54,56,41,41,41,41,41,32,40,40,67,39,32,40,67,39,32,
+95,57,48,51,41,41,32,80,41,41,41,41,41,41,41,41,32,40,85,32,
+40,40,67,32,66,41,32,40,40,66,32,40,66,32,40,40,67,39,32,95,
+50,56,50,41,32,40,40,67,32,95,49,52,51,54,41,32,95,57,55,51,
+41,41,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,
+40,66,32,40,66,32,40,95,50,56,50,32,40,95,51,55,32,95,54,56,
+41,41,41,41,41,32,40,40,67,39,32,40,67,39,32,95,57,48,50,41,
+41,32,80,41,41,41,41,41,41,41,41,41,41,32,40,95,51,55,32,95,
+54,56,41,41,41,41,32,40,40,65,32,58,49,52,51,54,32,40,40,40,
+67,39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,40,95,
+51,53,32,95,54,56,41,41,41,32,40,40,66,32,40,66,32,40,95,50,
+56,50,32,95,49,51,54,55,41,41,41,32,40,67,32,40,40,40,67,39,
+32,89,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,83,39,
+32,80,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,95,
+51,53,32,95,54,56,41,41,32,95,49,52,54,49,41,41,32,40,40,66,
+32,40,66,32,40,95,51,55,32,95,54,56,41,41,41,32,40,40,66,32,
+80,41,32,95,52,54,51,41,41,41,41,41,32,40,40,66,32,40,66,32,
+40,67,32,66,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,
+32,40,40,67,39,32,40,95,51,53,32,95,54,56,41,41,32,95,49,52,
+54,49,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,40,
+83,39,32,40,83,39,32,95,50,56,50,41,41,32,40,95,49,52,50,55,
+32,95,55,54,48,41,41,41,41,41,32,40,40,40,67,39,32,66,41,32,
+40,40,66,32,67,39,41,32,67,39,41,41,32,40,40,67,39,32,40,67,
+39,32,95,53,48,51,41,41,32,95,57,55,48,41,41,41,41,41,41,41,
+32,95,53,48,50,41,41,41,41,41,32,85,41,41,32,40,40,65,32,58,
+49,52,51,55,32,40,40,67,32,40,40,40,67,39,32,67,41,32,40,40,
+67,32,40,40,40,67,39,32,67,39,41,32,40,40,66,32,67,39,41,32,
+66,41,41,32,40,40,66,32,40,40,83,39,32,40,67,39,32,83,41,41,
+32,40,40,66,32,40,66,32,40,40,83,39,32,83,39,41,32,40,40,67,
+32,60,41,32,35,50,41,41,41,41,32,40,40,40,67,39,32,40,83,39,
+32,83,41,41,32,40,40,66,32,40,66,32,40,40,83,39,32,83,39,41,
+32,40,40,67,32,60,41,32,35,56,41,41,41,41,32,40,40,66,32,40,
+40,67,39,32,40,67,39,32,66,41,41,32,40,67,32,40,40,67,32,61,
+61,41,32,35,56,41,41,41,41,32,40,40,66,32,85,41,32,40,90,32,
+40,40,66,32,90,41,32,40,40,66,32,40,83,32,66,41,41,32,40,40,
+66,32,40,66,32,40,66,32,90,41,41,41,32,40,40,66,32,40,40,67,
+39,32,66,41,32,40,66,39,32,40,40,66,32,40,95,51,54,32,95,54,
+56,41,41,32,40,40,67,32,95,49,52,51,57,41,32,95,57,55,52,41,
+41,41,41,41,32,40,40,40,67,39,32,66,41,32,67,41,32,40,95,52,
+51,48,32,40,40,67,32,40,40,80,32,40,75,50,32,75,41,41,32,40,
+75,50,32,75,41,41,41,32,40,90,32,40,40,66,32,40,95,52,51,48,
+32,40,40,67,32,79,41,32,75,41,41,41,32,40,40,83,32,79,41,32,
+40,40,40,67,39,32,79,41,32,95,49,52,53,48,41,32,75,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,40,67,39,32,
+40,67,39,32,66,41,41,32,40,67,32,40,40,67,32,61,61,41,32,35,
+50,41,41,41,32,40,85,32,40,40,40,67,39,32,66,41,32,95,49,52,
+51,57,41,32,95,49,52,51,56,41,41,41,41,41,41,41,32,40,40,40,
+83,39,32,40,83,39,32,67,41,41,32,40,40,66,32,40,66,32,40,40,
+67,39,32,83,39,41,32,40,40,67,32,60,41,32,35,49,41,41,41,41,
+32,40,40,66,32,40,66,32,85,41,41,32,40,40,66,32,40,66,32,40,
+83,32,66,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,
+90,41,41,41,41,32,40,40,66,32,40,66,32,40,40,67,39,32,66,41,
+32,40,66,39,32,40,40,66,32,40,95,51,54,32,95,54,56,41,41,32,
+40,40,67,32,95,49,52,51,57,41,32,95,57,55,51,41,41,41,41,41,
+41,32,40,40,67,39,32,66,41,32,67,41,41,41,41,41,41,41,32,40,
+40,66,32,40,66,32,85,41,41,32,40,40,66,32,40,66,32,40,83,32,
+66,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,90,41,
+41,41,41,32,40,40,66,32,40,66,32,40,40,67,39,32,66,41,32,40,
+66,39,32,40,40,66,32,40,95,51,54,32,95,54,56,41,41,32,40,40,
+67,32,95,49,52,51,57,41,32,95,57,55,51,41,41,41,41,41,41,32,
+40,40,66,32,40,40,67,39,32,66,41,32,67,41,41,32,40,40,66,32,
+40,66,32,40,95,50,56,50,32,40,95,52,56,52,32,95,49,48,55,56,
+41,41,41,41,32,95,52,51,48,41,41,41,41,41,41,41,41,41,41,32,
+40,40,95,51,55,32,95,54,56,41,32,95,49,53,54,56,41,41,41,32,
+40,40,66,32,40,66,32,40,40,95,51,53,32,95,54,56,41,32,40,95,
+55,52,32,95,49,51,52,54,41,41,41,41,32,40,40,40,67,39,32,66,
+41,32,40,40,66,32,40,83,39,32,95,49,51,54,56,41,41,32,40,67,
+32,40,95,49,48,57,49,32,95,55,54,48,41,41,41,41,32,40,40,67,
+39,32,95,52,51,49,41,32,40,95,49,48,57,49,32,95,55,54,48,41,
+41,41,41,41,41,32,40,85,32,40,75,50,32,40,40,40,83,39,32,80,
+41,32,40,90,32,40,40,67,32,79,41,32,75,41,41,41,32,40,40,40,
+67,39,32,66,41,32,95,53,48,51,41,32,40,95,52,51,49,32,95,54,
+54,52,41,41,41,41,41,41,41,32,40,40,65,32,58,49,52,51,56,32,
+40,85,32,40,40,40,67,39,32,66,41,32,40,40,67,32,40,40,67,32,
+61,61,41,32,35,49,51,41,41,32,95,57,55,51,41,41,32,40,85,32,
+65,41,41,41,41,32,40,40,65,32,58,49,52,51,57,32,40,40,67,32,
+66,41,32,40,40,66,32,40,40,67,39,32,66,41,32,40,95,49,52,50,
+48,32,95,55,54,48,41,41,41,32,40,67,32,95,49,52,52,48,41,41,
+41,41,32,40,40,65,32,58,49,52,52,48,32,40,67,32,40,95,52,51,
+51,32,40,85,32,40,75,32,95,49,51,57,53,41,41,41,41,41,32,40,
+40,65,32,58,49,52,52,49,32,40,85,32,40,40,40,67,39,32,66,41,
+32,40,40,67,32,40,40,67,32,61,61,41,32,35,50,41,41,32,40,40,
+95,51,55,32,95,54,56,41,32,95,49,53,54,56,41,41,41,32,40,85,
+32,40,40,67,32,66,41,32,40,40,66,32,40,40,67,39,32,66,41,32,
+40,40,40,83,39,32,40,83,39,32,40,95,51,54,32,95,54,56,41,41,
+41,32,95,49,52,50,53,41,32,40,40,66,32,40,66,32,40,40,95,51,
+53,32,95,54,56,41,32,40,95,55,52,32,95,49,51,52,54,41,41,41,
+41,32,40,40,66,32,40,67,39,32,95,49,52,50,53,41,41,32,40,67,
+32,40,95,49,48,57,49,32,95,55,54,48,41,41,41,41,41,41,41,32,
+40,67,32,95,57,51,54,41,41,41,41,41,41,41,32,40,40,65,32,58,
+49,52,52,50,32,40,40,66,32,40,40,95,51,54,32,95,54,56,41,32,
+95,49,52,48,56,41,41,32,40,40,83,32,40,40,67,32,66,41,32,40,
+40,40,83,39,32,83,41,32,40,40,66,32,40,40,83,39,32,83,39,41,
+32,40,40,67,32,60,41,32,35,54,41,41,41,32,40,40,66,32,40,83,
+32,40,40,40,83,39,32,83,39,41,32,40,40,67,32,60,41,32,35,57,
+41,41,32,40,40,67,32,40,40,40,67,39,32,83,39,41,32,40,40,67,
+32,60,41,32,35,49,48,41,41,32,40,85,32,40,40,66,32,40,40,95,
+50,57,56,32,95,54,54,41,32,95,57,49,50,41,41,32,40,40,95,52,
+54,32,95,54,56,41,32,40,95,49,52,54,48,32,95,57,55,51,41,41,
+41,41,41,41,32,40,85,32,40,40,40,67,39,32,66,41,32,40,40,66,
+32,40,95,49,53,32,95,54,55,41,41,32,40,40,66,32,40,40,95,50,
+57,56,32,95,54,54,41,32,95,57,49,49,41,41,32,40,95,49,52,54,
+48,32,95,57,55,52,41,41,41,41,32,40,95,51,55,32,95,54,56,41,
+41,41,41,41,41,41,32,40,40,66,32,40,83,32,40,40,40,67,39,32,
+83,39,41,32,40,40,67,32,60,41,32,35,56,41,41,32,40,85,32,40,
+40,66,32,40,40,83,39,32,66,41,32,66,41,41,32,40,40,66,32,40,
+66,32,40,66,32,90,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
+40,66,32,40,40,67,39,32,95,50,56,50,41,32,95,49,52,52,52,41,
+41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,66,
+41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,95,49,53,32,95,
+54,55,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,
+32,40,40,66,32,40,66,32,40,95,49,53,32,95,54,55,41,41,41,32,
+40,40,40,67,39,32,66,41,32,40,40,66,32,40,95,49,53,32,95,54,
+55,41,41,32,40,40,66,32,40,40,95,50,57,56,32,95,54,54,41,32,
+95,57,49,48,41,41,32,95,49,52,52,51,41,41,41,32,40,95,51,55,
+32,95,54,56,41,41,41,41,32,40,40,95,52,54,32,95,54,56,41,32,
+40,85,32,40,40,67,32,40,40,40,67,39,32,67,39,41,32,40,40,66,
+32,40,83,39,32,40,95,49,53,32,95,54,55,41,41,41,32,40,40,66,
+32,40,66,32,40,40,95,50,57,56,32,95,54,54,41,32,80,41,41,41,
+32,40,67,32,40,95,52,54,32,95,54,56,41,41,41,41,41,32,40,67,
+32,40,95,52,54,32,95,54,56,41,41,41,41,32,40,40,40,83,39,32,
+40,95,51,53,32,95,54,56,41,41,32,40,40,95,49,52,49,51,32,95,
+55,54,48,41,32,34,102,117,110,100,101,112,34,41,41,32,40,90,32,40,
+95,51,55,32,95,54,56,41,41,41,41,41,41,41,41,41,32,40,40,95,
+52,54,32,95,54,56,41,32,40,40,83,32,40,40,40,67,39,32,67,41,
+32,40,40,67,32,40,40,67,32,83,39,41,32,40,90,32,75,41,41,41,
+32,40,90,32,75,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,
+66,32,40,95,50,57,56,32,95,54,54,41,41,32,95,57,54,52,41,41,
+32,40,40,95,49,52,54,50,32,95,55,54,48,41,32,40,95,49,52,54,
+53,32,95,57,55,51,41,41,41,41,41,32,40,95,51,55,32,95,54,56,
+41,41,41,41,41,41,41,41,41,41,41,32,40,40,40,67,39,32,40,67,
+39,32,66,41,41,32,40,67,32,40,40,67,32,61,61,41,32,35,54,41,
+41,41,32,40,85,32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,
+40,40,66,32,40,66,32,40,95,50,57,56,32,95,54,54,41,41,41,32,
+95,57,48,56,41,41,32,40,95,49,52,54,48,32,95,57,55,51,41,41,
+41,41,41,41,41,41,32,40,40,40,67,39,32,83,41,32,40,40,66,32,
+40,40,83,39,32,83,39,41,32,40,40,67,32,60,41,32,35,50,41,41,
+41,32,40,40,40,83,39,32,83,41,32,40,40,66,32,40,40,83,39,32,
+83,39,41,32,40,40,67,32,60,41,32,35,52,41,41,41,32,40,40,40,
+67,39,32,40,67,39,32,66,41,41,32,40,67,32,40,40,67,32,61,61,
+41,32,35,52,41,41,41,32,40,85,32,40,40,40,67,39,32,66,41,32,
+40,40,66,32,40,95,50,57,56,32,95,54,54,41,41,32,95,57,48,54,
+41,41,32,40,95,49,52,54,48,32,95,57,55,51,41,41,41,41,41,41,
+32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,40,67,32,40,40,
+67,32,61,61,41,32,35,50,41,41,41,32,40,85,32,40,40,83,32,66,
+41,32,40,40,66,32,90,41,32,40,40,66,32,40,66,32,40,40,67,39,
+32,95,50,56,50,41,32,95,49,52,52,52,41,41,41,32,40,40,40,67,
+39,32,66,41,32,40,40,66,32,40,95,50,57,56,32,95,54,54,41,41,
+32,95,57,48,52,41,41,32,95,49,52,54,49,41,41,41,41,41,41,41,
+41,41,32,40,40,67,32,40,40,40,67,39,32,83,39,41,32,40,40,67,
+32,60,41,32,35,49,41,41,32,40,85,32,40,40,83,32,66,41,32,40,
+40,66,32,90,41,32,40,40,66,32,40,66,32,40,40,67,39,32,95,50,
+56,50,41,32,95,49,52,52,52,41,41,41,32,40,40,40,67,39,32,66,
+41,32,40,40,66,32,40,95,50,57,56,32,95,54,54,41,41,32,95,57,
+48,51,41,41,32,95,49,52,52,53,41,41,41,41,41,41,41,32,40,85,
+32,40,40,83,32,66,41,32,40,40,66,32,90,41,32,40,40,66,32,40,
+66,32,40,40,67,39,32,95,50,56,50,41,32,95,49,52,52,52,41,41,
+41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,95,50,57,56,
+32,95,54,54,41,41,32,95,57,48,50,41,41,32,40,40,95,52,54,32,
+95,54,56,41,32,95,49,52,52,53,41,41,41,41,41,41,41,41,41,41,
+41,32,40,95,51,55,32,95,54,56,41,41,41,41,32,40,40,65,32,58,
+49,52,52,51,32,40,40,95,52,54,32,95,54,56,41,32,40,95,49,52,
+54,48,32,95,57,55,52,41,41,41,32,40,40,65,32,58,49,52,52,52,
+32,40,40,67,32,83,41,32,40,40,66,32,40,67,32,66,41,41,32,40,
+40,66,32,40,66,32,40,40,67,39,32,40,67,39,32,95,50,56,50,41,
+41,32,40,95,49,52,50,55,32,95,55,54,48,41,41,41,41,32,40,67,
+32,95,49,52,52,52,41,41,41,41,41,32,40,40,65,32,58,49,52,52,
+53,32,40,85,32,40,40,40,83,39,32,66,41,32,40,66,39,32,40,66,
+39,32,40,40,66,32,95,50,56,50,41,32,95,49,52,52,52,41,41,41,
+41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,66,41,41,41,
+32,40,40,66,32,40,66,32,40,66,32,40,95,49,53,32,95,54,55,41,
+41,41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,
+66,32,40,66,32,40,95,49,53,32,95,54,55,41,41,41,32,40,40,40,
+67,39,32,66,41,32,40,40,66,32,40,95,50,57,56,32,95,54,54,41,
+41,32,95,57,54,57,41,41,32,95,49,52,52,51,41,41,41,32,40,95,
+49,52,32,95,54,55,41,41,41,41,32,40,40,95,49,57,53,32,40,40,
+66,32,40,40,95,50,57,56,32,95,54,54,41,32,95,49,57,50,41,41,
+32,40,40,95,52,54,32,95,54,56,41,32,40,85,32,40,40,40,67,39,
+32,66,41,32,40,40,66,32,40,95,50,57,56,32,95,54,54,41,41,32,
+80,41,41,32,40,40,95,49,52,54,50,32,95,55,54,48,41,32,40,95,
+49,52,54,53,32,95,57,55,51,41,41,41,41,41,41,41,32,40,40,66,
+32,40,40,95,50,57,56,32,95,54,54,41,32,95,49,57,51,41,41,32,
+40,40,95,52,54,32,95,54,56,41,32,40,85,32,40,40,66,32,85,41,
+32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,
+66,32,40,95,50,57,56,32,95,54,54,41,41,41,32,40,40,40,67,39,
+32,66,41,32,40,40,66,32,95,50,56,52,41,32,80,41,41,32,80,41,
+41,41,32,40,40,95,49,52,54,50,32,95,55,54,48,41,32,40,95,49,
+52,54,53,32,95,57,55,51,41,41,41,41,41,41,41,41,41,41,41,41,
+32,40,40,65,32,58,49,52,52,54,32,40,40,83,32,73,41,32,40,40,
+40,83,39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,67,32,40,
+40,67,32,61,61,41,32,35,56,41,41,41,32,40,40,66,32,40,95,51,
+55,32,95,54,56,41,41,32,40,40,67,32,79,41,32,75,41,41,41,41,
+32,40,40,66,32,85,41,32,40,40,66,32,40,66,32,40,40,67,39,32,
+66,41,32,66,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,
+32,40,66,32,40,66,32,40,40,95,51,53,32,95,54,56,41,32,40,95,
+55,52,32,95,49,51,52,54,41,41,41,41,41,41,41,41,32,40,40,40,
+67,39,32,40,67,39,32,40,67,39,32,40,83,39,32,40,67,39,32,40,
+67,39,32,67,41,41,41,41,41,41,32,40,40,66,32,40,40,67,39,32,
+40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,40,83,39,32,40,
+83,39,32,40,83,39,32,40,83,39,32,40,95,51,54,32,95,54,56,41,
+41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,40,67,39,32,66,
+41,32,40,40,66,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,
+32,95,49,51,54,57,41,41,32,40,67,32,40,95,49,48,57,49,32,95,
+55,54,48,41,41,41,41,41,41,41,32,40,40,40,67,39,32,66,41,32,
+40,40,66,32,40,83,39,32,40,67,39,32,67,41,41,41,32,40,40,40,
+67,39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,67,41,
+41,32,40,40,40,67,39,32,40,67,39,32,67,41,41,32,40,67,32,80,
+41,41,32,40,95,57,51,52,32,35,48,41,41,41,41,32,40,95,52,51,
+49,32,40,40,67,32,40,40,40,67,39,32,67,41,32,40,40,67,32,40,
+40,67,32,83,39,41,32,40,90,32,75,41,41,41,32,40,90,32,75,41,
+41,41,32,75,41,41,32,40,40,40,110,111,77,97,116,99,104,32,34,115,
+114,99,47,77,105,99,114,111,72,115,47,84,121,112,101,67,104,101,99,107,
+46,104,115,34,41,32,35,49,50,51,51,41,32,35,50,53,41,41,41,41,
+41,41,32,40,40,67,39,32,95,49,52,52,56,41,32,40,95,52,51,49,
+32,95,57,55,50,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,
+40,66,32,40,66,32,40,66,32,40,66,32,40,95,50,56,50,32,40,95,
+51,55,32,95,54,56,41,41,41,41,41,41,41,41,32,40,40,40,67,39,
+32,66,41,32,40,66,39,32,40,66,39,32,40,66,39,32,40,66,39,32,
+95,53,48,51,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
+40,66,32,95,52,51,48,41,41,41,41,32,40,40,40,67,39,32,40,67,
+39,32,40,67,39,32,40,67,39,32,67,41,41,41,41,32,40,40,66,32,
+40,66,32,40,66,32,40,66,32,40,40,67,39,32,67,41,32,40,40,67,
+32,40,40,67,32,83,39,41,32,40,90,32,75,41,41,41,32,40,90,32,
+75,41,41,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,
+67,39,32,40,67,39,32,40,83,39,32,67,41,41,41,41,41,32,40,40,
+66,32,40,40,83,39,32,40,67,39,32,40,67,39,32,66,41,41,41,32,
+40,40,66,32,40,66,32,40,66,32,40,67,39,32,40,83,39,32,79,41,
+41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,40,
+67,39,32,95,50,56,50,41,32,95,57,48,54,41,41,41,41,41,32,40,
+40,66,32,40,40,83,39,32,66,41,32,40,66,39,32,40,40,66,32,95,
+50,56,50,41,32,95,57,51,54,41,41,41,41,32,40,40,66,32,40,66,
+32,40,66,32,95,49,51,57,52,41,41,41,32,40,40,40,67,39,32,66,
+41,32,40,40,66,32,40,67,39,32,95,49,51,57,50,41,41,32,40,67,
+32,40,95,49,48,57,49,32,95,55,54,48,41,41,41,41,32,40,95,52,
+51,49,32,40,40,95,50,56,52,32,95,57,49,55,41,32,95,57,55,50,
+41,41,41,41,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,
+40,67,39,32,40,67,39,32,79,41,41,41,41,32,40,40,66,32,40,40,
+67,39,32,40,83,39,32,40,67,39,32,95,50,56,50,41,41,41,32,40,
+40,40,67,39,32,40,67,39,32,40,83,39,32,80,41,41,41,32,40,40,
+66,32,40,66,32,40,40,67,39,32,95,50,56,50,41,32,95,57,48,53,
+41,41,41,32,40,40,66,32,40,66,32,95,49,52,52,55,41,41,32,40,
+40,66,32,40,66,32,40,95,57,49,56,32,95,49,52,52,57,41,41,41,
+32,40,40,66,32,40,66,32,40,95,57,50,49,32,95,49,48,56,49,41,
+41,41,32,40,40,66,32,40,66,32,95,57,53,53,41,41,32,40,40,40,
+67,39,32,66,41,32,40,40,66,32,95,53,48,52,41,32,95,49,48,56,
+54,41,41,32,40,40,66,32,40,95,53,48,52,32,40,40,79,32,35,52,
+54,41,32,75,41,41,41,32,95,49,48,56,54,41,41,41,41,41,41,41,
+41,32,95,57,48,53,41,41,41,32,40,40,66,32,40,67,32,40,95,52,
+55,54,32,95,49,48,55,56,41,41,41,32,40,95,52,51,48,32,40,40,
+67,32,40,40,80,32,40,40,40,67,39,32,40,67,39,32,79,41,41,32,
+80,41,32,75,41,41,32,40,75,50,32,75,41,41,41,32,40,75,50,32,
+75,41,41,41,41,41,41,32,75,41,41,41,32,95,49,52,53,48,41,41,
+41,32,40,95,49,53,49,51,32,95,55,54,48,41,41,41,41,41,41,41,
+32,40,95,52,51,48,32,40,40,83,32,40,40,80,32,40,75,50,32,75,
+41,41,32,40,75,50,32,75,41,41,41,32,40,90,32,40,90,32,40,40,
+67,32,79,41,32,75,41,41,41,41,41,41,41,41,41,41,41,41,32,40,
+40,65,32,58,49,52,52,55,32,40,40,40,67,39,32,79,41,32,40,40,
+66,32,40,95,50,56,50,32,40,95,57,54,53,32,95,53,48,50,41,41,
+41,32,40,40,40,67,39,32,95,57,54,54,41,32,40,40,40,67,39,32,
+79,41,32,40,80,32,95,53,48,50,41,41,32,75,41,41,32,95,53,48,
+50,41,41,41,32,75,41,41,32,40,40,65,32,58,49,52,52,56,32,40,
+40,66,32,95,52,51,49,41,32,40,40,66,32,85,41,32,40,40,40,83,
+39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,80,41,41,
+32,40,40,67,39,32,95,52,51,49,41,32,40,67,32,40,95,52,55,50,
+32,95,49,48,55,56,41,41,41,41,41,32,40,40,67,39,32,95,52,51,
+49,41,32,40,67,32,40,95,52,55,50,32,95,49,48,55,56,41,41,41,
+41,41,41,41,32,40,40,65,32,58,49,52,52,57,32,40,40,95,50,56,
+50,32,40,95,57,50,49,32,95,49,48,56,49,41,41,32,40,95,57,53,
+54,32,34,110,111,68,101,102,97,117,108,116,34,41,41,41,32,40,40,65,
+32,58,49,52,53,48,32,40,40,67,32,95,49,48,57,50,41,32,34,36,
+100,102,108,116,34,41,41,32,40,40,65,32,58,49,52,53,49,32,40,40,
+83,32,83,41,32,40,40,66,32,90,41,32,40,40,66,32,90,41,32,40,
+40,66,32,95,49,51,57,52,41,32,95,49,52,53,50,41,41,41,41,41,
+32,40,40,65,32,58,49,52,53,50,32,40,40,83,32,40,85,32,40,95,
+50,55,32,34,116,117,112,108,101,67,111,110,115,116,114,97,105,110,116,115,
+34,41,41,41,32,40,40,66,32,40,67,32,80,41,41,32,40,90,32,40,
+90,32,40,40,40,83,39,32,95,49,51,57,50,41,32,40,40,66,32,40,
+95,57,55,53,32,95,49,48,56,49,41,41,32,95,52,52,57,41,41,32,
+73,41,41,41,41,41,41,32,40,40,65,32,58,49,52,53,51,32,40,40,
+83,32,73,41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,40,
+40,66,32,40,67,32,40,40,67,32,61,61,41,32,35,49,57,41,41,41,
+32,40,40,67,32,40,40,83,32,95,49,51,57,55,41,32,40,67,32,40,
+40,80,32,95,53,48,50,41,32,95,53,48,50,41,41,41,41,32,40,85,
+32,40,40,66,32,40,67,32,95,49,52,53,51,41,41,32,40,40,66,32,
+40,66,32,40,66,32,67,41,41,41,32,40,40,66,32,40,40,67,39,32,
+66,41,32,80,41,41,32,95,53,48,51,41,41,41,41,41,41,41,32,40,
+85,32,40,40,66,32,40,67,32,95,49,52,53,51,41,41,32,40,40,66,
+32,40,66,32,40,66,32,67,41,41,41,32,40,40,66,32,40,66,32,80,
+41,41,32,95,53,48,52,41,41,41,41,41,41,41,32,40,40,65,32,58,
+49,52,53,52,32,40,40,83,32,73,41,32,40,40,40,83,39,32,40,67,
+39,32,66,41,41,32,40,40,66,32,40,67,32,40,40,67,32,61,61,41,
+32,35,57,41,41,41,32,40,40,66,32,40,95,51,55,32,95,54,56,41,
+41,32,40,40,67,32,79,41,32,75,41,41,41,41,32,40,40,66,32,85,
+41,32,40,40,66,32,40,40,83,39,32,66,41,32,40,40,66,32,40,95,
+51,53,32,95,54,56,41,41,32,40,40,66,32,40,40,95,50,57,56,32,
+95,54,54,41,32,95,49,52,53,51,41,41,32,40,95,49,52,48,49,32,
+95,55,54,48,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
+85,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,
+67,39,32,40,67,39,32,83,41,41,41,41,41,32,40,40,40,67,39,32,
+40,83,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,
+40,67,39,32,40,40,83,39,32,40,95,51,53,32,95,54,56,41,41,32,
+40,40,67,32,95,49,52,49,50,41,32,34,105,110,115,116,34,41,41,41,
+41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,
+40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,40,95,51,53,
+32,95,54,56,41,32,40,95,55,52,32,95,49,51,52,55,41,41,41,41,
+41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,
+32,40,66,32,40,66,32,40,40,83,39,32,40,83,39,32,66,41,41,32,
+40,40,66,32,40,66,32,40,67,39,32,40,95,51,53,32,95,54,56,41,
+41,41,41,32,40,40,40,67,39,32,40,67,39,32,67,41,41,32,40,40,
+40,83,39,32,66,41,32,40,40,66,32,67,41,32,95,49,49,49,52,41,
+41,32,40,40,66,32,40,40,67,39,32,95,50,56,50,41,32,40,95,49,
+50,57,49,32,95,55,54,48,41,41,41,32,40,40,66,32,40,95,53,48,
+52,32,34,110,111,116,32,97,32,99,108,97,115,115,32,34,41,41,32,95,
+49,48,56,56,41,41,41,41,32,40,95,51,55,32,95,54,56,41,41,41,
+41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,
+32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,85,41,41,41,
+41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,
+40,66,32,40,66,32,40,66,32,40,66,32,90,41,41,41,41,41,41,41,
+41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
+32,40,66,32,40,66,32,40,66,32,90,41,41,41,41,41,41,41,41,41,
+32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
+40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,40,
+95,51,53,32,95,54,56,41,32,40,95,55,52,32,95,49,51,52,54,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,
+32,40,66,32,40,40,67,39,32,40,67,39,32,40,67,39,32,66,41,41,
+41,32,40,40,66,32,40,66,32,66,39,41,41,32,40,40,66,32,40,66,
+32,40,66,32,40,83,39,32,66,41,41,41,41,32,40,40,66,32,40,66,
+32,40,66,32,66,39,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
+40,66,32,40,67,39,32,40,67,39,32,40,95,51,54,32,95,54,56,41,
+41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,
+40,66,32,40,66,32,95,49,51,55,48,41,41,41,41,41,41,32,40,40,
+40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,
+40,67,39,32,79,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,
+66,32,40,66,32,40,67,39,32,67,41,41,41,41,41,32,40,40,66,32,
+40,66,32,40,67,39,32,40,67,39,32,67,41,41,41,41,32,40,40,66,
+32,40,67,39,32,40,67,39,32,67,41,41,41,32,40,40,67,39,32,40,
+67,39,32,80,41,41,32,40,40,66,32,40,66,32,40,95,50,56,50,32,
+95,57,49,55,41,41,41,32,40,67,32,40,95,49,48,57,49,32,95,55,
+54,48,41,41,41,41,41,41,41,41,32,75,41,41,41,41,41,41,41,41,
+41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
+66,32,40,66,32,40,66,32,40,95,51,55,32,95,54,56,41,41,41,41,
+41,41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,66,39,32,40,
+66,39,32,40,66,39,32,40,66,39,32,40,66,39,32,40,66,39,32,79,
+41,41,41,41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,66,39,
+32,40,66,39,32,40,40,66,32,40,83,39,32,66,41,41,32,40,40,66,
+32,66,39,41,32,40,40,66,32,40,66,32,79,41,41,32,40,67,32,95,
+57,48,54,41,41,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,
+32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,79,41,41,
+41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,40,67,39,32,
+66,41,32,40,66,39,32,40,40,66,32,95,50,56,50,41,32,95,57,48,
+53,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,
+32,40,66,32,40,95,50,56,50,32,40,95,57,51,56,32,95,53,48,50,
+41,41,41,41,41,41,41,32,40,40,66,32,40,40,67,39,32,66,41,32,
+40,66,39,32,40,66,39,32,40,40,66,32,40,95,52,51,54,32,95,57,
+49,56,41,41,32,40,40,66,32,40,95,50,56,50,32,95,57,49,55,41,
+41,32,95,49,52,53,56,41,41,41,41,41,41,32,40,40,66,32,40,40,
+83,39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,95,53,
+48,52,41,41,32,40,40,66,32,95,52,51,49,41,32,40,40,66,32,95,
+50,56,54,41,32,40,40,66,32,40,95,50,56,50,32,95,57,49,55,41,
+41,32,40,40,67,32,95,49,48,56,52,41,32,95,49,52,56,52,41,41,
+41,41,41,41,41,32,40,40,66,32,40,66,32,95,52,51,49,41,41,32,
+40,40,66,32,40,40,67,39,32,40,83,39,32,95,50,56,50,41,41,32,
+40,40,66,32,40,66,32,95,53,49,54,41,41,32,40,40,66,32,40,66,
+32,40,95,50,56,50,32,95,57,50,48,41,41,41,32,40,40,66,32,40,
+66,32,40,95,50,56,50,32,95,49,52,52,55,41,41,41,32,40,40,66,
+32,40,66,32,40,95,50,56,50,32,95,57,49,55,41,41,41,32,40,40,
+40,67,39,32,66,41,32,40,40,66,32,95,50,56,50,41,32,95,49,48,
+56,55,41,41,32,95,49,52,53,48,41,41,41,41,41,41,41,32,40,40,
+66,32,40,67,32,40,95,52,55,54,32,95,49,48,55,56,41,41,41,32,
+40,95,52,51,48,32,40,40,67,32,40,40,80,32,40,40,40,67,39,32,
+40,67,39,32,79,41,41,32,40,40,40,67,39,32,66,41,32,80,41,32,
+95,57,50,48,41,41,32,75,41,41,32,40,75,50,32,75,41,41,41,32,
+40,75,50,32,75,41,41,41,41,41,41,41,41,41,41,41,32,75,41,41,
+41,41,41,41,41,41,41,41,41,41,32,40,95,57,55,57,32,95,57,56,
+50,41,41,41,32,95,49,51,50,57,41,41,41,41,41,41,41,32,40,40,
+65,32,58,49,52,53,53,32,40,40,40,83,39,32,40,95,51,54,32,95,
+54,56,41,41,32,40,40,95,52,55,32,95,54,56,41,32,95,49,52,53,
+54,41,41,32,40,40,95,52,54,32,95,54,56,41,32,40,40,66,32,40,
+40,95,51,54,32,95,54,56,41,32,95,49,52,48,56,41,41,32,40,95,
+49,52,53,57,32,95,55,54,48,41,41,41,41,41,32,40,40,65,32,58,
+49,52,53,54,32,40,40,66,32,40,40,95,51,53,32,95,54,56,41,32,
+40,95,55,52,32,95,49,51,52,54,41,41,41,32,40,40,67,32,40,40,
+40,67,39,32,67,39,41,32,66,41,32,40,40,66,32,40,40,83,39,32,
+83,41,32,40,40,66,32,40,40,83,39,32,83,39,41,32,40,40,67,32,
+60,41,32,35,52,41,41,41,32,40,40,40,83,39,32,83,41,32,40,40,
+66,32,40,40,83,39,32,83,39,41,32,40,40,67,32,60,41,32,35,54,
+41,41,41,32,40,40,40,83,39,32,83,41,32,40,40,66,32,40,40,83,
+39,32,83,39,41,32,40,40,67,32,60,41,32,35,56,41,41,41,32,40,
+40,40,67,39,32,40,67,39,32,66,41,41,32,40,67,32,40,40,67,32,
+61,61,41,32,35,56,41,41,41,32,40,85,32,40,40,66,32,40,40,67,
+39,32,66,41,32,66,41,41,32,40,40,66,32,40,66,32,40,67,39,32,
+67,41,41,41,32,40,40,66,32,40,67,39,32,67,41,41,32,95,49,52,
+53,55,41,41,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,
+66,41,41,32,40,67,32,40,40,67,32,61,61,41,32,35,54,41,41,41,
+32,40,85,32,40,75,32,40,95,49,52,50,48,32,95,55,54,48,41,41,
+41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,
+40,67,32,40,40,67,32,61,61,41,32,35,52,41,41,41,32,40,85,32,
+40,95,49,52,50,48,32,95,55,54,48,41,41,41,41,41,41,41,32,40,
+40,40,83,39,32,40,67,39,32,67,41,41,32,40,40,66,32,40,66,32,
+40,40,83,39,32,83,39,41,32,40,40,67,32,60,41,32,35,49,41,41,
+41,41,32,40,40,66,32,40,40,67,39,32,40,67,39,32,66,41,41,32,
+40,67,32,40,40,67,32,61,61,41,32,35,49,41,41,41,41,32,40,40,
+66,32,85,41,32,40,40,66,32,40,67,32,66,41,41,32,40,40,66,32,
+40,40,67,39,32,66,41,32,66,41,41,32,40,40,66,32,40,66,32,90,
+41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,40,83,39,32,
+40,67,39,32,40,67,39,32,83,41,41,41,32,40,40,66,32,40,66,32,
+40,66,32,40,40,67,39,32,67,39,41,32,40,95,49,52,49,57,32,95,
+55,54,48,41,41,41,41,41,32,40,40,66,32,40,66,32,40,40,83,39,
+32,66,41,32,40,40,66,32,95,50,56,50,41,32,95,57,51,54,41,41,
+41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,95,50,56,
+50,32,40,95,57,51,54,32,95,53,48,50,41,41,41,41,41,41,32,40,
+40,66,32,40,66,32,40,66,32,40,40,67,39,32,95,49,51,57,51,41,
+32,40,40,66,32,40,95,50,56,50,32,95,54,54,53,41,41,32,40,40,
+66,32,40,95,50,56,50,32,95,52,54,56,41,41,32,40,40,95,49,57,
+53,32,95,50,56,53,41,32,40,95,52,51,49,32,95,54,54,53,41,41,
+41,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,
+32,40,40,66,32,40,66,32,40,95,52,51,54,32,95,49,51,57,49,41,
+41,41,32,40,40,66,32,40,66,32,95,49,51,56,57,41,41,32,40,95,
+49,48,57,49,32,95,55,54,48,41,41,41,41,32,40,95,52,51,49,32,
+95,49,51,57,48,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,
+40,95,50,56,50,32,95,57,51,53,41,41,41,32,40,40,66,32,40,66,
+32,95,57,52,48,41,41,32,40,95,49,48,57,49,32,95,55,54,48,41,
+41,41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,85,41,32,40,
+40,66,32,40,67,32,66,41,41,32,40,40,40,67,39,32,40,83,39,32,
+40,67,39,32,40,67,39,32,40,95,52,55,32,95,54,56,41,41,41,41,
+41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,85,41,41,41,41,
+32,40,40,40,83,39,32,66,41,32,40,40,66,32,40,67,39,32,40,67,
+39,32,40,67,39,32,40,67,39,32,83,41,41,41,41,41,32,40,40,66,
+32,40,66,32,40,66,32,40,66,32,40,66,32,40,40,67,39,32,67,39,
+41,32,40,95,49,52,49,57,32,95,55,54,48,41,41,41,41,41,41,41,
+32,40,40,66,32,40,66,32,40,40,83,39,32,66,41,32,40,66,39,32,
+40,66,39,32,40,40,66,32,95,50,56,50,41,32,95,57,51,54,41,41,
+41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,40,67,39,32,
+66,41,32,40,66,39,32,40,40,66,32,95,50,56,50,41,32,95,57,51,
+54,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,40,
+67,39,32,66,41,32,40,40,66,32,95,50,56,50,41,32,95,49,52,53,
+49,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,
+32,66,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,95,52,51,
+51,32,40,40,95,50,56,52,32,95,49,51,57,51,41,32,95,54,54,53,
+41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,
+40,40,66,32,40,66,32,40,95,52,51,54,32,95,49,51,57,49,41,41,
+41,32,40,40,66,32,40,66,32,95,49,51,56,57,41,41,32,40,95,49,
+48,57,49,32,95,55,54,48,41,41,41,41,32,40,95,52,51,49,32,95,
+49,51,57,48,41,41,41,41,32,40,40,95,49,57,53,32,95,50,56,53,
+41,32,40,95,52,51,49,32,95,54,54,53,41,41,41,41,41,41,41,41,
+41,32,40,40,66,32,40,66,32,40,66,32,40,95,50,56,50,32,95,57,
+51,53,41,41,41,41,32,40,40,40,83,39,32,40,67,39,32,66,41,41,
+32,40,40,66,32,40,66,32,95,57,51,57,41,41,32,40,40,66,32,95,
+52,51,48,41,32,40,40,66,32,85,41,32,40,90,32,40,40,40,67,39,
+32,40,67,39,32,40,67,39,32,40,67,39,32,79,41,41,41,41,32,40,
+40,40,67,39,32,66,41,32,40,40,66,32,40,67,39,32,66,41,41,32,
+40,40,66,32,40,66,32,80,41,41,32,40,95,49,48,57,49,32,95,55,
+54,48,41,41,41,41,32,40,40,66,32,40,40,67,39,32,40,95,53,55,
+53,32,95,51,49,48,41,41,32,40,40,95,49,57,53,32,95,52,52,57,
+41,32,95,52,52,57,41,41,41,32,40,40,67,32,40,40,67,32,95,52,
+50,56,41,32,35,49,41,41,32,35,48,41,41,41,41,32,75,41,41,41,
+41,41,41,32,40,95,49,48,57,49,32,95,55,54,48,41,41,41,41,41,
+41,32,73,41,41,41,41,41,41,41,32,40,40,95,51,55,32,95,54,56,
+41,32,95,49,53,54,56,41,41,41,41,32,40,40,65,32,58,49,52,53,
+55,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,40,
+95,51,53,32,95,54,56,41,32,40,95,55,52,32,95,49,51,52,54,41,
+41,41,41,41,41,41,32,40,40,40,67,39,32,40,83,39,32,40,67,39,
+32,40,67,39,32,40,67,39,32,83,41,41,41,41,41,32,40,40,40,67,
+39,32,40,67,39,32,40,67,39,32,40,67,39,32,66,41,41,41,41,32,
+40,40,66,32,40,66,32,40,66,32,40,66,32,40,67,39,32,67,41,41,
+41,41,41,32,40,40,40,83,39,32,40,67,39,32,40,67,39,32,40,67,
+39,32,40,67,39,32,40,67,39,32,83,41,41,41,41,41,41,32,40,40,
+40,67,39,32,40,67,39,32,40,83,39,32,40,67,39,32,40,67,39,32,
+40,83,39,32,40,67,39,32,83,41,41,41,41,41,41,41,32,40,40,40,
+67,39,32,66,41,32,40,40,66,32,40,67,39,32,40,67,39,32,40,67,
+39,32,40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,41,41,41,
+41,41,32,40,40,66,32,40,66,32,40,66,32,40,40,83,39,32,66,41,
+32,40,66,39,32,40,40,66,32,40,67,39,32,40,83,39,32,40,67,39,
+32,40,95,51,54,32,95,54,56,41,41,41,41,41,32,40,40,66,32,40,
+66,32,40,40,67,39,32,83,41,32,40,67,32,40,95,49,52,49,57,32,
+95,55,54,48,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
+40,95,50,56,50,32,95,57,51,53,41,41,41,41,32,40,40,40,83,39,
+32,40,67,39,32,40,83,39,32,95,57,51,57,41,41,41,32,40,40,40,
+67,39,32,40,67,39,32,40,67,39,32,79,41,41,41,32,40,40,40,67,
+39,32,66,41,32,40,40,66,32,40,67,39,32,80,41,41,32,40,95,49,
+48,57,49,32,95,55,54,48,41,41,41,32,95,52,52,57,41,41,32,75,
+41,41,32,40,95,49,48,57,49,32,95,55,54,48,41,41,41,41,41,41,
+41,41,41,41,32,40,40,66,32,40,40,83,39,32,66,41,32,40,40,66,
+32,40,67,39,32,40,83,39,32,40,83,39,32,66,41,41,41,41,32,40,
+40,66,32,40,66,32,40,66,32,40,66,32,40,95,51,54,32,95,54,56,
+41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,95,52,55,
+32,95,54,56,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,
+67,39,32,67,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,40,
+67,39,32,67,41,32,40,40,67,32,40,40,67,32,83,39,41,32,40,90,
+32,75,41,41,41,32,40,90,32,75,41,41,41,41,41,41,32,40,40,40,
+67,39,32,66,41,32,40,40,66,32,40,67,39,32,83,41,41,32,40,40,
+66,32,40,66,32,40,40,67,39,32,67,39,41,32,40,95,49,52,49,57,
+32,95,55,54,48,41,41,41,41,32,40,40,40,83,39,32,66,41,32,40,
+66,39,32,40,40,66,32,95,50,56,50,41,32,95,57,51,54,41,41,41,
+32,40,40,66,32,40,66,32,95,49,51,57,52,41,41,32,40,40,66,32,
+40,67,32,95,49,51,57,50,41,41,32,40,95,52,51,49,32,40,40,95,
+50,56,52,32,95,57,49,55,41,32,95,57,55,50,41,41,41,41,41,41,
+41,41,32,40,40,66,32,40,66,32,40,95,50,56,50,32,95,57,49,55,
+41,41,41,32,40,95,49,48,57,49,32,95,55,54,48,41,41,41,41,41,
+32,40,95,49,53,49,51,32,95,55,54,48,41,41,41,41,41,41,41,32,
+40,40,66,32,40,66,32,40,66,32,40,40,67,39,32,66,41,32,40,66,
+39,32,95,49,51,54,57,41,41,41,41,41,32,40,40,40,67,39,32,40,
+83,39,32,66,41,41,32,40,40,66,32,40,66,32,40,67,39,32,40,67,
+39,32,67,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,
+41,32,40,40,66,32,40,66,32,40,67,39,32,67,41,41,41,32,40,40,
+66,32,40,66,32,67,41,41,32,40,67,32,80,41,41,41,41,32,40,95,
+52,51,49,32,40,40,67,32,40,40,40,67,39,32,67,41,32,40,40,67,
+32,40,40,67,32,83,39,41,32,40,90,32,75,41,41,41,32,40,90,32,
+75,41,41,41,32,75,41,41,32,40,40,40,110,111,77,97,116,99,104,32,
+34,115,114,99,47,77,105,99,114,111,72,115,47,84,121,112,101,67,104,101,
+99,107,46,104,115,34,41,32,35,49,51,54,49,41,32,35,50,53,41,41,
+41,41,41,41,32,40,40,66,32,95,49,52,52,56,41,32,40,95,52,51,
+49,32,95,57,55,50,41,41,41,41,41,41,41,41,32,95,49,52,53,56,
+41,41,32,40,40,40,83,39,32,66,41,32,40,66,39,32,40,40,66,32,
+95,50,56,50,41,32,95,57,51,54,41,41,41,32,40,40,66,32,40,66,
+32,40,95,52,51,51,32,95,49,51,57,51,41,41,41,32,40,40,66,32,
+40,67,32,95,49,51,57,50,41,41,32,40,95,52,51,49,32,95,49,51,
+57,48,41,41,41,41,41,41,32,40,40,40,67,39,32,66,41,32,95,53,
+48,52,41,32,40,95,52,51,49,32,40,40,67,32,40,40,40,67,39,32,
+67,41,32,40,40,67,32,40,40,67,32,83,39,41,32,40,90,32,75,41,
+41,41,32,40,90,32,75,41,41,41,32,65,41,41,32,40,40,40,110,111,
+77,97,116,99,104,32,34,115,114,99,47,77,105,99,114,111,72,115,47,84,
+121,112,101,67,104,101,99,107,46,104,115,34,41,32,35,49,51,54,48,41,
+32,35,50,53,41,41,41,41,41,41,41,32,40,95,52,51,48,32,40,40,
+83,32,40,40,80,32,40,75,50,32,75,41,41,32,40,75,50,32,75,41,
+41,41,32,40,90,32,40,90,32,40,40,67,32,79,41,32,75,41,41,41,
+41,41,41,41,32,40,67,32,40,95,49,48,57,49,32,95,55,54,48,41,
+41,41,41,41,32,40,40,65,32,58,49,52,53,56,32,40,40,67,32,95,
+49,48,57,50,41,32,34,36,67,34,41,41,32,40,40,65,32,58,49,52,
+53,57,32,40,40,40,67,39,32,83,41,32,40,40,66,32,40,67,32,66,
+41,41,32,40,40,40,83,39,32,40,83,39,32,83,41,41,32,40,40,66,
+32,40,66,32,40,40,83,39,32,83,39,41,32,40,40,67,32,60,41,32,
+35,54,41,41,41,41,32,40,40,66,32,40,40,67,39,32,40,67,39,32,
+66,41,41,32,40,67,32,40,40,67,32,61,61,41,32,35,54,41,41,41,
+41,32,40,40,66,32,85,41,32,40,40,66,32,40,66,32,40,66,32,40,
+66,32,40,40,95,51,53,32,95,54,56,41,32,40,95,55,52,32,95,49,
+51,52,54,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
+40,66,32,40,66,32,40,95,51,55,32,95,54,56,41,41,41,41,41,41,
+32,40,40,66,32,40,40,67,39,32,66,41,32,40,40,66,32,67,39,41,
+32,95,57,48,56,41,41,41,32,40,40,66,32,67,41,32,95,49,48,57,
+49,41,41,41,41,41,41,41,41,32,40,40,66,32,40,40,67,39,32,40,
+67,39,32,66,41,41,32,40,67,32,40,40,67,32,61,61,41,32,35,51,
+41,41,41,41,32,40,40,66,32,85,41,32,40,40,40,83,39,32,40,83,
+39,32,66,41,41,32,40,40,66,32,40,66,32,40,95,51,53,32,95,54,
+56,41,41,41,32,40,40,67,32,95,49,52,49,51,41,32,34,116,121,112,
+101,32,115,105,103,110,97,116,117,114,101,34,41,41,41,32,40,40,66,32,
+40,66,32,40,66,32,85,41,41,41,32,40,40,66,32,40,66,32,90,41,
+41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,40,95,51,53,
+32,95,54,56,41,32,40,95,55,52,32,95,49,51,52,54,41,41,41,41,
+41,41,32,40,40,66,32,40,66,32,40,40,67,39,32,40,67,39,32,66,
+41,41,32,40,40,66,32,40,66,32,40,95,51,53,32,95,54,56,41,41,
+41,32,40,67,32,40,95,49,52,56,55,32,95,49,51,53,41,41,41,41,
+41,41,32,40,40,40,83,39,32,66,41,32,40,66,39,32,40,66,39,32,
+40,40,66,32,40,95,51,54,32,95,54,56,41,41,32,95,49,53,53,50,
+41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,95,
+50,56,50,32,40,95,51,55,32,95,54,56,41,41,41,41,41,41,32,40,
+40,66,32,40,66,32,40,66,32,95,57,48,53,41,41,41,32,40,40,66,
+32,67,41,32,95,49,48,57,49,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,32,40,95,51,55,32,95,54,56,41,41,41,32,40,40,65,32,
+58,49,52,54,48,32,40,95,49,52,54,55,32,40,95,49,52,54,50,32,
+95,55,54,48,41,41,41,32,40,40,65,32,58,49,52,54,49,32,40,40,
+66,32,40,40,95,50,57,56,32,95,54,54,41,32,95,54,54,52,41,41,
+32,40,40,95,49,52,54,54,32,95,55,54,48,41,32,40,95,49,52,54,
+50,32,95,55,54,48,41,41,41,41,32,40,40,65,32,58,49,52,54,50,
+32,40,40,66,32,40,66,32,40,66,32,40,95,49,51,54,54,32,95,49,
+51,51,57,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,
+41,32,95,49,52,55,51,41,32,95,49,53,48,56,41,41,41,32,40,40,
+65,32,58,49,52,54,51,32,40,40,66,32,40,66,32,40,95,50,56,52,
+32,95,49,51,54,55,41,41,41,32,95,49,52,54,50,41,41,32,40,40,
+65,32,58,49,52,54,52,32,40,40,66,32,90,41,32,85,41,41,32,40,
+40,65,32,58,49,52,54,53,32,40,90,32,85,41,41,32,40,40,65,32,
+58,49,52,54,54,32,40,40,66,32,40,66,32,40,66,32,40,40,95,51,
+53,32,95,54,56,41,32,95,49,52,49,48,41,41,41,41,32,40,40,66,
+32,40,40,67,39,32,40,67,39,32,40,83,39,32,40,95,51,53,32,95,
+54,56,41,41,41,41,32,40,40,67,32,67,39,41,32,95,49,52,54,52,
+41,41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,
+66,32,40,66,32,40,95,51,53,32,95,54,56,41,41,41,32,95,49,52,
+55,48,41,41,32,40,40,66,32,40,66,32,40,95,51,55,32,95,54,56,
+41,41,41,32,80,41,41,41,41,41,32,40,40,65,32,58,49,52,54,55,
+32,40,40,67,32,66,41,32,95,49,52,54,53,41,41,32,40,40,65,32,
+58,49,52,54,56,32,40,40,83,32,95,49,52,54,54,41,32,95,49,52,
+55,51,41,41,32,40,40,65,32,58,49,52,54,57,32,40,40,66,32,89,
+41,32,40,40,40,83,39,32,66,41,32,40,40,66,32,67,41,32,40,40,
+66,32,40,40,83,39,32,83,39,41,32,95,49,51,57,55,41,41,32,40,
+40,66,32,95,49,52,54,55,41,32,95,49,52,55,51,41,41,41,41,32,
+40,40,66,32,40,66,32,40,66,32,85,41,41,41,32,40,40,66,32,40,
+66,32,40,40,83,39,32,66,41,32,40,66,39,32,40,40,66,32,40,95,
+51,53,32,95,54,56,41,41,32,40,40,66,32,95,49,52,56,50,41,32,
+40,95,57,55,57,32,95,57,56,50,41,41,41,41,41,41,41,32,40,40,
+40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,
+40,83,39,32,40,95,51,53,32,95,54,56,41,41,41,41,41,41,41,32,
+40,40,40,67,39,32,66,41,32,40,66,39,32,40,40,66,32,40,67,39,
+32,66,41,41,32,40,40,66,32,40,66,32,40,67,39,32,95,50,56,50,
+41,41,41,32,40,40,66,32,67,41,32,95,49,51,55,51,41,41,41,41,
+41,32,67,41,41,32,40,40,66,32,40,66,32,40,95,50,56,50,32,40,
+95,51,55,32,95,54,56,41,41,41,41,32,40,40,66,32,95,57,51,55,
+41,32,40,40,40,67,39,32,79,41,32,95,57,49,55,41,32,75,41,41,
+41,41,41,41,41,41,41,32,40,40,65,32,58,49,52,55,48,32,40,75,
+32,40,40,66,32,40,40,95,51,53,32,95,54,56,41,32,40,95,55,52,
+32,95,49,51,52,53,41,41,41,32,40,40,40,67,39,32,67,41,32,40,
+40,40,83,39,32,67,41,32,95,51,50,52,41,32,40,40,66,32,40,95,
+51,55,32,95,54,56,41,41,32,95,57,51,52,41,41,41,32,40,95,51,
+55,32,95,54,56,41,41,41,41,41,32,40,40,65,32,58,49,52,55,49,
+32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,40,95,51,53,32,
+95,54,56,41,32,40,95,55,52,32,95,49,51,52,53,41,41,41,41,41,
+41,32,40,40,66,32,40,66,32,40,40,67,39,32,40,83,39,32,67,41,
+41,32,40,40,40,83,39,32,66,41,32,40,40,66,32,83,41,32,95,51,
+50,52,41,41,32,40,40,66,32,40,66,32,40,66,32,95,49,51,53,56,
+41,41,41,32,95,51,50,53,41,41,41,41,41,32,40,40,66,32,40,66,
+32,67,41,41,32,95,49,52,48,52,41,41,41,41,32,40,40,65,32,58,
+49,52,55,50,32,40,40,80,32,40,95,49,52,55,48,32,95,55,54,48,
+41,41,32,40,95,51,55,32,95,54,56,41,41,41,32,40,40,65,32,58,
+49,52,55,51,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,
+95,51,53,32,95,54,56,41,41,41,41,32,95,49,52,55,52,41,32,40,
+95,51,55,32,95,54,56,41,41,41,32,40,40,65,32,58,49,52,55,52,
+32,40,40,40,67,39,32,40,67,39,32,83,41,41,32,40,40,66,32,40,
+66,32,40,83,32,66,41,41,41,32,40,40,40,83,39,32,40,83,39,32,
+40,83,39,32,40,83,39,32,83,41,41,41,41,32,40,40,66,32,40,66,
+32,40,66,32,40,66,32,40,40,83,39,32,83,39,41,32,40,40,67,32,
+60,41,32,35,55,41,41,41,41,41,41,32,40,40,40,83,39,32,40,83,
+39,32,40,67,39,32,40,83,39,32,83,41,41,41,41,32,40,40,66,32,
+40,66,32,40,66,32,40,66,32,40,40,83,39,32,83,39,41,32,40,40,
+67,32,60,41,32,35,49,49,41,41,41,41,41,41,32,40,40,40,83,39,
+32,40,83,39,32,40,67,39,32,40,83,39,32,83,41,41,41,41,32,40,
+40,66,32,40,66,32,40,66,32,40,66,32,40,40,83,39,32,83,39,41,
+32,40,40,67,32,60,41,32,35,49,51,41,41,41,41,41,41,32,40,40,
+40,83,39,32,40,83,39,32,66,41,41,32,40,40,66,32,66,39,41,32,
+40,40,66,32,40,66,32,83,41,41,32,40,40,66,32,40,66,32,40,40,
+67,39,32,83,39,41,32,40,40,67,32,60,41,32,35,49,57,41,41,41,
+41,32,40,40,66,32,40,66,32,85,41,41,32,40,40,66,32,40,66,32,
+40,40,67,39,32,66,41,32,40,40,66,32,95,50,56,50,41,32,40,40,
+67,32,95,49,52,51,54,41,32,95,57,55,51,41,41,41,41,41,32,40,
+40,66,32,40,66,32,40,66,32,90,41,41,41,32,40,40,40,67,39,32,
+40,67,39,32,40,67,39,32,40,83,39,32,40,95,51,53,32,95,54,56,
+41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,67,32,95,
+49,52,52,52,41,41,41,41,32,95,49,52,55,51,41,41,32,40,40,66,
+32,40,66,32,40,95,51,55,32,95,54,56,41,41,41,32,95,57,51,54,
+41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,40,67,
+39,32,66,41,32,40,40,66,32,40,67,39,32,66,41,41,32,40,40,66,
+32,40,67,32,40,40,67,32,61,61,41,32,35,49,51,41,41,41,32,40,
+40,66,32,40,95,50,56,50,32,95,50,55,41,41,32,40,40,66,32,40,
+95,53,48,52,32,34,116,99,69,120,112,114,58,32,34,41,41,32,40,40,
+40,83,39,32,95,53,48,52,41,32,40,40,66,32,40,95,49,56,52,50,
+32,95,49,48,55,54,41,41,32,40,95,57,55,57,32,95,57,56,50,41,
+41,41,32,40,40,66,32,40,95,53,48,52,32,40,40,79,32,35,51,50,
+41,32,75,41,41,41,32,40,95,49,56,52,50,32,95,49,48,49,53,41,
+41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
+85,41,41,41,32,40,40,40,83,39,32,66,41,32,40,66,39,32,40,66,
+39,32,40,40,66,32,40,67,39,32,40,95,51,53,32,95,54,56,41,41,
+41,32,40,40,67,32,95,49,52,54,51,41,32,40,95,49,52,54,53,32,
+95,57,55,51,41,41,41,41,41,41,32,40,40,40,83,39,32,40,67,39,
+32,40,67,39,32,40,67,39,32,40,83,39,32,40,95,51,53,32,95,54,
+56,41,41,41,41,41,41,32,40,40,66,32,40,67,39,32,40,67,39,32,
+67,41,41,41,32,95,49,53,50,55,41,41,32,40,40,66,32,67,41,32,
+95,49,53,50,52,41,41,41,41,41,41,41,41,32,40,40,40,83,39,32,
+40,83,39,32,40,83,39,32,67,41,41,41,32,40,40,66,32,40,66,32,
+40,66,32,40,40,67,39,32,83,39,41,32,40,40,67,32,60,41,32,35,
+49,50,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,85,41,
+41,41,32,40,40,40,83,39,32,66,41,32,40,66,39,32,40,40,66,32,
+40,67,39,32,66,41,41,32,40,40,66,32,66,39,41,32,40,40,66,32,
+40,66,32,40,95,51,53,32,95,54,56,41,41,41,32,40,40,67,32,40,
+40,40,67,39,32,83,39,41,32,95,49,52,54,57,41,32,40,40,66,32,
+95,49,53,49,50,41,32,40,95,57,55,57,32,95,57,56,50,41,41,41,
+41,32,73,41,41,41,41,41,41,32,40,40,40,83,39,32,67,41,32,40,
+40,66,32,40,40,67,39,32,67,39,41,32,40,40,66,32,83,39,41,32,
+40,40,66,32,83,39,41,32,83,39,41,41,41,41,32,40,40,40,83,39,
+32,66,41,32,40,40,66,32,40,67,39,32,66,41,41,32,40,40,66,32,
+66,39,41,32,40,40,66,32,66,39,41,32,40,40,66,32,40,66,32,40,
+95,51,53,32,95,54,56,41,41,41,32,95,49,52,54,56,41,41,41,41,
+41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,85,41,
+41,41,41,41,32,40,40,40,83,39,32,66,41,32,40,40,66,32,40,67,
+39,32,66,41,41,32,40,40,66,32,66,39,41,32,40,40,66,32,66,39,
+41,32,40,40,66,32,66,39,41,32,40,40,66,32,40,66,32,40,95,51,
+53,32,95,54,56,41,41,41,32,95,49,52,54,56,41,41,41,41,41,41,
+32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
+85,41,41,41,41,41,41,32,40,40,40,83,39,32,40,83,39,32,66,41,
+41,32,40,40,66,32,66,39,41,32,40,40,66,32,40,66,32,40,67,39,
+32,40,83,39,32,66,41,41,41,41,32,40,40,66,32,40,66,32,40,66,
+32,40,66,32,40,83,39,32,40,95,51,53,32,95,54,56,41,41,41,41,
+41,41,32,95,49,52,57,56,41,41,41,41,32,40,40,40,83,39,32,40,
+83,39,32,66,41,41,32,40,40,66,32,66,39,41,32,40,40,66,32,40,
+66,32,40,83,39,32,40,67,39,32,40,67,39,32,66,41,41,41,41,41,
+32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,95,51,
+53,32,95,54,56,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,
+67,39,32,67,41,41,41,32,95,49,52,57,56,41,41,41,41,41,32,40,
+40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,
+40,67,39,32,40,67,39,32,66,41,41,41,41,32,40,40,66,32,40,66,
+32,40,66,32,66,39,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
+40,66,32,40,95,51,54,32,95,54,56,41,41,41,41,41,32,95,49,52,
+55,49,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,95,51,
+55,32,95,54,56,41,41,41,41,32,95,57,50,57,41,41,41,41,41,41,
+41,41,41,41,32,40,40,40,83,39,32,40,67,39,32,66,41,41,32,40,
+40,66,32,66,39,41,32,40,40,66,32,40,66,32,40,83,39,32,40,95,
+51,53,32,95,54,56,41,41,41,41,32,95,49,53,50,52,41,41,41,32,
+40,40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,
+32,40,67,39,32,66,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
+40,95,51,53,32,95,54,56,41,41,41,41,32,95,49,53,50,52,41,41,
+41,32,40,40,66,32,40,66,32,40,66,32,40,95,51,55,32,95,54,56,
+41,41,41,41,32,95,57,50,57,41,41,41,41,41,41,41,41,32,40,40,
+66,32,40,66,32,40,66,32,85,41,41,41,32,40,40,40,67,39,32,40,
+67,39,32,66,41,41,32,40,40,40,67,39,32,40,67,39,32,67,39,41,
+41,32,40,40,66,32,40,66,32,67,39,41,41,32,40,40,66,32,66,39,
+41,32,95,49,52,55,51,41,41,41,32,40,40,66,32,40,66,32,40,40,
+83,39,32,95,57,51,55,41,32,40,40,67,32,79,41,32,75,41,41,41,
+41,32,40,40,66,32,40,67,39,32,95,57,49,56,41,41,32,40,40,66,
+32,95,57,49,56,41,32,95,57,49,55,41,41,41,41,41,32,40,40,67,
+32,95,49,51,50,56,41,32,34,36,120,34,41,41,41,41,41,41,41,32,
+40,40,40,83,39,32,40,83,39,32,40,83,39,32,83,41,41,41,32,40,
+40,66,32,40,66,32,40,66,32,40,40,83,39,32,83,39,41,32,40,40,
+67,32,60,41,32,35,57,41,41,41,41,41,32,40,40,40,83,39,32,40,
+83,39,32,66,41,41,32,40,40,66,32,40,66,32,67,41,41,32,40,40,
+66,32,40,66,32,40,40,67,39,32,83,39,41,32,40,40,67,32,60,41,
+32,35,49,48,41,41,41,41,32,40,40,66,32,40,66,32,85,41,41,32,
+40,40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,66,32,66,39,
+41,32,95,49,52,55,51,41,41,32,40,40,67,39,32,95,57,49,56,41,
+32,95,57,49,55,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,
+66,32,85,41,41,41,32,40,40,40,83,39,32,66,41,32,40,66,39,32,
+40,66,39,32,40,40,66,32,80,41,32,95,49,53,49,51,41,41,41,41,
+32,40,40,40,83,39,32,40,83,39,32,40,83,39,32,66,41,41,41,32,
+40,40,66,32,40,66,32,40,66,32,40,83,39,32,83,41,41,41,41,32,
+40,40,66,32,40,66,32,40,66,32,40,66,32,85,41,41,41,41,32,40,
+40,40,83,39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,
+67,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,83,41,
+41,41,32,40,40,66,32,40,66,32,40,67,32,40,40,67,32,67,39,41,
+32,40,90,32,75,41,41,41,41,41,32,95,49,52,55,51,41,41,32,75,
+41,41,41,32,40,40,40,67,39,32,40,67,39,32,95,50,56,50,41,41,
+32,95,49,50,57,49,41,32,34,98,97,100,32,102,105,110,97,108,32,100,
+111,32,115,116,97,116,101,109,101,110,116,34,41,41,41,41,41,32,40,40,
+66,32,40,66,32,40,66,32,40,66,32,40,66,32,90,41,41,41,41,41,
+32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,90,41,41,
+41,41,41,32,40,40,40,83,39,32,40,83,39,32,40,67,39,32,40,83,
+39,32,40,67,39,32,83,41,41,41,41,41,32,40,40,40,83,39,32,40,
+83,39,32,40,83,39,32,40,83,39,32,67,41,41,41,41,32,40,40,66,
+32,40,66,32,40,66,32,40,66,32,40,67,32,83,39,41,41,41,41,41,
+32,40,40,40,67,39,32,40,67,39,32,40,83,39,32,40,67,39,32,40,
+67,39,32,40,67,39,32,67,41,41,41,41,41,41,32,40,40,40,67,39,
+32,40,67,39,32,66,41,41,32,40,40,40,83,39,32,40,67,39,32,67,
+39,41,41,32,40,40,66,32,40,66,32,67,39,41,41,32,40,40,66,32,
+40,66,32,67,39,41,41,32,40,40,66,32,40,66,32,67,39,41,41,32,
+40,40,66,32,40,66,32,67,39,41,41,32,40,40,66,32,66,39,41,32,
+95,49,52,55,51,41,41,41,41,41,41,32,40,40,40,67,39,32,40,83,
+39,32,66,41,41,32,40,40,66,32,66,39,41,32,40,40,66,32,40,66,
+32,40,67,39,32,66,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
+40,67,39,32,95,57,49,56,41,41,41,41,32,40,40,66,32,40,66,32,
+40,67,39,32,95,57,49,56,41,41,41,32,40,40,66,32,40,66,32,40,
+66,32,95,57,49,55,41,41,41,32,40,40,66,32,67,41,32,40,40,66,
+32,40,83,32,95,53,49,53,41,41,32,40,40,66,32,67,41,32,95,49,
+48,57,49,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,
+40,66,32,40,40,83,39,32,95,57,51,55,41,32,40,40,67,32,79,41,
+32,75,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,67,
+32,95,57,50,50,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,
+40,67,39,32,79,41,41,41,32,40,40,66,32,40,66,32,40,67,32,80,
+41,41,41,32,40,40,40,67,39,32,40,67,39,32,95,57,54,54,41,41,
+32,40,40,40,67,39,32,40,67,39,32,79,41,41,32,40,40,66,32,40,
+66,32,40,80,32,95,53,48,50,41,41,41,32,95,57,50,54,41,41,32,
+75,41,41,32,95,53,48,50,41,41,41,32,75,41,41,41,41,41,41,32,
+40,40,67,32,95,49,48,56,52,41,32,34,62,62,61,34,41,41,41,32,
+40,40,67,32,95,49,51,50,56,41,32,34,36,98,34,41,41,41,41,32,
+40,40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,40,83,39,32,
+40,67,39,32,67,39,41,41,32,40,40,66,32,40,66,32,67,39,41,41,
+32,40,40,66,32,40,66,32,67,39,41,41,32,40,40,66,32,66,39,41,
+32,95,49,52,55,51,41,41,41,41,32,40,40,40,67,39,32,40,83,39,
+32,66,41,41,32,40,40,66,32,40,66,32,40,67,39,32,40,67,39,32,
+95,57,49,56,41,41,41,41,32,40,40,66,32,40,66,32,40,67,39,32,
+95,57,49,56,41,41,41,32,40,40,66,32,40,66,32,40,66,32,95,57,
+49,55,41,41,41,32,40,40,66,32,67,41,32,40,40,66,32,40,83,32,
+95,53,49,53,41,41,32,40,40,66,32,67,41,32,95,49,48,57,49,41,
+41,41,41,41,41,41,32,95,57,50,54,41,41,41,32,40,40,67,32,95,
+49,48,56,52,41,32,34,62,62,34,41,41,41,41,32,40,40,40,67,39,
+32,40,67,39,32,66,41,41,32,40,40,66,32,66,39,41,32,40,40,66,
+32,66,39,41,32,95,49,52,55,51,41,41,41,32,40,40,66,32,40,66,
+32,40,67,32,95,57,50,51,41,41,41,32,95,57,50,54,41,41,41,41,
+41,41,41,41,41,41,41,32,40,40,40,83,39,32,40,83,39,32,40,83,
+39,32,67,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,40,67,
+39,32,83,39,41,32,40,40,67,32,60,41,32,35,56,41,41,41,41,41,
+32,40,40,66,32,40,66,32,40,66,32,85,41,41,41,32,40,40,66,32,
+40,66,32,40,66,32,85,41,41,41,32,40,40,40,83,39,32,40,83,39,
+32,40,83,39,32,83,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
+40,40,83,39,32,83,39,41,32,40,40,67,32,60,41,32,35,51,41,41,
+41,41,41,32,40,40,40,83,39,32,40,83,39,32,40,83,39,32,67,41,
+41,41,32,40,40,66,32,40,66,32,40,66,32,40,40,83,39,32,83,39,
+41,32,40,40,67,32,60,41,32,35,52,41,41,41,41,41,32,40,40,40,
+83,39,32,40,83,39,32,40,83,39,32,67,41,41,41,32,40,40,66,32,
+40,66,32,40,66,32,40,40,67,39,32,83,39,41,32,40,40,67,32,60,
+41,32,35,53,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
+85,41,41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,40,
+40,66,32,66,39,41,32,40,40,66,32,66,39,41,32,40,40,66,32,66,
+39,41,32,95,49,52,55,51,41,41,41,41,32,40,40,40,67,39,32,66,
+41,32,40,66,39,32,40,66,39,32,40,40,67,32,95,49,52,55,53,41,
+32,34,70,114,111,109,84,104,101,110,84,111,34,41,41,41,41,32,40,40,
+40,67,39,32,66,41,32,40,66,39,32,79,41,41,32,40,40,40,67,39,
+32,66,41,32,79,41,32,40,40,67,32,79,41,32,75,41,41,41,41,41,
+41,41,41,32,40,40,66,32,40,66,32,40,66,32,85,41,41,41,32,40,
+40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,66,32,66,39,41,
+32,40,40,66,32,66,39,41,32,95,49,52,55,51,41,41,41,32,40,40,
+40,67,39,32,66,41,32,40,66,39,32,40,40,67,32,95,49,52,55,53,
+41,32,34,70,114,111,109,84,104,101,110,34,41,41,41,32,40,40,40,67,
+39,32,66,41,32,79,41,32,40,40,67,32,79,41,32,75,41,41,41,41,
+41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,85,41,41,41,32,
+40,40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,66,32,66,39,
+41,32,40,40,66,32,66,39,41,32,95,49,52,55,51,41,41,41,32,40,
+40,40,67,39,32,66,41,32,40,66,39,32,40,40,67,32,95,49,52,55,
+53,41,32,34,70,114,111,109,84,111,34,41,41,41,32,40,40,40,67,39,
+32,66,41,32,79,41,32,40,40,67,32,79,41,32,75,41,41,41,41,41,
+41,41,41,32,40,40,40,83,39,32,40,83,39,32,40,83,39,32,67,41,
+41,41,32,40,40,66,32,40,66,32,40,66,32,40,40,83,39,32,83,39,
+41,32,40,40,67,32,60,41,32,35,49,41,41,41,41,41,32,40,40,40,
+83,39,32,40,83,39,32,40,83,39,32,67,41,41,41,32,40,40,66,32,
+40,66,32,40,66,32,40,40,67,39,32,83,39,41,32,40,40,67,32,60,
+41,32,35,50,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
+85,41,41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,40,
+40,66,32,66,39,41,32,95,49,52,55,51,41,41,32,40,40,40,67,39,
+32,66,41,32,40,40,67,32,95,49,52,55,53,41,32,34,70,114,111,109,
+34,41,41,32,40,40,67,32,79,41,32,75,41,41,41,41,41,41,32,40,
+40,66,32,40,66,32,40,66,32,85,41,41,41,32,40,40,40,83,39,32,
+66,41,32,40,40,66,32,40,83,39,32,40,67,39,32,40,67,39,32,40,
+95,51,53,32,95,54,56,41,41,41,41,41,32,40,40,40,67,39,32,40,
+67,39,32,40,67,39,32,89,41,41,41,32,40,40,40,67,39,32,66,41,
+32,40,40,66,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,
+40,83,39,32,80,41,41,41,32,40,40,40,67,39,32,40,67,39,32,66,
+41,41,32,40,40,66,32,40,66,32,40,95,51,53,32,95,54,56,41,41,
+41,32,95,49,52,54,56,41,41,32,40,40,66,32,40,66,32,40,95,51,
+55,32,95,54,56,41,41,41,32,40,40,66,32,80,41,32,95,52,54,51,
+41,41,41,41,41,41,32,40,40,40,67,39,32,40,83,39,32,40,83,39,
+32,40,67,39,32,83,41,41,41,41,32,40,40,40,67,39,32,40,83,39,
+32,40,83,39,32,67,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
+40,67,32,83,39,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
+40,66,32,40,66,32,40,66,32,40,40,95,51,53,32,95,54,56,41,32,
+95,49,52,48,57,41,41,41,41,41,41,41,32,40,40,40,67,39,32,66,
+41,32,40,66,39,32,40,66,39,32,40,66,39,32,40,40,66,32,40,67,
+39,32,40,83,39,32,40,95,51,53,32,95,54,56,41,41,41,41,32,40,
+40,66,32,40,67,39,32,95,49,52,57,53,41,41,32,40,40,66,32,95,
+49,51,57,49,41,32,95,49,53,49,49,41,41,41,41,41,41,41,32,40,
+40,66,32,40,66,32,40,66,32,40,40,67,39,32,40,67,39,32,66,41,
+41,32,40,40,66,32,40,66,32,95,50,56,50,41,41,32,40,67,32,95,
+49,52,57,57,41,41,41,41,41,41,32,40,40,40,67,39,32,66,41,32,
+40,40,66,32,67,39,41,32,67,39,41,41,32,40,40,67,39,32,40,67,
+39,32,95,53,48,51,41,41,32,40,67,32,95,57,53,57,41,41,41,41,
+41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,40,67,39,32,
+40,95,51,53,32,95,54,56,41,41,32,40,40,40,83,39,32,95,49,52,
+57,53,41,32,40,40,66,32,95,49,53,49,50,41,32,40,95,57,55,57,
+32,95,57,56,50,41,41,41,32,73,41,41,41,41,41,32,40,40,40,67,
+39,32,66,41,32,67,39,41,32,40,40,67,39,32,95,53,48,51,41,32,
+95,57,54,48,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
+40,40,67,39,32,95,50,56,50,41,32,95,49,53,48,53,41,41,41,41,
+32,40,40,40,67,39,32,66,41,32,67,39,41,32,40,40,67,39,32,95,
+53,48,51,41,32,95,57,54,49,41,41,41,41,41,41,32,95,53,48,50,
+41,41,41,32,40,40,66,32,40,66,32,40,66,32,85,41,41,41,32,40,
+40,66,32,40,66,32,40,66,32,40,66,32,85,41,41,41,41,32,40,40,
+40,67,39,32,40,67,39,32,40,67,39,32,66,41,41,41,32,40,40,66,
+32,40,66,32,66,39,41,41,32,40,40,66,32,40,66,32,40,66,32,40,
+67,39,32,40,95,51,54,32,95,54,56,41,41,41,41,41,32,40,40,40,
+67,39,32,40,67,39,32,40,83,39,32,66,41,41,41,32,40,40,66,32,
+67,41,32,95,49,52,48,48,41,41,32,40,40,66,32,95,49,51,57,49,
+41,32,95,49,53,49,49,41,41,41,41,41,32,40,40,66,32,40,66,32,
+40,95,51,55,32,95,54,56,41,41,41,32,40,40,66,32,40,66,32,95,
+57,50,53,41,41,32,40,67,32,95,57,52,50,41,41,41,41,41,41,41,
+41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,85,41,41,41,32,
+40,40,66,32,40,66,32,40,66,32,40,66,32,40,40,95,51,53,32,95,
+54,56,41,32,95,49,52,48,57,41,41,41,41,41,32,40,40,40,83,39,
+32,40,67,39,32,40,67,39,32,66,41,41,41,32,40,40,66,32,40,66,
+32,40,66,32,40,83,39,32,40,95,51,54,32,95,54,56,41,41,41,41,
+41,32,40,40,40,67,39,32,40,67,39,32,40,83,39,32,66,41,41,41,
+32,40,40,66,32,67,41,32,95,49,52,48,48,41,41,32,40,40,66,32,
+95,49,51,57,49,41,32,95,49,53,49,49,41,41,41,41,32,40,40,40,
+67,39,32,40,67,39,32,40,67,39,32,40,95,51,53,32,95,54,56,41,
+41,41,41,32,40,40,66,32,40,67,39,32,40,95,52,54,32,95,54,56,
+41,41,41,32,95,49,52,54,57,41,41,32,40,40,66,32,40,95,51,55,
+32,95,54,56,41,41,32,40,40,66,32,95,57,50,53,41,32,95,57,52,
+49,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,
+32,40,66,32,85,41,41,41,32,40,40,40,83,39,32,66,41,32,40,66,
+39,32,40,40,66,32,40,83,39,32,40,95,51,53,32,95,54,56,41,41,
+41,32,40,40,66,32,40,66,32,40,40,95,50,57,52,32,95,54,54,41,
+32,95,52,53,52,41,41,41,32,40,40,66,32,40,95,52,54,32,95,54,
+56,41,41,32,95,49,52,54,56,41,41,41,41,41,32,40,40,66,32,40,
+66,32,40,66,32,40,66,32,85,41,41,41,41,32,40,40,40,67,39,32,
+40,67,39,32,40,67,39,32,40,67,39,32,66,41,41,41,41,32,40,40,
+66,32,40,66,32,40,66,32,40,66,32,40,67,39,32,40,95,51,54,32,
+95,54,56,41,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,
+40,83,39,32,66,41,41,41,32,40,40,66,32,40,66,32,66,39,41,41,
+32,40,40,66,32,67,41,32,95,49,52,48,48,41,41,41,32,40,40,66,
+32,40,66,32,95,49,51,57,50,41,41,32,40,40,40,67,39,32,66,41,
+32,95,57,55,53,41,32,95,52,52,57,41,41,41,41,41,32,40,40,66,
+32,40,95,51,55,32,95,54,56,41,41,32,95,57,50,52,41,41,41,41,
+41,41,41,41,41,41,32,40,40,40,83,39,32,40,83,39,32,40,83,39,
+32,40,83,39,32,83,41,41,41,41,32,40,40,66,32,40,66,32,40,66,
+32,40,66,32,40,40,83,39,32,83,39,41,32,40,40,67,32,60,41,32,
+35,51,41,41,41,41,41,41,32,40,40,40,83,39,32,40,83,39,32,66,
+41,41,32,40,40,66,32,66,39,41,32,40,40,66,32,40,66,32,83,41,
+41,32,40,40,66,32,40,66,32,40,40,83,39,32,83,39,41,32,40,40,
+67,32,60,41,32,35,53,41,41,41,41,32,40,40,40,83,39,32,40,83,
+39,32,67,41,41,32,40,40,66,32,40,66,32,40,40,67,39,32,83,39,
+41,32,40,40,67,32,60,41,32,35,54,41,41,41,41,32,40,40,66,32,
+40,66,32,85,41,41,32,40,40,66,32,40,66,32,40,40,67,39,32,66,
+41,32,40,40,66,32,95,50,56,50,41,32,95,49,53,48,53,41,41,41,
+41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,66,41,41,41,
+32,40,40,66,32,40,66,32,40,66,32,40,95,51,53,32,95,54,56,41,
+41,41,41,32,95,49,52,55,51,41,41,32,40,40,66,32,40,66,32,40,
+95,51,55,32,95,54,56,41,41,41,32,95,57,50,51,41,41,41,41,41,
+41,32,40,40,66,32,40,66,32,85,41,41,32,40,40,40,67,39,32,66,
+41,32,40,40,66,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,
+32,40,95,51,53,32,95,54,56,41,41,41,32,95,49,52,54,56,41,41,
+41,32,40,40,66,32,40,66,32,85,41,41,32,40,40,40,67,39,32,66,
+41,32,40,66,39,32,40,66,39,32,40,40,66,32,40,95,51,53,32,95,
+54,56,41,41,32,95,49,52,55,50,41,41,41,41,32,40,40,40,67,39,
+32,66,41,32,40,40,66,32,40,67,39,32,40,67,39,32,40,95,51,53,
+32,95,54,56,41,41,41,41,32,40,40,67,39,32,40,67,39,32,40,95,
+52,54,32,95,54,56,41,41,41,32,40,67,32,95,49,52,57,52,41,41,
+41,41,32,40,40,66,32,40,66,32,40,95,51,55,32,95,54,56,41,41,
+41,32,95,57,50,50,41,41,41,41,41,41,41,41,41,41,41,32,40,40,
+40,67,39,32,40,83,39,32,40,67,39,32,40,67,39,32,67,41,41,41,
+41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,40,67,39,32,
+83,39,41,32,40,40,67,32,60,41,32,35,52,41,41,41,41,41,41,32,
+40,40,66,32,40,66,32,40,66,32,40,66,32,85,41,41,41,41,32,40,
+40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,40,
+95,51,53,32,95,54,56,41,32,40,95,55,52,32,95,49,51,52,56,41,
+41,41,41,41,41,41,41,32,40,40,40,83,39,32,40,83,39,32,40,67,
+39,32,40,67,39,32,40,83,39,32,40,83,39,32,80,41,41,41,41,41,
+41,32,40,40,40,83,39,32,40,67,39,32,40,67,39,32,40,67,39,32,
+40,67,39,32,67,41,41,41,41,41,32,40,40,40,67,39,32,40,83,39,
+32,40,67,39,32,40,67,39,32,40,83,39,32,83,41,41,41,41,41,32,
+40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,40,83,39,
+32,67,39,41,32,66,41,41,41,41,41,41,32,40,40,40,83,39,32,40,
+83,39,32,40,83,39,32,40,83,39,32,40,83,39,32,66,41,41,41,41,
+41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,83,
+39,32,40,83,39,32,83,41,41,41,41,41,41,41,32,40,40,66,32,40,
+66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,40,83,
+39,32,83,39,41,32,40,40,67,32,60,41,32,35,51,41,41,41,41,41,
+41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
+32,40,66,32,40,40,67,39,32,40,67,39,32,66,41,41,32,40,67,32,
+40,40,67,32,61,61,41,32,35,51,41,41,41,41,41,41,41,41,41,32,
+40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,85,
+41,41,41,41,41,41,32,40,40,66,32,40,40,83,39,32,66,41,32,40,
+66,39,32,40,66,39,32,40,40,66,32,40,67,39,32,66,41,41,32,40,
+40,66,32,40,66,32,40,95,51,53,32,95,54,56,41,41,41,32,85,41,
+41,41,41,41,41,32,40,40,66,32,40,40,83,39,32,66,41,32,40,66,
+39,32,40,40,66,32,40,83,39,32,40,67,39,32,67,41,41,41,32,40,
+40,66,32,40,66,32,40,66,32,40,67,32,83,41,41,41,41,32,40,40,
+66,32,40,66,32,40,66,32,40,40,67,39,32,67,41,32,40,67,32,40,
+40,67,32,40,95,50,50,51,32,95,49,48,55,56,41,41,32,40,95,49,
+48,56,51,32,95,49,51,48,49,41,41,41,41,41,41,41,32,40,40,40,
+67,39,32,40,67,39,32,66,41,41,32,95,49,52,55,54,41,32,40,40,
+66,32,95,57,53,50,41,32,40,95,50,55,55,32,95,49,54,50,41,41,
+41,41,41,41,41,41,41,32,40,40,40,83,39,32,66,41,32,40,66,39,
+32,40,66,39,32,40,40,66,32,40,67,39,32,40,95,51,53,32,95,54,
+56,41,41,41,32,40,40,40,67,39,32,66,41,32,95,49,52,54,56,41,
+32,40,40,66,32,95,57,49,55,41,32,40,40,67,32,95,49,48,56,52,
+41,32,34,102,114,111,109,82,97,116,105,111,110,97,108,34,41,41,41,41,
+41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,85,41,41,
+41,41,32,40,40,40,83,39,32,66,41,32,40,66,39,32,40,40,66,32,
+40,83,39,32,66,41,41,32,40,40,66,32,40,66,32,40,67,39,32,40,
+95,51,53,32,95,54,56,41,41,41,41,32,95,49,52,55,57,41,41,41,
+41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,85,41,
+41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,90,41,
+41,41,41,32,40,40,66,32,40,67,39,32,40,67,39,32,40,67,39,32,
+67,41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,
+67,39,32,66,41,41,32,95,49,53,50,55,41,41,32,40,67,32,95,57,
+49,56,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,
+66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
+40,40,67,39,32,40,67,39,32,66,41,41,32,40,67,32,40,40,67,32,
+61,61,41,32,35,49,41,41,41,41,41,41,41,41,41,41,32,40,40,66,
+32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,85,
+41,41,41,41,41,41,41,32,40,40,66,32,40,40,83,39,32,66,41,32,
+40,66,39,32,40,66,39,32,40,66,39,32,40,40,66,32,40,67,39,32,
+66,41,41,32,40,40,66,32,40,66,32,40,95,51,53,32,95,54,56,41,
+41,41,32,85,41,41,41,41,41,41,41,32,40,40,66,32,40,40,83,39,
+32,66,41,32,40,66,39,32,40,40,66,32,40,83,39,32,40,67,39,32,
+40,67,39,32,67,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
+40,66,32,40,67,32,83,41,41,41,41,41,32,40,40,40,83,39,32,40,
+83,39,32,40,67,39,32,40,83,39,32,40,67,39,32,67,41,41,41,41,
+41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,83,
+32,40,40,67,32,40,95,50,50,51,32,95,49,48,55,56,41,41,32,40,
+95,49,48,56,51,32,95,49,50,57,57,41,41,41,41,41,41,41,41,32,
+40,40,40,83,39,32,40,83,39,32,40,67,39,32,40,83,39,32,40,67,
+39,32,67,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,
+66,32,40,66,32,40,83,32,40,40,67,32,40,95,50,50,51,32,95,49,
+48,55,56,41,41,32,40,95,49,48,56,51,32,95,49,51,48,48,41,41,
+41,41,41,41,41,41,32,40,40,40,83,39,32,40,83,39,32,40,67,39,
+32,66,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,67,39,32,
+67,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,
+83,32,40,40,67,32,40,95,50,50,51,32,95,49,48,55,56,41,41,32,
+40,95,49,48,56,51,32,95,49,51,48,49,41,41,41,41,41,41,41,32,
+40,40,66,32,40,66,32,40,66,32,40,40,67,39,32,67,41,32,40,67,
+32,40,40,67,32,40,95,50,50,51,32,95,49,48,55,56,41,41,32,40,
+95,49,48,56,51,32,95,49,51,48,51,41,41,41,41,41,41,41,32,95,
+49,52,55,54,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,66,
+41,41,32,95,49,52,55,54,41,32,40,40,66,32,95,57,53,50,41,32,
+95,51,57,54,41,41,41,41,41,32,40,40,40,67,39,32,83,41,32,40,
+40,40,67,39,32,40,67,39,32,67,39,41,41,32,95,49,52,55,55,41,
+32,40,40,66,32,95,57,53,48,41,32,95,51,57,51,41,41,41,32,40,
+40,67,32,95,49,53,48,57,41,32,95,49,51,48,48,41,41,41,41,41,
+32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,95,49,52,55,54,
+41,32,40,40,66,32,95,57,53,48,41,32,95,51,57,51,41,41,41,41,
+41,41,41,41,32,40,40,40,83,39,32,66,41,32,40,66,39,32,40,66,
+39,32,40,40,66,32,40,67,39,32,40,95,51,53,32,95,54,56,41,41,
+41,32,40,40,40,67,39,32,66,41,32,95,49,52,54,56,41,32,40,40,
+66,32,95,57,49,55,41,32,40,40,67,32,95,49,48,56,52,41,32,34,
+102,114,111,109,73,110,116,101,103,101,114,34,41,41,41,41,41,41,41,32,
+40,40,66,32,40,66,32,40,66,32,40,66,32,85,41,41,41,41,32,40,
+40,40,83,39,32,66,41,32,40,66,39,32,40,40,66,32,40,83,39,32,
+66,41,41,32,40,40,66,32,40,66,32,40,67,39,32,40,95,51,53,32,
+95,54,56,41,41,41,41,32,95,49,52,55,57,41,41,41,41,32,40,40,
+66,32,40,66,32,40,66,32,40,66,32,40,66,32,85,41,41,41,41,41,
+32,40,40,66,32,40,66,32,40,66,32,40,66,32,90,41,41,41,41,32,
+40,40,66,32,40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,41,
+41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,67,39,32,66,
+41,41,32,95,49,53,50,55,41,41,32,40,67,32,95,57,49,56,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,32,95,49,52,55,54,41,
+41,32,40,40,66,32,40,80,32,40,75,32,40,40,95,49,52,32,95,54,
+55,41,32,95,53,50,49,41,41,41,41,32,40,40,40,67,39,32,40,67,
+39,32,40,95,51,53,32,95,54,56,41,41,41,32,40,40,66,32,40,40,
+67,39,32,40,95,51,53,32,95,54,56,41,41,32,95,49,52,48,50,41,
+41,32,95,49,52,48,49,41,41,32,40,85,32,40,40,40,67,39,32,66,
+41,32,40,40,67,32,40,40,67,32,61,61,41,32,35,48,41,41,32,40,
+40,95,49,52,32,95,54,55,41,32,95,53,50,49,41,41,41,32,40,85,
+32,40,40,66,32,40,95,49,52,32,95,54,55,41,41,32,95,53,50,50,
+41,41,41,41,41,41,41,41,32,40,40,40,83,39,32,40,67,39,32,40,
+67,39,32,67,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,83,
+32,66,41,41,41,41,32,40,40,40,83,39,32,40,83,39,32,40,83,39,
+32,40,83,39,32,40,83,39,32,83,41,41,41,41,41,32,40,40,66,32,
+40,66,32,40,66,32,40,66,32,40,66,32,40,40,83,39,32,83,39,41,
+32,40,40,67,32,60,41,32,35,53,41,41,41,41,41,41,41,32,40,40,
+66,32,40,66,32,40,66,32,40,66,32,40,40,67,39,32,40,67,39,32,
+66,41,41,32,40,67,32,40,40,67,32,61,61,41,32,35,53,41,41,41,
+41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,85,41,
+41,41,41,32,40,40,66,32,40,66,32,40,66,32,90,41,41,41,32,40,
+40,66,32,40,67,39,32,67,41,41,32,40,40,40,67,39,32,83,41,32,
+40,40,40,67,39,32,40,83,39,32,67,39,41,41,32,95,49,53,50,55,
+41,32,95,57,50,49,41,41,32,40,40,67,32,95,49,53,48,57,41,32,
+95,49,51,48,55,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,
+32,40,66,32,40,66,32,40,40,67,39,32,40,67,39,32,66,41,41,32,
+40,67,32,40,40,67,32,61,61,41,32,35,49,41,41,41,41,41,41,41,
+32,40,40,66,32,40,66,32,40,66,32,40,66,32,85,41,41,41,41,32,
+40,40,66,32,40,66,32,40,66,32,90,41,41,41,32,40,40,66,32,40,
+67,39,32,67,41,41,32,40,40,40,67,39,32,83,41,32,40,40,40,67,
+39,32,40,83,39,32,67,39,41,41,32,95,49,53,50,55,41,32,95,57,
+50,49,41,41,32,40,40,67,32,95,49,53,48,57,41,32,95,49,51,48,
+56,41,41,41,41,41,41,41,41,41,32,95,49,53,49,51,41,41,41,41,
+41,41,32,40,40,66,32,85,41,32,95,49,52,56,54,41,41,41,41,41,
+32,40,40,40,83,39,32,40,83,39,32,66,41,41,32,40,40,66,32,40,
+66,32,40,83,39,32,67,41,41,41,32,40,40,66,32,40,66,32,40,66,
+32,40,40,83,39,32,83,39,41,32,40,40,67,32,60,41,32,35,49,41,
+41,41,41,41,32,40,40,40,83,39,32,40,83,39,32,66,41,41,32,40,
+40,66,32,40,66,32,67,41,41,32,40,40,66,32,40,66,32,40,40,67,
+39,32,83,39,41,32,40,40,67,32,60,41,32,35,50,41,41,41,41,32,
+40,40,66,32,40,66,32,85,41,41,32,40,40,40,83,39,32,66,41,32,
+40,40,66,32,40,67,39,32,40,67,39,32,40,95,51,53,32,95,54,56,
+41,41,41,41,32,95,49,52,55,56,41,41,32,95,49,52,55,51,41,41,
+41,41,41,32,40,40,66,32,40,66,32,40,66,32,85,41,41,41,32,40,
+40,40,83,39,32,66,41,32,40,66,39,32,40,40,66,32,40,67,39,32,
+66,41,41,32,40,40,66,32,40,66,32,40,95,51,53,32,95,54,56,41,
+41,41,32,95,49,52,54,56,41,41,41,41,32,40,40,66,32,40,66,32,
+40,66,32,40,66,32,85,41,41,41,41,32,40,40,40,83,39,32,66,41,
+32,40,40,66,32,40,83,39,32,66,41,41,32,40,40,66,32,66,39,41,
+32,40,40,66,32,40,66,32,40,67,39,32,40,95,51,53,32,95,54,56,
+41,41,41,41,32,95,49,52,55,57,41,41,41,41,32,40,40,66,32,40,
+66,32,40,66,32,40,66,32,40,66,32,85,41,41,41,41,41,32,40,40,
+40,83,39,32,66,41,32,40,66,39,32,40,40,66,32,40,67,39,32,66,
+41,41,32,40,40,66,32,40,66,32,40,67,39,32,66,41,41,41,32,40,
+40,66,32,40,66,32,40,66,32,40,95,51,53,32,95,54,56,41,41,41,
+41,32,95,49,53,50,52,41,41,41,41,41,32,40,40,66,32,40,67,39,
+32,40,67,39,32,40,67,39,32,67,41,41,41,41,32,40,40,40,67,39,
+32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,67,39,41,41,
+32,95,49,53,50,55,41,41,32,95,57,49,56,41,41,41,41,41,41,41,
+41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,85,
+41,41,41,41,32,40,40,40,83,39,32,40,83,39,32,40,67,39,32,40,
+67,39,32,83,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,
+66,32,40,83,32,40,95,49,48,57,48,32,95,49,52,56,52,41,41,41,
+41,41,41,32,40,40,40,83,39,32,40,67,39,32,66,41,41,32,40,40,
+66,32,40,66,32,40,67,39,32,67,41,41,41,32,40,40,66,32,40,66,
+32,40,66,32,40,83,32,95,49,49,48,48,41,41,41,41,32,40,40,40,
+83,39,32,66,41,32,40,66,39,32,40,40,66,32,40,67,39,32,40,95,
+51,53,32,95,54,56,41,41,41,32,95,49,52,49,52,41,41,41,32,40,
+40,66,32,40,66,32,40,66,32,85,41,41,41,32,40,40,66,32,40,66,
+32,40,66,32,40,66,32,40,40,67,39,32,40,95,51,53,32,95,54,56,
+41,41,32,40,40,83,32,73,41,32,40,40,40,83,39,32,40,67,39,32,
+66,41,41,32,40,40,66,32,40,67,32,40,40,67,32,61,61,41,32,35,
+49,55,41,41,41,32,40,95,51,55,32,95,54,56,41,41,41,32,40,40,
+66,32,85,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,95,
+50,57,52,32,95,54,54,41,41,32,95,53,49,54,41,41,32,95,49,51,
+57,57,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,67,39,32,
+40,67,39,32,67,41,41,41,32,95,49,53,50,55,41,41,41,41,41,41,
+41,32,40,40,67,32,95,49,53,49,52,41,32,40,40,80,32,95,49,48,
+49,53,41,32,95,57,56,50,41,41,41,41,41,32,40,40,66,32,40,66,
+32,40,40,67,39,32,40,95,51,53,32,95,54,56,41,41,32,40,40,40,
+67,39,32,95,49,52,49,50,41,32,40,95,57,55,57,32,95,57,56,49,
+41,41,32,95,49,52,56,52,41,41,41,41,32,40,40,40,67,39,32,40,
+67,39,32,40,83,39,32,40,95,51,54,32,95,54,56,41,41,41,41,32,
+40,40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,66,32,85,41,
+32,40,90,32,95,49,53,49,51,41,41,41,32,95,49,51,55,49,41,41,
+32,40,40,66,32,40,95,51,55,32,95,54,56,41,41,32,95,57,49,55,
+41,41,41,41,41,41,41,41,41,41,32,40,95,57,55,57,32,95,57,56,
+50,41,41,41,32,40,40,65,32,58,49,52,55,53,32,40,40,66,32,40,
+66,32,40,95,52,51,54,32,95,57,49,56,41,41,41,32,40,40,66,32,
+40,66,32,95,57,49,55,41,41,32,40,40,40,67,39,32,66,41,32,95,
+49,48,56,52,41,32,40,95,53,48,52,32,34,101,110,117,109,34,41,41,
+41,41,41,32,40,40,65,32,58,49,52,55,54,32,40,40,66,32,40,66,
+32,40,83,32,73,41,41,41,32,40,40,40,83,39,32,40,83,39,32,40,
+83,39,32,40,67,39,32,66,41,41,41,41,32,40,40,66,32,40,66,32,
+40,66,32,40,67,32,40,40,67,32,61,61,41,32,35,54,41,41,41,41,
+41,32,40,40,40,67,39,32,40,83,39,32,83,41,41,32,95,49,52,55,
+55,41,32,40,40,40,67,39,32,67,41,32,40,40,66,32,40,67,32,66,
+41,41,32,40,40,40,83,39,32,40,67,39,32,83,41,41,32,40,40,66,
+32,40,66,32,40,40,83,39,32,83,39,41,32,40,40,67,32,60,41,32,
+35,50,41,41,41,41,32,40,40,40,83,39,32,40,83,39,32,83,41,41,
+32,40,40,66,32,40,66,32,40,40,83,39,32,83,39,41,32,40,40,67,
+32,60,41,32,35,52,41,41,41,41,32,40,40,40,83,39,32,40,67,39,
+32,67,41,41,32,40,40,66,32,40,66,32,40,40,83,39,32,83,39,41,
+32,40,40,67,32,60,41,32,35,53,41,41,41,41,32,40,40,66,32,40,
+40,67,39,32,40,67,39,32,66,41,41,32,40,67,32,40,40,67,32,61,
+61,41,32,35,53,41,41,41,41,32,40,40,66,32,85,41,32,40,90,32,
+40,40,40,83,39,32,95,49,51,57,49,41,32,95,49,53,49,49,41,32,
+40,40,67,32,95,49,53,48,57,41,32,95,49,51,48,50,41,41,41,41,
+41,41,41,32,40,40,66,32,85,41,32,40,90,32,40,40,67,32,95,49,
+53,48,57,41,32,95,49,51,48,50,41,41,41,41,41,41,32,40,40,66,
+32,40,40,67,39,32,40,67,39,32,66,41,41,32,40,67,32,40,40,67,
+32,61,61,41,32,35,50,41,41,41,41,32,40,40,66,32,85,41,32,40,
+90,32,40,40,67,32,95,49,53,48,57,41,32,95,49,51,48,49,41,41,
+41,41,41,41,41,32,40,40,40,83,39,32,67,41,32,40,40,66,32,40,
+40,67,39,32,83,39,41,32,40,40,67,32,60,41,32,35,49,41,41,41,
+32,40,40,66,32,85,41,32,40,90,32,40,40,67,32,95,49,53,48,57,
+41,32,95,49,51,48,51,41,41,41,41,41,32,40,40,66,32,85,41,32,
+40,90,32,40,40,67,32,95,49,53,48,57,41,32,95,49,50,57,57,41,
+41,41,41,41,41,41,32,40,95,49,53,49,51,32,95,55,54,48,41,41,
+41,41,41,32,40,40,66,32,40,66,32,40,66,32,85,41,41,41,32,40,
+40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,40,66,32,
+40,40,95,51,53,32,95,54,56,41,32,95,49,52,48,57,41,41,41,41,
+32,95,49,52,55,55,41,41,41,41,41,41,32,40,40,65,32,58,49,52,
+55,55,32,40,40,67,39,32,40,67,39,32,67,41,41,32,40,40,40,83,
+39,32,66,41,32,40,95,49,53,50,55,32,95,55,54,48,41,41,32,95,
+57,50,49,41,41,41,32,40,40,65,32,58,49,52,55,56,32,40,40,66,
+32,40,66,32,40,66,32,40,40,95,51,53,32,95,54,56,41,32,40,95,
+55,52,32,95,49,51,52,51,41,41,41,41,41,32,40,40,40,83,39,32,
+66,41,32,40,40,66,32,40,67,39,32,40,67,39,32,40,95,51,53,32,
+95,54,56,41,41,41,41,32,40,40,66,32,40,67,39,32,40,95,52,54,
+32,95,54,56,41,41,41,32,40,40,66,32,40,66,32,85,41,41,32,40,
+40,40,67,39,32,66,41,32,40,40,66,32,40,83,39,32,66,41,41,32,
+40,40,66,32,40,66,32,40,95,51,53,32,95,54,56,41,41,41,32,95,
+49,52,49,52,41,41,41,32,40,40,66,32,40,66,32,40,66,32,85,41,
+41,41,32,40,40,66,32,40,66,32,40,66,32,90,41,41,41,32,40,40,
+66,32,40,66,32,40,66,32,40,66,32,40,95,51,55,32,95,54,56,41,
+41,41,41,41,32,40,40,66,32,40,66,32,40,67,39,32,80,41,41,41,
+32,40,40,66,32,40,40,67,39,32,66,41,32,40,40,66,32,80,41,32,
+95,57,49,55,41,41,41,32,40,40,40,67,39,32,66,41,32,95,49,52,
+56,48,41,32,95,49,51,51,53,41,41,41,41,41,41,41,41,41,41,41,
+32,40,40,40,67,39,32,40,67,39,32,67,41,41,32,40,40,66,32,40,
+40,67,39,32,67,41,32,95,49,48,53,55,41,41,32,40,40,66,32,85,
+41,32,95,49,50,57,49,41,41,41,32,40,95,51,55,32,95,54,56,41,
+41,41,41,41,32,40,40,65,32,58,49,52,55,57,32,40,40,40,67,39,
+32,40,67,39,32,67,41,41,32,40,40,66,32,40,66,32,40,83,32,95,
+49,51,57,54,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,40,
+95,51,53,32,95,54,56,41,32,95,49,52,48,57,41,41,41,41,32,40,
+40,66,32,40,66,32,40,66,32,40,66,32,40,40,95,51,53,32,95,54,
+56,41,32,95,49,52,48,57,41,41,41,41,41,32,40,40,40,67,39,32,
+40,67,39,32,40,67,39,32,40,83,39,32,40,83,39,32,40,95,51,54,
+32,95,54,56,41,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,
+32,40,67,39,32,66,41,41,41,32,40,40,66,32,40,66,32,66,39,41,
+41,32,95,49,52,48,52,41,41,32,95,49,51,57,51,41,41,32,40,40,
+66,32,40,66,32,40,95,51,55,32,95,54,56,41,41,41,32,80,41,41,
+41,41,41,41,32,40,95,51,55,32,95,54,56,41,41,41,32,40,40,65,
+32,58,49,52,56,48,32,40,40,66,32,40,66,32,40,95,50,56,50,32,
+40,95,53,49,54,32,40,40,80,32,95,57,57,50,41,32,40,40,95,53,
+56,49,32,95,51,49,48,41,32,40,95,51,57,50,32,35,57,41,41,41,
+41,41,41,41,32,40,67,32,95,49,49,49,52,41,41,41,32,40,40,65,
+32,58,49,52,56,49,32,34,97,100,105,99,116,34,41,32,40,40,65,32,
+58,49,52,56,50,32,40,40,67,32,95,49,52,49,50,41,32,95,49,52,
+56,49,41,41,32,40,40,65,32,58,49,52,56,51,32,34,100,105,99,116,
+34,41,32,40,40,65,32,58,49,52,56,52,32,40,40,95,53,48,52,32,
+95,49,52,56,51,41,32,95,49,52,49,49,41,41,32,40,40,65,32,58,
+49,52,56,53,32,40,40,67,32,95,49,52,49,50,41,32,95,49,52,56,
+51,41,41,32,40,40,65,32,58,49,52,56,54,32,40,40,40,67,39,32,
+66,41,32,40,40,66,32,40,95,51,53,32,95,54,56,41,41,32,95,49,
+52,55,50,41,41,32,40,40,66,32,40,66,32,40,40,95,50,57,56,32,
+95,54,54,41,32,95,57,50,48,41,41,41,32,40,67,32,40,95,49,52,
+56,55,32,95,49,51,52,41,41,41,41,41,32,40,40,65,32,58,49,52,
+56,55,32,40,40,66,32,89,41,32,40,40,66,32,40,66,32,40,83,32,
+66,41,41,41,32,40,40,40,67,39,32,40,83,39,32,40,67,39,32,40,
+83,39,32,40,67,39,32,66,41,41,41,41,41,32,40,40,66,32,40,66,
+32,40,66,32,40,66,32,40,67,32,40,40,67,32,61,61,41,32,35,49,
+57,41,41,41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,
+32,67,41,32,40,40,66,32,40,40,83,39,32,83,39,41,32,95,49,51,
+57,55,41,41,32,40,40,66,32,40,66,32,40,40,83,39,32,40,95,51,
+53,32,95,54,56,41,41,32,40,40,40,67,39,32,95,49,52,49,50,41,
+32,40,95,57,55,57,32,40,95,57,56,51,32,95,57,56,57,41,41,41,
+32,34,102,99,110,83,34,41,41,41,41,32,40,40,40,67,39,32,40,67,
+39,32,40,67,39,32,66,41,41,41,32,40,40,66,32,40,66,32,40,66,
+32,40,95,51,53,32,95,54,56,41,41,41,41,32,40,40,40,67,39,32,
+66,41,32,40,66,39,32,40,40,66,32,95,50,56,50,41,32,95,49,53,
+51,50,41,41,41,32,40,40,66,32,40,95,52,54,32,95,54,56,41,41,
+32,95,49,52,56,56,41,41,41,41,32,40,40,66,32,85,41,32,40,40,
+66,32,40,40,83,39,32,83,41,32,40,40,66,32,85,41,32,40,95,51,
+55,32,95,54,56,41,41,41,41,32,40,40,66,32,40,66,32,90,41,41,
+32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,40,
+66,32,40,95,51,55,32,95,54,56,41,41,41,41,32,40,40,40,67,39,
+32,40,67,39,32,40,67,39,32,79,41,41,41,32,40,40,66,32,40,66,
+32,40,66,32,40,95,50,56,50,32,40,95,57,54,53,32,95,53,48,50,
+41,41,41,41,41,32,40,40,40,83,39,32,66,41,32,40,66,39,32,40,
+40,66,32,95,57,54,54,41,32,40,40,40,67,39,32,79,41,32,40,40,
+66,32,40,80,32,95,53,48,50,41,41,32,95,57,49,55,41,41,32,75,
+41,41,41,41,32,40,40,66,32,40,66,32,40,40,67,39,32,95,53,48,
+52,41,32,95,49,52,57,54,41,41,41,32,40,40,40,67,39,32,40,67,
+39,32,79,41,41,32,95,57,54,50,41,32,75,41,41,41,41,41,32,75,
+41,41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,85,
+41,41,32,40,40,40,67,39,32,40,83,39,32,40,67,39,32,40,67,39,
+32,40,40,83,39,32,40,95,51,53,32,95,54,56,41,41,32,95,49,52,
+56,50,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,
+32,40,40,67,39,32,66,41,32,40,40,66,32,40,95,51,53,32,95,54,
+56,41,41,32,40,40,67,32,95,49,52,49,50,41,32,34,102,99,110,68,
+34,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,40,67,39,
+32,66,41,32,40,40,66,32,40,83,39,32,66,41,41,32,40,40,66,32,
+40,66,32,95,50,56,50,41,41,32,40,67,32,40,95,49,51,55,51,32,
+95,55,54,48,41,41,41,41,41,41,41,32,40,40,40,67,39,32,40,67,
+39,32,40,67,39,32,66,41,41,41,32,40,40,66,32,40,66,32,66,39,
+41,41,32,40,40,66,32,40,66,32,40,66,32,40,95,51,53,32,95,54,
+56,41,41,41,41,32,67,41,41,41,32,40,40,66,32,40,66,32,40,66,
+32,40,95,51,55,32,95,54,56,41,41,41,41,32,40,40,40,67,39,32,
+40,67,39,32,40,67,39,32,79,41,41,41,32,40,40,40,83,39,32,66,
+41,32,40,40,66,32,83,41,32,40,40,66,32,40,67,32,83,41,41,32,
+40,40,66,32,40,66,32,40,67,32,66,41,41,41,32,40,40,40,67,39,
+32,40,83,39,32,40,67,39,32,67,41,41,41,32,40,40,66,32,40,66,
+32,40,66,32,40,67,32,67,39,41,41,41,41,32,40,40,40,67,39,32,
+66,41,32,40,40,66,32,67,41,32,40,40,66,32,40,67,32,67,39,41,
+41,32,40,40,66,32,95,57,54,53,41,32,40,40,40,67,39,32,79,41,
+32,95,57,49,55,41,32,75,41,41,41,41,41,32,40,90,32,75,41,41,
+41,41,32,40,90,32,75,41,41,41,41,41,41,32,40,40,40,67,39,32,
+66,41,32,40,66,39,32,40,40,66,32,95,50,56,50,41,32,40,40,66,
+32,95,57,54,53,41,32,40,40,40,67,39,32,79,41,32,95,57,49,55,
+41,32,75,41,41,41,41,41,32,40,40,40,83,39,32,66,41,32,40,40,
+66,32,95,57,54,54,41,32,40,40,40,67,39,32,79,41,32,40,40,66,
+32,40,80,32,95,53,48,50,41,41,32,95,57,49,55,41,41,32,75,41,
+41,41,32,40,40,40,67,39,32,40,67,39,32,79,41,41,32,95,57,54,
+50,41,32,75,41,41,41,41,41,32,75,41,41,41,41,41,41,32,40,95,
+57,55,57,32,40,95,57,56,51,32,95,57,56,57,41,41,41,41,41,41,
+41,32,40,40,66,32,40,66,32,85,41,41,32,40,40,66,32,40,66,32,
+40,40,67,39,32,66,41,32,40,40,66,32,95,50,56,50,41,32,95,49,
+52,50,57,41,41,41,41,32,67,41,41,41,41,41,41,32,40,40,65,32,
+58,49,52,56,56,32,40,40,66,32,85,41,32,40,40,40,67,39,32,40,
+67,39,32,66,41,41,32,40,40,66,32,40,66,32,95,50,56,50,41,41,
+32,95,49,52,56,57,41,41,32,40,40,40,67,39,32,40,67,39,32,66,
+41,41,32,40,40,66,32,40,66,32,40,95,51,53,32,95,54,56,41,41,
+41,32,40,67,32,95,49,52,57,48,41,41,41,32,40,40,66,32,40,66,
+32,40,95,51,55,32,95,54,56,41,41,41,32,95,57,54,53,41,41,41,
+41,41,32,40,40,65,32,58,49,52,56,57,32,40,40,40,83,39,32,67,
+41,32,40,40,66,32,40,67,32,83,39,41,41,32,40,40,67,32,80,41,
+32,95,53,48,50,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,
+66,32,40,83,39,32,66,41,41,32,40,40,66,32,40,66,32,40,95,51,
+53,32,95,54,56,41,41,41,32,40,40,67,39,32,40,95,49,52,55,57,
+32,95,55,54,48,41,41,32,40,95,57,55,57,32,95,57,56,50,41,41,
+41,41,41,32,40,40,66,32,40,66,32,40,66,32,85,41,41,41,32,40,
+40,66,32,40,40,67,39,32,66,41,32,40,40,66,32,40,67,39,32,66,
+41,41,32,40,40,66,32,40,66,32,95,50,56,50,41,41,32,40,67,32,
+95,49,52,57,57,41,41,41,41,41,32,40,40,66,32,40,40,67,39,32,
+40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,95,50,56,50,41,
+41,32,40,67,32,95,49,52,56,57,41,41,41,41,32,40,40,40,67,39,
+32,66,41,32,40,67,39,32,66,41,41,32,95,53,48,51,41,41,41,41,
+41,41,41,32,40,40,65,32,58,49,52,57,48,32,40,40,66,32,85,41,
+32,40,40,66,32,40,66,32,40,40,67,39,32,95,50,56,50,41,32,95,
+49,53,48,53,41,41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,
+41,32,40,40,66,32,40,66,32,40,95,51,53,32,95,54,56,41,41,41,
+32,40,40,66,32,40,95,52,54,32,95,54,56,41,41,32,95,49,52,57,
+49,41,41,41,32,40,40,66,32,40,66,32,40,95,51,55,32,95,54,56,
+41,41,41,32,40,67,32,95,57,54,54,41,41,41,41,41,41,32,40,40,
+65,32,58,49,52,57,49,32,40,40,66,32,85,41,32,40,40,66,32,40,
+40,67,39,32,66,41,32,40,40,66,32,95,50,56,50,41,32,95,49,52,
+57,50,41,41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,
+40,40,66,32,40,66,32,40,95,51,53,32,95,54,56,41,41,41,32,95,
+49,52,57,53,41,41,32,40,40,66,32,40,66,32,40,95,51,55,32,95,
+54,56,41,41,41,32,80,41,41,41,41,41,32,40,40,65,32,58,49,52,
+57,50,32,40,40,67,32,40,40,67,32,83,39,41,32,40,85,32,95,53,
+48,50,41,41,41,32,40,40,66,32,40,40,67,39,32,66,41,32,40,40,
+66,32,95,50,56,50,41,32,95,49,52,57,51,41,41,41,32,40,40,66,
+32,40,40,67,39,32,66,41,32,40,40,66,32,95,50,56,50,41,32,95,
+49,52,57,50,41,41,41,32,40,40,40,67,39,32,66,41,32,66,41,32,
+95,53,48,51,41,41,41,41,41,32,40,40,65,32,58,49,52,57,51,32,
+40,40,40,67,39,32,83,41,32,40,40,67,32,40,40,67,32,83,39,41,
+32,40,40,66,32,40,66,32,40,40,67,39,32,40,95,51,53,32,95,54,
+56,41,41,32,40,95,49,52,54,56,32,95,55,54,48,41,41,41,41,32,
+40,40,66,32,40,66,32,85,41,41,32,40,40,66,32,40,40,67,39,32,
+66,41,32,40,40,66,32,40,67,39,32,95,50,56,50,41,41,32,40,67,
+32,95,49,52,57,57,41,41,41,41,32,40,40,40,67,39,32,66,41,32,
+66,41,32,40,67,32,95,57,53,57,41,41,41,41,41,41,41,32,40,40,
+66,32,40,40,67,39,32,40,95,51,53,32,95,54,56,41,41,32,40,40,
+40,83,39,32,95,49,52,57,53,41,32,40,40,66,32,95,49,53,49,50,
+41,32,40,95,57,55,57,32,95,57,56,50,41,41,41,32,73,41,41,41,
+32,40,40,67,32,66,41,32,95,57,54,48,41,41,41,41,32,40,40,66,
+32,40,40,67,39,32,95,50,56,50,41,32,95,49,53,48,53,41,41,32,
+40,40,67,32,66,41,32,95,57,54,49,41,41,41,41,32,40,40,65,32,
+58,49,52,57,52,32,40,40,66,32,40,66,32,85,41,41,32,40,40,66,
+32,40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,
+32,95,50,56,50,41,41,32,95,49,52,57,57,41,41,41,32,40,40,40,
+67,39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,40,95,
+51,53,32,95,54,56,41,41,41,32,95,49,52,57,48,41,41,32,40,40,
+66,32,40,66,32,40,95,51,55,32,95,54,56,41,41,41,32,80,41,41,
+41,41,41,32,40,40,65,32,58,49,52,57,53,32,40,40,40,67,39,32,
+40,67,39,32,40,95,51,53,32,95,54,56,41,41,41,32,40,40,66,32,
+40,66,32,40,95,50,56,50,32,95,49,53,51,49,41,41,41,32,40,95,
+49,52,54,57,32,95,55,54,48,41,41,41,32,40,85,32,40,40,40,83,
+39,32,67,41,32,40,40,66,32,40,83,32,95,52,50,56,41,41,32,40,
+40,66,32,40,66,32,40,95,50,56,50,32,40,95,51,55,32,95,54,56,
+41,41,41,41,32,40,40,67,39,32,95,57,50,51,41,32,95,49,52,57,
+54,41,41,41,41,32,40,95,51,55,32,95,54,56,41,41,41,41,41,32,
+40,40,65,32,58,49,52,57,54,32,40,95,52,51,48,32,40,85,32,40,
+40,40,67,39,32,40,67,39,32,79,41,41,32,40,40,40,67,39,32,66,
+41,32,40,40,66,32,95,50,56,50,41,32,95,57,54,50,41,41,32,95,
+49,52,52,55,41,41,32,75,41,41,41,41,32,40,40,65,32,58,49,52,
+57,55,32,40,40,40,83,39,32,40,83,39,32,40,83,39,32,80,41,41,
+41,32,40,40,66,32,40,66,32,67,41,41,32,95,49,52,55,49,41,41,
+32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,
+95,51,53,32,95,54,56,41,41,41,41,41,32,40,40,66,32,40,66,32,
+67,41,41,32,40,40,40,67,39,32,67,41,32,95,49,52,57,56,41,32,
+95,50,56,41,41,41,32,40,75,32,40,40,95,51,55,32,95,54,56,41,
+32,95,49,53,54,56,41,41,41,41,41,32,40,40,65,32,58,49,52,57,
+56,32,40,40,40,83,39,32,66,41,32,40,66,39,32,40,66,39,32,40,
+40,66,32,40,83,39,32,40,95,51,53,32,95,54,56,41,41,41,32,95,
+49,53,50,48,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,
+66,32,40,66,32,85,41,41,41,41,41,32,40,40,40,83,39,32,40,83,
+39,32,40,67,39,32,40,83,39,32,66,41,41,41,41,32,40,40,66,32,
+40,66,32,40,66,32,66,39,41,41,41,32,40,40,66,32,40,66,32,40,
+66,32,40,66,32,40,67,39,32,40,95,51,53,32,95,54,56,41,41,41,
+41,41,41,32,95,49,53,50,53,41,41,41,32,40,40,66,32,40,66,32,
+40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,66,32,66,39,41,
+32,40,40,66,32,40,66,32,40,95,51,53,32,95,54,56,41,41,41,32,
+40,40,66,32,40,66,32,95,49,53,49,54,41,41,32,40,40,40,67,39,
+32,66,41,32,79,41,32,40,40,67,32,79,41,32,75,41,41,41,41,41,
+41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,66,41,
+41,41,32,40,40,66,32,40,66,32,40,66,32,40,67,39,32,40,95,51,
+54,32,95,54,56,41,41,41,41,41,32,40,40,66,32,40,66,32,40,40,
+67,39,32,40,67,39,32,95,50,56,50,41,41,32,40,40,66,32,40,66,
+32,40,95,52,56,32,95,54,56,41,41,41,32,40,40,66,32,40,66,32,
+95,49,51,50,41,41,32,40,40,66,32,40,66,32,95,52,50,56,41,41,
+32,40,40,67,39,32,95,52,51,50,41,32,40,67,32,40,95,52,55,50,
+32,95,49,48,55,56,41,41,41,41,41,41,41,41,41,32,40,40,40,67,
+39,32,67,41,32,95,49,52,48,51,41,32,34,83,117,98,115,117,109,112,
+116,105,111,110,32,99,104,101,99,107,32,102,97,105,108,101,100,34,41,41,
+41,41,32,40,95,51,55,32,95,54,56,41,41,41,41,41,41,41,32,40,
+40,65,32,58,49,52,57,57,32,40,40,40,83,39,32,83,41,32,40,40,
+66,32,40,40,83,39,32,83,39,41,32,66,41,41,32,40,40,66,32,40,
+66,32,40,66,32,40,40,83,39,32,40,67,39,32,66,41,41,32,40,67,
+32,40,40,67,32,61,61,41,32,35,48,41,41,41,41,41,41,32,40,40,
+66,32,40,66,32,40,66,32,40,66,32,85,41,41,41,41,32,40,40,66,
+32,40,66,32,40,66,32,40,40,67,39,32,83,41,32,40,40,67,39,32,
+95,49,51,50,41,32,95,49,48,57,53,41,41,41,41,41,32,40,40,40,
+67,39,32,66,41,32,40,66,39,32,40,40,66,32,40,67,39,32,95,50,
+56,50,41,41,32,40,40,66,32,40,66,32,40,95,49,52,50,56,32,95,
+55,54,48,41,41,41,32,40,40,40,67,39,32,40,67,39,32,79,41,41,
+32,40,67,32,80,41,41,32,75,41,41,41,41,41,32,85,41,41,41,41,
+41,41,32,40,40,40,67,39,32,40,83,39,32,40,67,39,32,40,40,83,
+39,32,40,95,51,54,32,95,54,56,41,41,32,95,49,53,48,51,41,41,
+41,41,32,40,40,66,32,40,66,32,40,66,32,40,40,67,39,32,40,95,
+51,53,32,95,54,56,41,41,32,40,40,95,52,54,32,95,54,56,41,32,
+40,40,40,67,39,32,40,95,50,57,56,32,95,54,54,41,41,32,80,41,
+32,95,49,52,48,57,41,41,41,41,41,41,32,40,40,66,32,40,66,32,
+40,66,32,40,40,67,39,32,95,50,56,50,41,32,40,95,49,52,50,56,
+32,95,55,54,48,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,
+32,66,41,41,32,40,40,66,32,40,66,32,40,95,51,53,32,95,54,56,
+41,41,41,32,95,49,53,48,48,41,41,32,40,40,66,32,85,41,32,40,
+90,32,40,40,66,32,40,66,32,40,40,83,39,32,40,95,51,53,32,95,
+54,56,41,41,32,40,95,49,53,48,52,32,35,48,41,41,41,41,32,40,
+40,66,32,40,66,32,40,66,32,85,41,41,41,32,40,40,67,39,32,66,
+41,32,40,40,66,32,95,50,56,50,41,32,40,95,49,51,55,50,32,95,
+55,54,48,41,41,41,41,41,41,41,41,41,41,41,32,95,57,54,56,41,
+41,41,32,40,40,65,32,58,49,53,48,48,32,40,95,49,52,54,55,32,
+95,49,53,48,50,41,41,32,40,40,65,32,58,49,53,48,49,32,40,40,
+95,49,52,54,54,32,95,55,54,48,41,32,95,49,53,48,50,41,41,32,
+40,40,65,32,58,49,53,48,50,32,40,40,66,32,89,41,32,40,40,40,
+67,39,32,40,67,39,32,83,41,41,32,40,40,40,67,39,32,40,67,39,
+32,83,41,41,32,40,40,66,32,40,66,32,40,40,83,39,32,67,39,41,
+32,66,41,41,41,32,40,40,40,83,39,32,40,83,39,32,66,41,41,32,
+40,40,66,32,40,66,32,40,83,39,32,40,83,39,32,83,41,41,41,41,
+32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,40,83,39,32,83,
+39,41,32,40,40,67,32,60,41,32,35,55,41,41,41,41,41,41,32,40,
+40,40,83,39,32,40,67,39,32,40,83,39,32,40,83,39,32,83,41,41,
+41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,40,83,39,
+32,83,39,41,32,40,40,67,32,60,41,32,35,49,51,41,41,41,41,41,
+41,32,40,40,40,83,39,32,40,67,39,32,40,83,39,32,40,83,39,32,
+83,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,
+40,83,39,32,83,39,41,32,40,40,67,32,60,41,32,35,49,53,41,41,
+41,41,41,41,32,40,40,40,83,39,32,66,41,32,40,40,66,32,40,83,
+39,32,40,67,39,32,67,41,41,41,32,40,40,66,32,40,66,32,40,66,
+32,40,40,83,39,32,83,39,41,32,40,40,67,32,60,41,32,35,49,54,
+41,41,41,41,41,32,40,40,66,32,40,66,32,40,40,67,39,32,40,67,
+39,32,66,41,41,32,40,67,32,40,40,67,32,61,61,41,32,35,49,54,
+41,41,41,41,41,32,40,40,66,32,40,66,32,85,41,41,32,40,40,66,
+32,40,66,32,40,40,67,39,32,66,41,32,40,40,66,32,40,95,51,53,
+32,95,54,56,41,41,32,40,95,49,52,54,56,32,95,55,54,48,41,41,
+41,41,41,32,40,40,66,32,40,66,32,40,66,32,85,41,41,41,32,40,
+40,66,32,40,40,83,39,32,66,41,32,40,66,39,32,40,40,66,32,40,
+67,39,32,40,95,51,53,32,95,54,56,41,41,41,32,40,95,49,52,55,
+57,32,95,55,54,48,41,41,41,41,41,32,40,40,66,32,40,66,32,40,
+66,32,40,66,32,85,41,41,41,41,32,40,40,40,67,39,32,40,67,39,
+32,66,41,41,32,40,40,66,32,66,39,41,32,40,40,66,32,40,66,32,
+40,67,39,32,66,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,
+95,51,54,32,95,54,56,41,41,41,41,32,40,67,32,40,95,49,52,48,
+48,32,95,55,54,48,41,41,41,41,41,41,32,40,40,40,67,39,32,66,
+41,32,40,40,66,32,40,67,39,32,40,95,51,53,32,95,54,56,41,41,
+41,32,40,40,67,39,32,95,49,53,48,50,41,32,95,49,52,54,53,41,
+41,41,32,40,40,66,32,85,41,32,40,40,66,32,40,66,32,40,66,32,
+40,66,32,40,95,51,55,32,95,54,56,41,41,41,41,41,32,40,40,66,
+32,40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,
+32,67,41,41,32,80,41,41,41,32,95,57,51,51,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,85,
+41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,40,83,39,32,66,
+41,32,40,40,66,32,40,95,51,53,32,95,54,56,41,41,32,40,95,49,
+52,49,52,32,95,55,54,48,41,41,41,41,41,41,32,40,40,66,32,40,
+66,32,40,66,32,40,66,32,40,66,32,85,41,41,41,41,41,32,40,40,
+66,32,40,66,32,40,66,32,40,66,32,90,41,41,41,41,32,40,40,66,
+32,40,40,67,39,32,66,41,32,40,66,39,32,40,40,66,32,40,67,39,
+32,66,41,41,32,40,66,32,40,95,51,53,32,95,54,56,41,41,41,41,
+41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,85,41,41,41,
+41,32,40,40,40,67,39,32,66,41,32,40,66,39,32,40,66,39,32,40,
+66,39,32,40,66,39,32,40,66,39,32,40,40,66,32,40,95,51,53,32,
+95,54,56,41,41,32,95,49,52,55,50,41,41,41,41,41,41,41,32,40,
+40,40,67,39,32,66,41,32,40,40,66,32,40,67,39,32,66,41,41,32,
+40,40,66,32,66,39,41,32,40,40,66,32,66,39,41,32,40,40,66,32,
+40,66,32,40,67,39,32,40,95,51,54,32,95,54,56,41,41,41,41,32,
+40,40,66,32,40,67,32,66,41,41,32,40,40,66,32,40,66,32,40,40,
+67,39,32,66,41,32,40,40,67,32,40,40,67,32,61,61,41,32,35,49,
+55,41,41,32,40,95,49,53,49,51,32,95,55,54,48,41,41,41,41,41,
+32,40,40,66,32,40,66,32,85,41,41,32,40,40,66,32,67,41,32,40,
+95,49,52,55,49,32,95,55,54,48,41,41,41,41,41,41,41,41,41,41,
+32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,95,51,55,32,95,
+54,56,41,41,41,41,41,32,40,40,66,32,40,40,67,39,32,40,67,39,
+32,66,41,41,32,40,40,66,32,40,66,32,67,41,41,32,80,41,41,41,
+32,95,57,51,50,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,
+40,66,32,40,66,32,40,40,67,39,32,40,67,39,32,66,41,41,32,40,
+67,32,40,40,67,32,61,61,41,32,35,49,51,41,41,41,41,41,32,40,
+40,66,32,40,66,32,85,41,41,32,40,40,66,32,40,66,32,40,66,32,
+40,40,67,39,32,40,95,51,53,32,95,54,56,41,41,32,40,40,95,49,
+52,54,51,32,95,55,54,48,41,32,40,95,49,52,54,53,32,95,57,55,
+51,41,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,
+41,32,40,40,66,32,40,66,32,40,83,39,32,40,95,51,54,32,95,54,
+56,41,41,41,41,32,40,40,67,39,32,67,41,32,40,95,49,52,57,55,
+32,95,55,54,48,41,41,41,41,32,40,67,32,95,49,53,48,48,41,41,
+41,41,41,41,41,41,32,40,40,40,83,39,32,40,83,39,32,40,67,39,
+32,67,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,40,83,39,
+32,83,39,41,32,40,40,67,32,60,41,32,35,56,41,41,41,41,41,32,
+40,40,66,32,40,66,32,40,40,83,39,32,40,67,39,32,66,41,41,32,
+40,67,32,40,40,67,32,61,61,41,32,35,56,41,41,41,41,41,32,40,
+40,66,32,40,66,32,40,66,32,85,41,41,41,32,40,40,66,32,40,66,
+32,40,66,32,85,41,41,41,32,40,40,66,32,40,66,32,40,40,67,39,
+32,40,67,39,32,66,41,41,32,40,67,32,40,40,67,32,61,61,41,32,
+35,48,41,41,41,41,41,32,40,40,66,32,40,66,32,85,41,41,32,40,
+40,66,32,40,66,32,40,66,32,40,40,95,51,53,32,95,54,56,41,32,
+95,49,52,48,57,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,
+66,41,41,32,40,40,66,32,40,66,32,40,83,39,32,40,95,51,54,32,
+95,54,56,41,41,41,41,32,40,40,40,67,39,32,40,83,39,32,66,41,
+41,32,40,67,32,40,95,49,52,48,48,32,95,55,54,48,41,41,41,32,
+40,40,66,32,95,49,51,57,49,41,32,95,49,53,49,49,41,41,41,41,
+32,40,40,40,67,39,32,40,67,39,32,40,95,51,53,32,95,54,56,41,
+41,41,32,40,40,67,39,32,40,95,52,54,32,95,54,56,41,41,32,95,
+49,53,48,48,41,41,32,40,40,66,32,40,40,66,32,40,95,51,55,32,
+95,54,56,41,41,32,40,40,40,83,39,32,67,41,32,40,40,40,83,39,
+32,80,41,32,40,40,66,32,95,52,50,57,41,32,40,85,32,40,90,32,
+75,41,41,41,41,32,40,40,66,32,95,52,50,57,41,32,40,85,32,40,
+75,32,75,41,41,41,41,41,32,40,40,66,32,95,57,50,53,41,32,40,
+40,66,32,95,57,52,49,41,32,40,85,32,40,75,32,65,41,41,41,41,
+41,41,41,32,95,52,53,53,41,41,41,41,41,41,41,41,41,41,41,32,
+40,40,66,32,40,66,32,85,41,41,32,40,40,66,32,40,66,32,40,40,
+83,39,32,40,95,51,53,32,95,54,56,41,41,32,40,40,66,32,40,40,
+95,50,57,52,32,95,54,54,41,32,95,52,53,52,41,41,32,40,40,95,
+52,54,32,95,54,56,41,32,95,49,53,48,49,41,41,41,41,41,32,40,
+40,66,32,40,66,32,40,66,32,85,41,41,41,32,40,40,40,67,39,32,
+40,67,39,32,40,67,39,32,66,41,41,41,32,40,40,66,32,40,66,32,
+40,66,32,67,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,
+39,32,40,67,39,32,66,41,41,41,41,32,40,40,66,32,40,66,32,40,
+66,32,40,66,32,40,95,51,54,32,95,54,56,41,41,41,41,41,32,40,
+40,40,67,39,32,40,83,39,32,66,41,41,32,40,40,66,32,66,39,41,
+32,40,67,32,40,95,49,52,48,48,32,95,55,54,48,41,41,41,41,32,
+40,40,66,32,40,66,32,95,49,51,57,50,41,41,32,40,40,40,67,39,
+32,66,41,32,95,57,55,53,41,32,95,52,52,57,41,41,41,41,41,32,
+40,40,66,32,40,95,51,55,32,95,54,56,41,41,32,40,40,40,83,39,
+32,67,41,32,40,40,40,83,39,32,80,41,32,40,40,66,32,95,52,50,
+57,41,32,40,85,32,40,90,32,75,41,41,41,41,32,40,40,66,32,95,
+52,50,57,41,32,40,85,32,40,75,32,75,41,41,41,41,41,32,40,40,
+66,32,95,57,50,52,41,32,40,85,32,40,75,32,65,41,41,41,41,41,
+41,41,41,32,95,52,53,53,41,41,41,41,41,41,41,41,41,32,40,40,
+66,32,40,40,67,39,32,40,83,39,32,40,83,39,32,40,67,39,32,83,
+41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,40,
+83,39,32,83,39,41,32,40,40,67,32,60,41,32,35,50,41,41,41,41,
+41,41,32,40,40,40,83,39,32,40,67,39,32,40,67,39,32,40,83,39,
+32,83,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,
+40,40,83,39,32,83,39,41,32,40,40,67,32,60,41,32,35,52,41,41,
+41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,40,67,39,32,
+40,67,39,32,66,41,41,32,40,67,32,40,40,67,32,61,61,41,32,35,
+52,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,85,41,
+41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,66,
+32,90,41,41,32,40,40,40,67,39,32,66,41,32,66,41,32,40,40,40,
+67,39,32,40,83,39,32,95,57,51,51,41,41,32,40,40,67,39,32,95,
+57,49,56,41,32,40,40,66,32,95,57,49,55,41,32,40,40,67,32,95,
+49,48,56,52,41,32,34,61,61,34,41,41,41,41,32,40,40,66,32,95,
+57,49,55,41,32,40,40,67,32,95,49,48,56,52,41,32,34,84,114,117,
+101,34,41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,40,67,
+39,32,40,67,39,32,66,41,41,32,40,67,32,40,40,67,32,61,61,41,
+32,35,50,41,41,41,41,32,40,40,66,32,85,41,32,40,40,67,39,32,
+40,67,39,32,40,95,51,53,32,95,54,56,41,41,41,32,40,95,49,52,
+55,56,32,95,55,54,48,41,41,41,41,41,41,41,41,32,40,40,40,83,
+39,32,66,41,32,40,40,66,32,40,83,39,32,67,41,41,32,40,40,66,
+32,40,66,32,40,40,67,39,32,83,39,41,32,40,40,67,32,60,41,32,
+35,49,41,41,41,41,32,40,40,66,32,40,66,32,85,41,41,32,40,40,
+66,32,40,66,32,40,40,67,39,32,66,41,32,40,40,66,32,40,95,51,
+53,32,95,54,56,41,41,32,95,49,53,48,49,41,41,41,41,32,40,40,
+66,32,40,66,32,40,66,32,85,41,41,41,32,40,40,66,32,40,66,32,
+40,66,32,40,67,32,66,41,41,41,41,32,40,40,66,32,40,40,83,39,
+32,66,41,32,40,40,66,32,40,67,39,32,66,41,41,32,40,40,66,32,
+66,39,41,32,40,40,66,32,66,39,41,32,40,40,66,32,40,66,32,40,
+95,51,53,32,95,54,56,41,41,41,32,40,95,49,52,55,57,32,95,55,
+54,48,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
+40,66,32,40,66,32,40,66,32,85,41,41,41,41,41,41,32,40,40,66,
+32,40,66,32,40,40,67,39,32,66,41,32,40,66,39,32,40,66,39,32,
+40,40,66,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,40,
+95,51,53,32,95,54,56,41,41,41,32,40,67,32,95,49,53,48,48,41,
+41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,
+32,40,66,32,40,66,32,85,41,41,41,41,41,41,32,40,40,40,67,39,
+32,40,67,39,32,66,41,41,32,40,40,66,32,66,39,41,32,40,40,66,
+32,66,39,41,32,40,40,66,32,40,66,32,40,67,39,32,66,41,41,41,
+32,40,40,66,32,40,66,32,66,39,41,41,32,40,40,66,32,40,66,32,
+66,39,41,41,32,40,40,66,32,40,66,32,40,66,32,40,95,51,54,32,
+95,54,56,41,41,41,41,32,40,40,67,39,32,67,41,32,40,95,49,52,
+57,55,32,95,55,54,48,41,41,41,41,41,41,41,41,41,32,40,40,66,
+32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,95,51,55,
+32,95,54,56,41,41,41,41,41,41,41,32,40,40,40,67,39,32,40,67,
+39,32,66,41,41,32,40,40,66,32,40,66,32,40,67,39,32,40,67,39,
+32,66,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,
+67,41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,
+67,39,32,66,41,41,32,40,40,66,32,40,66,32,80,41,41,32,95,53,
+48,52,41,41,41,32,95,53,48,52,41,41,41,41,32,95,57,49,56,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,
+32,40,66,32,85,41,41,41,32,40,40,40,83,39,32,66,41,32,40,40,
+66,32,40,67,39,32,67,41,41,32,40,40,66,32,40,66,32,40,83,32,
+95,49,49,48,48,41,41,41,32,40,40,40,83,39,32,40,83,39,32,83,
+41,41,32,40,40,66,32,40,66,32,40,83,32,95,49,48,57,53,41,41,
+41,32,40,40,40,67,39,32,66,41,32,40,66,39,32,40,40,66,32,40,
+95,51,53,32,95,54,56,41,41,32,95,49,52,55,50,41,41,41,32,40,
+40,66,32,40,40,67,39,32,66,41,32,40,40,66,32,40,95,51,53,32,
+95,54,56,41,41,32,40,95,49,52,49,52,32,95,55,54,48,41,41,41,
+41,32,40,40,66,32,40,66,32,85,41,41,32,40,40,40,67,39,32,40,
+67,39,32,66,41,41,32,40,40,66,32,40,66,32,40,67,39,32,40,95,
+51,54,32,95,54,56,41,41,41,41,32,40,40,66,32,40,66,32,85,41,
+41,32,40,40,66,32,40,66,32,40,40,67,39,32,66,41,32,40,40,67,
+32,40,40,67,32,61,61,41,32,35,49,55,41,41,32,40,95,49,53,49,
+51,32,95,55,54,48,41,41,41,41,41,32,40,40,66,32,40,66,32,85,
+41,41,32,40,40,66,32,67,41,32,40,95,49,52,55,49,32,95,55,54,
+48,41,41,41,41,41,41,41,32,40,40,66,32,40,95,51,55,32,95,54,
+56,41,41,32,40,67,32,40,40,80,32,95,53,48,50,41,32,95,53,48,
+50,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,40,
+67,39,32,40,95,51,53,32,95,54,56,41,41,32,40,95,49,52,49,52,
+32,95,55,54,48,41,41,41,41,32,40,40,66,32,40,66,32,40,40,83,
+39,32,40,95,51,54,32,95,54,56,41,41,32,40,85,32,40,75,32,40,
+85,32,40,40,40,67,39,32,66,41,32,40,40,67,32,40,40,67,32,61,
+61,41,32,35,49,57,41,41,32,95,50,56,41,41,32,40,85,32,40,75,
+32,40,85,32,40,40,40,67,39,32,66,41,32,40,40,67,32,40,40,67,
+32,61,61,41,32,35,49,57,41,41,32,95,50,56,41,41,32,40,85,32,
+40,75,50,32,40,40,95,51,55,32,95,54,56,41,32,95,49,53,54,56,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,
+66,32,40,40,67,39,32,40,95,51,53,32,95,54,56,41,41,32,95,49,
+52,49,55,41,41,41,32,40,40,66,32,40,66,32,85,41,41,32,40,40,
+66,32,40,66,32,40,66,32,85,41,41,41,32,40,40,66,32,40,66,32,
+40,66,32,40,40,67,39,32,66,41,32,40,40,67,32,40,40,67,32,61,
+61,41,32,35,49,57,41,41,32,40,40,40,110,111,77,97,116,99,104,32,
+34,115,114,99,47,77,105,99,114,111,72,115,47,84,121,112,101,67,104,101,
+99,107,46,104,115,34,41,32,35,49,57,49,54,41,32,35,49,55,41,41,
+41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,85,41,41,41,32,
+40,40,66,32,40,66,32,40,66,32,40,40,67,39,32,40,83,39,32,40,
+95,51,53,32,95,54,56,41,41,41,32,95,49,53,49,57,41,41,41,41,
+32,40,40,66,32,40,66,32,40,66,32,40,66,32,85,41,41,41,41,32,
+40,40,66,32,40,40,83,39,32,40,67,39,32,40,67,39,32,66,41,41,
+41,32,40,40,66,32,40,66,32,40,66,32,40,67,39,32,40,95,51,53,
+32,95,54,56,41,41,41,41,41,32,40,40,66,32,40,40,83,39,32,40,
+67,39,32,67,41,41,32,40,40,66,32,40,66,32,40,67,32,95,49,51,
+57,55,41,41,41,32,40,40,66,32,40,66,32,40,95,51,55,32,95,54,
+56,41,41,41,32,40,40,66,32,67,41,32,40,80,32,95,53,48,50,41,
+41,41,41,41,41,32,40,40,66,32,40,66,32,85,41,41,32,40,40,40,
+67,39,32,66,41,32,40,66,39,32,40,66,39,32,40,40,66,32,40,95,
+51,53,32,95,54,56,41,41,32,95,49,52,56,50,41,41,41,41,32,40,
+40,66,32,40,66,32,40,66,32,40,66,32,40,95,51,55,32,95,54,56,
+41,41,41,41,41,32,40,40,66,32,40,66,32,40,67,39,32,67,41,41,
+41,32,40,40,66,32,40,40,67,39,32,40,83,39,32,80,41,41,32,40,
+40,40,67,39,32,40,67,39,32,79,41,41,32,40,67,32,80,41,41,32,
+75,41,41,41,32,40,40,40,67,39,32,66,41,32,95,57,49,56,41,32,
+95,57,49,55,41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,
+66,32,40,66,32,85,41,41,41,32,40,40,40,67,39,32,40,67,39,32,
+66,41,41,32,40,40,66,32,66,39,41,32,40,40,66,32,40,66,32,40,
+67,39,32,40,67,39,32,40,95,51,53,32,95,54,56,41,41,41,41,41,
+32,40,40,67,32,40,40,40,67,39,32,83,39,41,32,40,40,66,32,83,
+39,41,32,83,39,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,
+32,40,67,39,32,40,67,39,32,40,95,51,54,32,95,54,56,41,41,41,
+41,32,40,40,66,32,67,41,32,40,95,49,52,55,49,32,95,55,54,48,
+41,41,41,41,32,40,95,51,55,32,95,54,56,41,41,41,41,32,40,40,
+66,32,40,66,32,67,41,41,32,40,95,49,52,57,56,32,95,55,54,48,
+41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,95,51,
+55,32,95,54,56,41,41,41,41,32,40,40,66,32,40,66,32,67,41,41,
+32,80,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,95,51,53,32,95,
+54,56,41,41,32,95,49,52,55,50,41,41,32,40,90,32,40,40,66,32,
+40,95,51,55,32,95,54,56,41,41,32,40,67,32,40,40,80,32,95,53,
+48,50,41,32,95,53,48,50,41,41,41,41,41,41,41,41,41,41,41,41,
+32,40,40,66,32,40,95,50,56,50,32,95,50,55,41,41,32,40,40,66,
+32,40,95,53,48,52,32,34,116,99,80,97,116,58,32,34,41,41,32,40,
+40,40,83,39,32,95,53,48,52,41,32,40,40,66,32,40,95,49,56,52,
+50,32,95,49,48,55,54,41,41,32,40,95,57,55,57,32,95,57,56,50,
+41,41,41,32,40,40,66,32,40,95,53,48,52,32,40,40,79,32,35,51,
+50,41,32,75,41,41,41,32,40,95,49,56,52,50,32,95,49,48,49,53,
+41,41,41,41,41,41,41,32,40,95,57,55,57,32,95,57,56,50,41,41,
+41,41,32,40,40,65,32,58,49,53,48,51,32,40,40,40,83,39,32,95,
+50,56,50,41,32,40,40,66,32,40,95,52,56,32,95,54,56,41,41,32,
+40,95,52,57,56,32,95,49,48,55,56,41,41,41,32,40,40,66,32,40,
+40,40,83,39,32,95,50,56,50,41,32,40,40,66,32,40,95,49,50,57,
+49,32,95,55,54,48,41,41,32,40,95,57,55,57,32,95,57,56,49,41,
+41,41,32,40,40,66,32,40,95,53,48,52,32,34,77,117,108,116,105,112,
+108,121,32,100,101,102,105,110,101,100,58,32,34,41,41,32,95,49,48,56,
+56,41,41,41,32,95,52,54,56,41,41,41,32,40,40,65,32,58,49,53,
+48,52,32,40,40,66,32,89,41,32,40,40,40,83,39,32,40,67,39,32,
+83,41,41,32,40,40,66,32,40,66,32,40,67,32,66,41,41,41,32,40,
+40,40,83,39,32,40,83,39,32,40,83,39,32,83,41,41,41,32,40,40,
+66,32,40,66,32,40,66,32,40,40,83,39,32,83,39,41,32,40,40,67,
+32,60,41,32,35,49,53,41,41,41,41,41,32,40,40,40,67,39,32,66,
+41,32,40,40,66,32,40,83,39,32,83,41,41,32,40,40,66,32,40,66,
+32,40,40,83,39,32,83,39,41,32,40,40,67,32,60,41,32,35,49,56,
+41,41,41,41,32,40,40,66,32,40,40,67,39,32,40,67,39,32,66,41,
+41,32,40,67,32,40,40,67,32,61,61,41,32,35,49,56,41,41,41,41,
+32,40,40,66,32,85,41,32,40,40,40,67,39,32,83,41,32,40,40,40,
+67,39,32,40,83,39,32,67,41,41,32,40,40,40,83,39,32,66,41,32,
+40,40,66,32,83,41,32,40,95,53,57,51,32,95,51,49,53,41,41,41,
+32,40,40,40,67,39,32,66,41,32,40,40,66,32,67,41,32,40,40,40,
+67,39,32,67,41,32,40,95,53,57,53,32,95,51,49,53,41,41,32,40,
+40,95,51,55,32,95,54,56,41,32,95,49,53,54,56,41,41,41,41,32,
+40,40,40,67,39,32,95,50,56,50,41,32,40,40,66,32,40,95,49,50,
+57,49,32,95,55,54,48,41,41,32,40,95,57,55,57,32,95,57,56,53,
+41,41,41,32,34,116,111,111,32,109,97,110,121,32,97,114,103,117,109,101,
+110,116,115,34,41,41,41,41,32,40,40,40,67,39,32,40,95,49,50,57,
+49,32,95,55,54,48,41,41,32,40,95,57,55,57,32,95,57,56,53,41,
+41,32,34,116,111,111,32,102,101,119,32,97,114,103,117,109,101,110,116,115,
+34,41,41,41,32,95,57,52,56,41,41,41,41,41,41,32,40,40,66,32,
+40,40,67,39,32,40,67,39,32,66,41,41,32,40,67,32,40,40,67,32,
+61,61,41,32,35,49,53,41,41,41,41,32,40,40,66,32,85,41,32,75,
+41,41,41,41,41,32,40,40,66,32,40,40,67,39,32,40,83,39,32,83,
+41,41,32,40,40,66,32,40,66,32,40,40,83,39,32,83,39,41,32,40,
+40,67,32,60,41,32,35,49,51,41,41,41,41,32,40,40,66,32,40,40,
+67,39,32,40,67,39,32,66,41,41,32,40,67,32,40,40,67,32,61,61,
+41,32,35,49,51,41,41,41,41,32,40,40,66,32,85,41,32,90,41,41,
+41,41,41,32,40,40,66,32,40,40,67,39,32,40,67,39,32,66,41,41,
+32,40,67,32,40,40,67,32,61,61,41,32,35,49,41,41,41,41,32,40,
+40,66,32,85,41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,
+40,40,66,32,40,66,32,40,95,51,54,32,95,54,56,41,41,41,32,40,
+40,66,32,95,49,53,48,52,41,32,40,40,67,32,40,95,53,55,53,32,
+95,51,49,48,41,41,32,35,49,41,41,41,41,32,40,95,49,53,48,52,
+32,35,48,41,41,41,41,41,41,41,41,32,40,40,66,32,40,83,32,40,
+40,67,32,40,40,40,67,39,32,67,39,41,32,66,41,32,40,40,40,83,
+39,32,40,83,39,32,83,41,41,32,40,40,66,32,40,66,32,40,40,83,
+39,32,83,39,41,32,40,40,67,32,60,41,32,35,56,41,41,41,41,32,
+40,40,40,83,39,32,40,83,39,32,83,41,41,32,40,40,66,32,40,66,
+32,40,40,83,39,32,83,39,41,32,40,40,67,32,60,41,32,35,49,52,
+41,41,41,41,32,40,40,40,83,39,32,40,83,39,32,83,41,41,32,40,
+40,66,32,40,66,32,40,40,83,39,32,83,39,41,32,40,40,67,32,60,
+41,32,35,49,54,41,41,41,41,32,40,40,66,32,40,40,67,39,32,40,
+67,39,32,66,41,41,32,40,67,32,40,40,67,32,61,61,41,32,35,49,
+54,41,41,41,41,32,40,40,66,32,85,41,32,40,90,32,75,41,41,41,
+41,41,32,40,40,66,32,40,40,67,39,32,40,67,39,32,66,41,41,32,
+40,67,32,40,40,67,32,61,61,41,32,35,49,52,41,41,41,41,32,40,
+40,66,32,85,41,32,75,41,41,41,41,41,32,40,40,66,32,40,40,83,
+39,32,40,67,39,32,66,41,41,32,40,67,32,40,40,67,32,61,61,41,
+32,35,56,41,41,41,41,32,40,40,66,32,40,66,32,85,41,41,32,40,
+40,66,32,40,66,32,85,41,41,32,40,40,66,32,40,40,67,39,32,40,
+67,39,32,66,41,41,32,40,67,32,40,40,67,32,61,61,41,32,35,48,
+41,41,41,41,32,40,40,66,32,85,41,32,75,41,41,41,41,41,41,41,
+41,32,40,40,40,83,39,32,40,83,39,32,83,41,41,32,40,40,66,32,
+40,66,32,40,40,83,39,32,83,39,41,32,40,40,67,32,60,41,32,35,
+52,41,41,41,41,32,40,40,40,83,39,32,66,41,32,40,40,66,32,83,
+41,32,40,40,66,32,40,40,67,39,32,83,39,41,32,40,40,67,32,60,
+41,32,35,55,41,41,41,32,40,40,66,32,85,41,32,75,41,41,41,41,
+32,40,40,66,32,40,40,67,39,32,40,67,39,32,66,41,41,32,40,67,
+32,40,40,67,32,61,61,41,32,35,52,41,41,41,41,32,40,40,66,32,
+85,41,32,40,90,32,75,41,41,41,41,41,41,32,40,40,66,32,40,40,
+67,39,32,40,67,39,32,66,41,41,32,40,67,32,40,40,67,32,61,61,
+41,32,35,48,41,41,41,41,32,40,40,66,32,85,41,32,75,41,41,41,
+41,41,41,32,40,95,49,53,49,51,32,95,55,54,48,41,41,41,41,32,
+40,40,40,67,39,32,66,41,32,40,40,67,32,40,40,67,32,40,95,50,
+50,52,32,95,51,49,52,41,41,32,35,48,41,41,32,40,40,95,51,55,
+32,95,54,56,41,32,95,49,53,54,56,41,41,41,32,40,40,40,67,39,
+32,40,95,49,50,57,49,32,95,55,54,48,41,41,32,40,95,57,55,57,
+32,95,57,56,50,41,41,32,34,66,97,100,32,112,97,116,116,101,114,110,
+34,41,41,41,41,41,41,32,40,40,65,32,58,49,53,48,53,32,40,40,
+40,83,39,32,40,67,39,32,40,40,83,39,32,40,95,51,54,32,95,54,
+56,41,41,32,95,49,53,48,51,41,41,41,32,40,40,40,83,39,32,66,
+41,32,40,40,66,32,40,67,39,32,40,95,51,53,32,95,54,56,41,41,
+41,32,40,40,66,32,40,95,52,54,32,95,54,56,41,41,32,40,40,66,
+32,95,49,53,48,54,41,32,40,40,66,32,95,49,49,49,48,41,32,40,
+95,52,51,48,32,40,40,67,32,40,40,80,32,40,75,50,32,75,41,41,
+32,40,75,50,32,75,41,41,41,32,40,40,40,67,39,32,40,67,39,32,
+79,41,41,32,80,41,32,75,41,41,41,41,41,41,41,41,32,40,40,66,
+32,40,66,32,40,40,67,39,32,95,50,56,50,41,32,40,95,49,52,50,
+56,32,95,55,54,48,41,41,41,41,32,40,40,66,32,40,95,51,53,32,
+95,54,56,41,41,32,40,40,95,52,54,32,95,54,56,41,32,95,49,53,
+48,55,41,41,41,41,41,32,95,49,48,53,48,41,41,32,40,40,65,32,
+58,49,53,48,54,32,40,40,40,67,39,32,83,41,32,40,40,40,67,39,
+32,83,41,32,40,67,32,95,49,49,49,52,41,41,32,40,40,66,32,40,
+40,95,51,53,32,95,54,56,41,32,95,49,52,48,57,41,41,32,40,40,
+66,32,40,66,32,40,95,51,55,32,95,54,56,41,41,41,32,80,41,41,
+41,41,32,40,40,66,32,40,40,67,39,32,40,95,51,53,32,95,54,56,
+41,41,32,40,40,66,32,40,95,50,56,50,32,95,49,51,54,55,41,41,
+32,40,40,95,49,52,54,50,32,95,55,54,48,41,32,40,95,49,52,54,
+53,32,95,57,55,51,41,41,41,41,41,32,40,40,66,32,40,66,32,40,
+95,51,55,32,95,54,56,41,41,41,32,80,41,41,41,41,32,40,40,65,
+32,58,49,53,48,55,32,40,40,83,32,40,40,80,32,40,40,40,83,39,
+32,66,41,32,40,40,66,32,40,95,51,53,32,95,54,56,41,41,32,40,
+95,49,52,49,52,32,95,55,54,48,41,41,41,32,40,40,66,32,40,66,
+32,85,41,41,32,40,40,66,32,90,41,32,40,40,66,32,40,40,67,39,
+32,40,67,39,32,40,95,51,53,32,95,54,56,41,41,41,32,40,67,32,
+40,95,49,52,56,55,32,95,49,51,52,41,41,41,41,32,40,40,66,32,
+40,66,32,40,95,50,56,50,32,40,95,51,55,32,95,54,56,41,41,41,
+41,32,95,57,54,50,41,41,41,41,41,41,32,40,40,40,83,39,32,66,
+41,32,40,40,66,32,40,95,51,53,32,95,54,56,41,41,32,95,49,53,
+48,49,41,41,32,40,40,66,32,40,66,32,85,41,41,32,40,40,66,32,
+40,66,32,40,67,32,66,41,41,41,32,40,40,40,67,39,32,66,41,32,
+40,66,39,32,40,40,66,32,40,67,39,32,40,67,39,32,66,41,41,41,
+32,40,40,66,32,40,66,32,40,66,32,40,95,51,54,32,95,54,56,41,
+41,41,41,32,40,40,66,32,40,40,67,39,32,40,67,39,32,95,50,56,
+50,41,41,32,40,40,66,32,40,66,32,40,95,52,56,32,95,54,56,41,
+41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,95,49,51,48,
+41,32,40,40,66,32,95,49,51,50,41,32,95,52,50,56,41,41,41,32,
+40,40,66,32,95,49,51,50,41,32,95,52,50,56,41,41,41,41,41,32,
+40,40,40,67,39,32,40,95,49,50,57,49,32,95,55,54,48,41,41,32,
+40,95,57,55,57,32,95,57,56,50,41,41,32,34,101,120,105,115,116,101,
+110,116,105,97,108,115,32,110,111,116,32,97,108,108,111,119,101,100,32,105,
+110,32,112,97,116,116,101,114,110,32,98,105,110,100,105,110,103,34,41,41,
+41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,40,
+40,66,32,40,66,32,40,95,51,53,32,95,54,56,41,41,41,32,40,67,
+32,95,49,52,57,53,41,41,41,32,40,40,66,32,40,66,32,40,95,50,
+56,50,32,40,95,51,55,32,95,54,56,41,41,41,41,32,95,57,54,51,
+41,41,41,41,41,41,41,41,32,40,90,32,40,90,32,40,95,51,55,32,
+95,54,56,41,41,41,41,41,32,40,40,65,32,58,49,53,48,56,32,40,
+40,67,32,40,40,83,32,66,41,32,40,40,40,83,39,32,40,83,39,32,
+83,41,41,32,40,40,66,32,40,66,32,40,40,83,39,32,83,39,41,32,
+40,40,67,32,60,41,32,35,55,41,41,41,41,32,40,40,66,32,40,40,
+83,39,32,83,41,32,40,40,66,32,40,40,83,39,32,83,39,41,32,40,
+40,67,32,60,41,32,35,49,51,41,41,41,32,40,40,66,32,40,83,32,
+40,40,40,67,39,32,83,39,41,32,40,40,67,32,60,41,32,35,49,57,
+41,41,32,40,85,32,40,40,40,67,39,32,66,41,32,95,57,51,54,41,
+32,95,49,53,48,56,41,41,41,41,41,32,40,40,40,67,39,32,40,67,
+39,32,66,41,41,32,40,67,32,40,40,67,32,61,61,41,32,35,49,51,
+41,41,41,32,40,85,32,40,40,66,32,95,57,51,48,41,32,95,49,53,
+48,56,41,41,41,41,41,41,41,32,40,40,40,83,39,32,40,67,39,32,
+67,41,41,32,40,40,66,32,40,66,32,40,40,83,39,32,83,39,41,32,
+40,40,67,32,60,41,32,35,56,41,41,41,41,32,40,40,66,32,40,40,
+83,39,32,40,67,39,32,66,41,41,32,40,67,32,40,40,67,32,61,61,
+41,32,35,56,41,41,41,41,32,40,40,66,32,40,66,32,85,41,41,32,
+40,40,66,32,40,66,32,85,41,41,32,40,40,66,32,40,40,83,39,32,
+40,67,39,32,66,41,41,32,40,67,32,40,40,67,32,61,61,41,32,35,
+48,41,41,41,41,32,40,40,66,32,40,66,32,85,41,41,32,40,40,66,
+32,40,83,32,80,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,
+32,40,67,39,32,80,41,41,32,40,40,40,67,39,32,66,41,32,40,40,
+66,32,95,49,51,57,49,41,32,40,40,66,32,95,49,53,49,49,41,32,
+40,95,57,55,57,32,95,57,56,50,41,41,41,41,32,95,49,53,48,56,
+41,41,41,32,40,90,32,75,41,41,41,41,41,41,41,41,41,41,32,40,
+40,66,32,85,41,32,40,40,40,67,39,32,40,83,39,32,95,49,51,57,
+50,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,95,57,55,
+53,41,32,40,95,57,55,57,32,95,57,56,50,41,41,41,32,95,52,52,
+57,41,41,32,40,95,52,51,49,32,95,49,53,48,56,41,41,41,41,41,
+41,41,32,40,40,40,83,39,32,40,67,39,32,83,41,41,32,40,40,66,
+32,40,66,32,40,40,83,39,32,83,39,41,32,40,40,67,32,60,41,32,
+35,50,41,41,41,41,32,40,40,40,67,39,32,40,83,39,32,83,41,41,
+32,40,40,66,32,40,66,32,40,40,83,39,32,83,39,41,32,40,40,67,
+32,60,41,32,35,52,41,41,41,41,32,40,40,66,32,40,40,83,39,32,
+40,67,39,32,66,41,41,32,40,67,32,40,40,67,32,61,61,41,32,35,
+52,41,41,41,41,32,40,40,66,32,40,66,32,85,41,41,32,40,40,66,
+32,90,41,32,40,40,66,32,40,66,32,85,41,41,32,40,40,40,83,39,
+32,40,83,39,32,83,41,41,32,40,40,66,32,40,66,32,40,40,83,39,
+32,83,39,41,32,40,40,67,32,60,41,32,35,53,41,41,41,41,32,40,
+40,66,32,40,40,67,39,32,40,67,39,32,66,41,41,32,40,67,32,40,
+40,67,32,61,61,41,32,35,53,41,41,41,41,32,40,40,66,32,85,41,
+32,75,41,41,41,41,32,40,40,66,32,40,40,67,39,32,40,67,39,32,
+66,41,41,32,40,67,32,40,40,67,32,61,61,41,32,35,49,41,41,41,
+41,32,40,40,66,32,85,41,32,75,41,41,41,41,41,41,41,41,41,32,
+40,40,40,67,39,32,40,67,39,32,66,41,41,32,40,67,32,40,40,67,
+32,61,61,41,32,35,50,41,41,41,32,40,85,32,40,40,40,67,39,32,
+66,41,32,40,40,66,32,95,57,49,57,41,32,95,49,53,48,56,41,41,
+32,40,95,52,51,48,32,40,85,32,40,40,40,67,39,32,40,67,39,32,
+79,41,41,32,40,40,40,67,39,32,66,41,32,80,41,32,95,49,53,48,
+56,41,41,32,75,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,
+67,32,40,40,40,67,39,32,83,39,41,32,40,40,67,32,60,41,32,35,
+49,41,41,32,40,85,32,40,40,40,67,39,32,66,41,32,40,40,66,32,
+95,57,49,56,41,32,95,49,53,48,56,41,41,32,95,49,53,48,56,41,
+41,41,41,41,32,40,40,66,32,85,41,32,75,41,41,41,41,41,41,32,
+40,95,49,53,49,51,32,95,55,54,48,41,41,41,32,40,40,65,32,58,
+49,53,48,57,32,40,40,66,32,40,95,50,56,52,32,95,49,51,56,57,
+41,41,32,95,49,48,56,52,41,41,32,40,40,65,32,58,49,53,49,48,
+32,40,40,40,67,39,32,95,50,56,50,41,32,95,49,48,56,52,41,32,
+40,40,95,53,48,52,32,95,49,50,57,56,41,32,34,91,93,34,41,41,
+41,32,40,40,65,32,58,49,53,49,49,32,40,40,95,50,56,52,32,95,
+49,51,56,57,41,32,95,49,53,49,48,41,41,32,40,40,65,32,58,49,
+53,49,50,32,40,40,40,67,39,32,95,50,56,50,41,32,95,49,53,48,
+57,41,32,40,40,95,53,48,52,32,95,49,50,57,55,41,32,34,66,111,
+111,108,34,41,41,41,32,40,40,65,32,58,49,53,49,51,32,40,75,32,
+40,95,50,55,32,34,105,109,112,111,115,115,105,98,108,101,34,41,41,41,
+32,40,40,65,32,58,49,53,49,52,32,40,75,32,40,40,66,32,40,66,
+32,40,95,50,56,50,32,95,50,55,41,41,41,32,40,40,66,32,40,66,
+32,40,95,53,48,52,32,34,105,109,112,111,115,115,105,98,108,101,58,32,
+34,41,41,41,32,40,40,40,83,39,32,40,83,39,32,95,53,48,52,41,
+41,32,40,40,66,32,40,66,32,40,95,49,56,52,50,32,95,49,48,55,
+54,41,41,41,32,40,40,66,32,95,57,55,57,41,32,40,85,32,65,41,
+41,41,41,32,40,40,66,32,40,66,32,40,95,53,48,52,32,40,40,79,
+32,35,51,50,41,32,75,41,41,41,41,32,40,40,66,32,95,49,56,52,
+50,41,32,40,85,32,75,41,41,41,41,41,41,41,41,32,40,40,65,32,
+58,49,53,49,53,32,40,40,66,32,85,41,32,40,40,66,32,90,41,32,
+40,40,66,32,90,41,32,40,40,66,32,90,41,32,40,40,66,32,90,41,
+32,40,40,66,32,90,41,32,40,40,66,32,90,41,32,40,40,66,32,40,
+66,32,40,66,32,40,95,53,48,52,32,34,84,109,111,100,117,108,101,32,
+34,41,41,41,41,32,40,40,66,32,40,40,67,39,32,66,41,32,40,40,
+66,32,95,53,48,52,41,32,95,49,48,56,56,41,41,41,32,40,40,66,
+32,40,66,32,40,95,53,48,52,32,40,40,79,32,35,49,48,41,32,75,
+41,41,41,41,32,40,40,67,32,40,67,39,32,95,53,48,52,41,41,32,
+40,40,79,32,35,49,48,41,32,75,41,41,41,41,41,41,41,41,41,41,
+41,41,41,32,40,40,65,32,58,49,53,49,54,32,40,40,40,67,39,32,
+40,95,51,53,32,95,54,56,41,41,32,40,40,95,52,54,32,95,54,56,
+41,32,95,49,52,48,50,41,41,32,40,40,66,32,40,95,51,55,32,95,
+54,56,41,41,32,95,49,53,50,50,41,41,41,32,40,40,65,32,58,49,
+53,49,55,32,40,40,40,67,39,32,40,95,51,53,32,95,54,56,41,41,
+32,40,40,95,52,54,32,95,54,56,41,32,95,49,52,48,50,41,41,32,
+40,40,66,32,40,95,51,55,32,95,54,56,41,41,32,95,49,53,50,51,
+41,41,41,32,40,40,65,32,58,49,53,49,56,32,40,95,55,52,32,40,
+40,95,50,56,52,32,40,95,52,51,49,32,95,49,51,50,48,41,41,32,
+40,40,95,50,56,52,32,95,49,53,54,50,41,32,95,49,51,52,49,41,
+41,41,41,32,40,40,65,32,58,49,53,49,57,32,40,40,40,83,39,32,
+66,41,32,40,40,66,32,40,95,51,53,32,95,54,56,41,41,32,40,40,
+95,52,54,32,95,54,56,41,32,40,40,95,50,56,52,32,95,49,53,50,
+49,41,32,95,57,55,50,41,41,41,41,32,40,40,66,32,40,66,32,40,
+66,32,40,95,51,55,32,95,54,56,41,41,41,41,32,40,40,66,32,40,
+66,32,40,83,32,80,41,41,41,32,40,40,66,32,40,67,39,32,95,57,
+57,54,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,95,52,
+53,48,41,32,40,95,52,51,49,32,95,57,55,50,41,41,41,32,40,95,
+52,51,49,32,95,57,49,55,41,41,41,41,41,41,41,32,40,40,65,32,
+58,49,53,50,48,32,40,75,32,40,89,32,40,40,66,32,40,83,32,73,
+41,41,32,40,40,40,83,39,32,66,41,32,40,40,66,32,83,41,32,40,
+40,66,32,40,40,67,39,32,83,39,41,32,40,40,67,32,60,41,32,35,
+49,57,41,41,41,32,40,40,66,32,85,41,32,40,40,66,32,40,40,67,
+39,32,40,67,39,32,40,95,51,53,32,95,54,56,41,41,41,32,95,49,
+53,49,57,41,41,32,40,40,66,32,85,41,32,40,40,40,67,39,32,66,
+41,32,40,67,39,32,40,95,51,53,32,95,54,56,41,41,41,32,40,40,
+66,32,85,41,32,40,40,66,32,40,66,32,40,66,32,40,95,51,55,32,
+95,54,56,41,41,41,41,32,40,40,66,32,40,66,32,80,41,41,32,95,
+53,48,52,41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,40,
+83,39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,67,32,40,40,
+67,32,61,61,41,32,35,49,41,41,41,32,40,40,66,32,40,95,51,55,
+32,95,54,56,41,41,32,40,80,32,95,53,48,50,41,41,41,41,41,32,
+40,40,66,32,40,66,32,85,41,41,32,40,40,40,83,39,32,67,41,32,
+40,40,66,32,40,40,67,39,32,67,39,41,32,40,40,66,32,67,39,41,
+32,95,49,51,57,54,41,41,41,32,40,40,40,83,39,32,40,67,39,32,
+66,41,41,32,40,66,32,40,95,51,53,32,95,54,56,41,41,41,32,40,
+40,66,32,40,66,32,85,41,41,32,40,40,40,67,39,32,40,67,39,32,
+66,41,41,32,40,40,66,32,66,39,41,32,40,66,32,40,95,51,53,32,
+95,54,56,41,41,41,41,32,40,40,66,32,40,66,32,85,41,41,32,40,
+40,66,32,40,66,32,40,66,32,40,66,32,40,95,51,55,32,95,54,56,
+41,41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,
+67,39,32,66,41,41,32,40,40,66,32,40,66,32,80,41,41,32,95,53,
+48,52,41,41,41,32,95,57,49,56,41,41,41,41,41,41,41,41,32,40,
+40,66,32,85,41,32,40,40,40,67,39,32,66,41,32,40,67,39,32,40,
+95,51,53,32,95,54,56,41,41,41,32,40,40,66,32,85,41,32,40,40,
+66,32,40,66,32,40,66,32,40,95,51,55,32,95,54,56,41,41,41,41,
+32,40,40,66,32,40,40,67,39,32,66,41,32,80,41,41,32,95,49,51,
+57,51,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,65,32,
+58,49,53,50,49,32,40,40,66,32,40,40,95,51,53,32,95,54,56,41,
+32,95,49,52,49,48,41,41,32,40,40,66,32,40,66,32,40,95,51,55,
+32,95,54,56,41,41,41,32,40,40,40,83,39,32,66,41,32,40,40,66,
+32,95,49,48,56,52,41,32,40,95,57,55,57,32,95,57,56,49,41,41,
+41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,95,53,48,52,41,
+32,95,49,48,56,54,41,41,32,40,40,66,32,40,95,53,48,52,32,40,
+40,79,32,35,51,53,41,32,75,41,41,41,32,40,95,49,56,52,50,32,
+95,51,49,54,41,41,41,41,41,41,41,32,40,40,65,32,58,49,53,50,
+50,32,40,40,95,52,51,51,32,40,40,89,32,40,40,66,32,40,66,32,
+40,67,32,66,41,41,41,32,40,40,40,83,39,32,40,83,39,32,40,83,
+39,32,83,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,40,83,
+39,32,83,39,41,32,40,40,67,32,60,41,32,35,49,55,41,41,41,41,
+41,32,40,40,40,67,39,32,40,67,39,32,40,83,39,32,83,41,41,41,
+32,40,40,66,32,40,66,32,40,66,32,40,40,67,39,32,83,39,41,32,
+40,40,67,32,60,41,32,35,49,57,41,41,41,41,41,32,40,40,66,32,
+40,66,32,40,66,32,85,41,41,41,32,40,40,66,32,40,66,32,40,67,
+39,32,67,41,41,41,32,40,40,40,67,39,32,66,41,32,66,41,32,40,
+40,67,39,32,95,53,48,52,41,32,40,95,52,51,49,32,95,57,55,50,
+41,41,41,41,41,41,41,32,40,40,66,32,40,40,67,39,32,66,41,32,
+40,40,67,32,40,40,67,32,61,61,41,32,35,49,55,41,41,32,95,50,
+56,41,41,41,32,40,40,66,32,85,41,32,75,41,41,41,41,41,32,40,
+40,40,67,39,32,40,83,39,32,40,83,39,32,67,41,41,41,32,40,40,
+66,32,40,66,32,40,66,32,40,40,83,39,32,83,39,41,32,40,40,67,
+32,60,41,32,35,49,41,41,41,41,41,32,40,40,66,32,40,66,32,40,
+66,32,40,40,67,39,32,66,41,32,40,40,67,32,40,40,67,32,61,61,
+41,32,35,49,41,41,32,95,50,56,41,41,41,41,41,32,40,40,66,32,
+40,66,32,40,66,32,85,41,41,41,32,40,40,40,83,39,32,40,83,39,
+32,66,41,41,32,40,66,32,40,67,39,32,66,41,41,41,32,40,66,32,
+67,41,41,41,41,41,41,32,40,40,66,32,40,66,32,85,41,41,32,40,
+40,40,67,39,32,40,83,39,32,67,41,41,32,40,40,40,67,39,32,66,
+41,32,40,40,66,32,83,41,32,40,67,32,40,95,52,55,50,32,95,49,
+48,55,56,41,41,41,41,32,40,40,40,83,39,32,67,41,32,40,40,40,
+83,39,32,83,41,32,40,67,32,40,95,52,55,50,32,95,49,48,55,56,
+41,41,41,32,40,40,40,83,39,32,67,41,32,40,40,66,32,40,83,32,
+95,49,48,57,53,41,41,32,40,67,32,95,53,48,51,41,41,41,32,73,
+41,41,41,32,73,41,41,41,32,73,41,41,41,41,41,41,32,95,53,48,
+50,41,41,32,95,53,48,50,41,41,32,40,40,65,32,58,49,53,50,51,
+32,40,40,95,52,51,51,32,40,89,32,40,40,40,67,39,32,67,41,32,
+40,40,66,32,40,40,67,39,32,67,39,41,32,66,41,41,32,40,40,40,
+83,39,32,40,83,39,32,40,83,39,32,83,41,41,41,32,40,40,66,32,
+40,66,32,40,66,32,40,40,83,39,32,83,39,41,32,40,40,67,32,60,
+41,32,35,52,41,41,41,41,41,32,40,40,40,67,39,32,40,83,39,32,
+40,83,39,32,83,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,
+40,83,39,32,83,39,41,32,40,40,67,32,60,41,32,35,49,55,41,41,
+41,41,41,32,40,40,40,67,39,32,40,83,39,32,66,41,41,32,40,40,
+66,32,40,66,32,83,41,41,32,40,40,66,32,40,66,32,40,40,67,39,
+32,83,39,41,32,40,40,67,32,60,41,32,35,49,57,41,41,41,41,32,
+40,40,66,32,40,66,32,85,41,41,32,40,40,66,32,90,41,32,67,41,
+41,41,41,41,32,40,40,66,32,40,40,67,39,32,40,67,39,32,66,41,
+41,32,40,67,32,40,40,67,32,61,61,41,32,35,49,55,41,41,41,41,
+32,40,40,66,32,85,41,32,40,40,40,83,39,32,67,41,32,40,40,40,
+83,39,32,83,41,32,40,67,32,40,95,52,55,50,32,95,51,49,52,41,
+41,41,32,40,67,32,95,53,48,51,41,41,41,32,73,41,41,41,41,41,
+41,32,40,40,66,32,40,40,67,39,32,40,67,39,32,66,41,41,32,40,
+67,32,40,40,67,32,61,61,41,32,35,52,41,41,41,41,32,40,40,66,
+32,85,41,32,40,90,32,75,41,41,41,41,41,41,32,40,40,40,67,39,
+32,40,83,39,32,40,67,39,32,67,41,41,41,32,40,40,66,32,40,66,
+32,40,66,32,40,40,83,39,32,83,39,41,32,40,40,67,32,60,41,32,
+35,49,41,41,41,41,41,32,40,40,66,32,40,66,32,40,40,67,39,32,
+40,67,39,32,66,41,41,32,40,67,32,40,40,67,32,61,61,41,32,35,
+49,41,41,41,41,41,32,40,40,66,32,40,66,32,85,41,41,32,40,40,
+40,83,39,32,66,41,32,40,67,39,32,66,41,41,32,67,41,41,41,41,
+41,32,40,40,66,32,85,41,32,75,41,41,41,41,41,32,40,95,49,53,
+49,51,32,95,55,54,48,41,41,41,41,32,95,53,48,50,41,41,32,40,
+40,65,32,58,49,53,50,52,32,40,40,40,83,39,32,66,41,32,40,40,
+66,32,40,83,39,32,40,95,51,53,32,95,54,56,41,41,41,32,95,49,
+53,50,48,41,41,32,40,40,66,32,40,66,32,40,66,32,85,41,41,41,
+32,40,40,40,83,39,32,40,83,39,32,66,41,41,32,40,40,66,32,66,
+39,41,32,40,40,66,32,40,66,32,40,67,39,32,40,95,51,53,32,95,
+54,56,41,41,41,41,32,40,40,66,32,67,41,32,95,49,52,54,57,41,
+41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,67,41,
+41,41,32,40,40,66,32,40,66,32,40,66,32,40,40,83,39,32,83,39,
+41,32,95,52,50,56,41,41,41,41,32,40,40,66,32,40,66,32,40,66,
+32,40,66,32,40,66,32,40,40,95,51,53,32,95,54,56,41,32,95,49,
+53,49,56,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,40,67,
+39,32,66,41,32,40,66,39,32,40,40,66,32,40,67,39,32,40,95,51,
+53,32,95,54,56,41,41,41,32,40,40,66,32,40,66,32,95,49,53,49,
+54,41,41,32,95,53,48,51,41,41,41,41,41,41,32,40,40,40,67,39,
+32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,40,67,39,32,
+66,41,41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,40,
+40,66,32,40,66,32,40,67,39,32,40,95,51,54,32,95,54,56,41,41,
+41,41,32,40,40,66,32,40,66,32,40,40,83,39,32,95,50,56,50,41,
+32,40,40,66,32,40,95,52,56,32,95,54,56,41,41,32,40,40,66,32,
+95,49,51,50,41,32,95,52,50,56,41,41,41,41,41,32,40,40,40,67,
+39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,95,50,56,
+50,41,41,32,40,40,40,67,39,32,66,41,32,95,49,52,48,51,41,32,
+40,95,57,55,57,32,95,57,56,50,41,41,41,41,32,40,40,66,32,40,
+95,53,48,52,32,34,110,111,116,32,112,111,108,121,109,111,114,112,104,105,
+99,32,101,110,111,117,103,104,58,32,34,41,41,32,40,40,66,32,95,49,
+56,54,49,41,32,40,95,52,51,49,32,95,49,48,56,56,41,41,41,41,
+41,41,41,32,40,95,51,55,32,95,54,56,41,41,41,41,32,40,40,67,
+39,32,95,52,51,50,41,32,40,67,32,40,95,52,55,50,32,95,49,48,
+55,56,41,41,41,41,41,41,41,41,32,40,95,51,55,32,95,54,56,41,
+41,41,41,41,41,32,40,40,65,32,58,49,53,50,53,32,40,40,66,32,
+89,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,83,32,66,
+41,41,41,41,41,32,40,40,40,83,39,32,40,83,39,32,40,83,39,32,
+40,83,39,32,40,83,39,32,40,83,39,32,40,67,39,32,66,41,41,41,
+41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
+32,40,66,32,40,67,32,40,40,67,32,61,61,41,32,35,49,57,41,41,
+41,41,41,41,41,41,32,40,40,40,83,39,32,66,41,32,40,40,66,32,
+40,83,39,32,40,83,39,32,83,41,41,41,32,40,40,66,32,40,66,32,
+40,66,32,40,40,83,39,32,83,39,41,32,95,49,51,57,55,41,41,41,
+41,32,40,40,40,83,39,32,40,83,39,32,40,83,39,32,40,83,39,32,
+67,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,
+83,32,95,49,51,57,54,41,41,41,41,41,32,40,40,40,83,39,32,40,
+83,39,32,40,83,39,32,67,41,41,41,32,40,40,66,32,40,66,32,40,
+66,32,40,40,83,39,32,83,39,41,32,95,49,51,57,54,41,41,41,41,
+32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,
+66,32,40,67,39,32,40,67,39,32,40,95,51,54,32,95,54,56,41,41,
+41,41,41,32,95,49,52,48,52,41,41,32,40,95,51,55,32,95,54,56,
+41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,85,41,
+41,41,41,32,40,40,40,83,39,32,40,83,39,32,66,41,41,32,40,40,
+66,32,40,66,32,40,67,39,32,66,41,41,41,32,40,40,66,32,40,66,
+32,66,39,41,41,32,40,40,66,32,40,66,32,40,66,32,40,95,51,53,
+32,95,54,56,41,41,41,41,32,95,49,52,55,57,41,41,41,41,32,40,
+40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,85,41,41,41,41,
+41,32,95,49,53,50,54,41,41,41,41,41,41,32,40,40,66,32,40,66,
+32,40,66,32,40,66,32,85,41,41,41,41,32,40,40,40,83,39,32,40,
+83,39,32,66,41,41,32,40,40,66,32,40,66,32,40,67,39,32,66,41,
+41,41,32,40,40,66,32,40,66,32,66,39,41,41,32,40,40,66,32,40,
+66,32,40,66,32,40,95,51,53,32,95,54,56,41,41,41,41,32,95,49,
+52,55,57,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,
+32,40,66,32,85,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,
+32,40,66,32,40,67,39,32,67,41,41,41,41,41,32,40,40,66,32,40,
+66,32,40,66,32,40,67,39,32,67,41,41,41,41,32,95,49,53,50,54,
+41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
+40,66,32,40,66,32,90,41,41,41,41,41,32,40,40,40,67,39,32,66,
+41,32,40,66,39,32,40,40,66,32,40,67,39,32,40,67,39,32,66,41,
+41,41,32,40,40,66,32,40,66,32,40,66,32,40,95,51,53,32,95,54,
+56,41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,66,39,32,95,
+49,52,49,53,41,41,32,80,41,41,41,41,41,32,40,40,66,32,40,66,
+32,40,66,32,85,41,41,41,32,40,66,32,40,67,39,32,67,41,41,41,
+41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,
+66,32,40,66,32,85,41,41,41,41,41,41,32,40,40,66,32,40,66,32,
+40,66,32,40,66,32,40,66,32,90,41,41,41,41,41,32,40,40,66,32,
+40,66,32,40,66,32,40,66,32,40,66,32,90,41,41,41,41,41,32,40,
+40,40,67,39,32,66,41,32,40,66,39,32,40,40,66,32,40,67,39,32,
+40,67,39,32,66,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,
+95,51,53,32,95,54,56,41,41,41,41,32,40,40,40,67,39,32,66,41,
+32,40,66,39,32,95,49,52,49,53,41,41,32,80,41,41,41,41,41,32,
+40,40,66,32,40,66,32,40,66,32,85,41,41,41,32,40,66,32,40,67,
+39,32,67,41,41,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,
+49,53,50,54,32,40,40,40,83,39,32,40,83,39,32,66,41,41,32,40,
+40,66,32,40,66,32,40,67,39,32,66,41,41,41,32,40,40,66,32,40,
+66,32,40,66,32,40,67,39,32,66,41,41,41,41,32,40,40,66,32,40,
+66,32,40,66,32,40,66,32,40,95,51,53,32,95,54,56,41,41,41,41,
+41,32,40,40,66,32,40,66,32,67,41,41,32,40,40,40,67,39,32,67,
+41,32,95,49,52,57,56,41,32,95,50,56,41,41,41,41,41,41,32,40,
+40,66,32,40,66,32,40,66,32,40,66,32,90,41,41,41,41,32,95,49,
+53,50,53,41,41,41,32,40,40,65,32,58,49,53,50,55,32,40,40,40,
+83,39,32,40,83,39,32,40,83,39,32,40,83,39,32,80,41,41,41,41,
+32,40,40,40,83,39,32,66,41,32,40,40,66,32,40,67,39,32,40,67,
+39,32,66,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,95,51,
+53,32,95,54,56,41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,
+66,39,32,95,49,52,49,53,41,41,32,80,41,41,41,41,32,40,40,66,
+32,40,66,32,40,66,32,85,41,41,41,32,40,40,40,67,39,32,40,67,
+39,32,40,67,39,32,66,41,41,41,32,40,40,66,32,40,66,32,40,66,
+32,40,67,39,32,40,95,51,54,32,95,54,56,41,41,41,41,41,32,95,
+49,52,55,49,41,41,32,40,95,51,55,32,95,54,56,41,41,41,41,41,
+32,95,49,53,50,53,41,41,32,40,40,65,32,58,49,53,50,56,32,40,
+40,66,32,40,40,67,39,32,66,41,32,40,40,66,32,40,95,53,49,32,
+95,54,56,41,41,32,40,40,95,49,53,50,57,32,95,53,48,50,41,32,
+95,53,48,50,41,41,41,41,32,95,49,52,48,49,41,41,32,40,40,65,
+32,58,49,53,50,57,32,40,40,40,67,39,32,40,67,39,32,40,67,39,
+32,66,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,
+83,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,
+67,39,32,83,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,
+67,39,32,40,67,39,32,67,41,41,41,41,32,40,40,40,67,39,32,40,
+67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,83,39,41,41,41,
+41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,67,
+41,41,41,41,41,32,40,40,66,32,40,40,67,39,32,40,67,39,32,40,
+83,39,32,40,67,39,32,40,67,39,32,67,41,41,41,41,41,32,40,40,
+66,32,40,40,67,39,32,66,41,32,40,40,66,32,40,67,39,32,40,67,
+39,32,40,67,39,32,67,41,41,41,41,32,40,40,40,83,39,32,40,67,
+39,32,67,41,41,32,40,40,66,32,40,66,32,40,40,83,39,32,83,39,
+41,32,40,40,66,32,83,39,41,32,40,40,66,32,83,39,41,32,95,57,
+55,54,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,
+32,40,66,32,40,66,32,40,40,95,51,53,32,95,54,56,41,32,40,95,
+55,52,32,95,49,51,52,55,41,41,41,41,41,41,41,41,32,40,40,40,
+83,39,32,40,83,39,32,40,83,39,32,66,41,41,41,32,40,40,66,32,
+40,66,32,40,66,32,40,83,39,32,40,83,39,32,67,41,41,41,41,41,
+32,40,40,66,32,40,66,32,40,40,83,39,32,66,41,32,40,66,39,32,
+40,40,66,32,67,41,32,95,49,49,49,52,41,41,41,41,41,32,40,40,
+66,32,40,66,32,40,40,67,39,32,66,41,32,40,66,39,32,40,40,66,
+32,40,95,51,54,32,95,54,56,41,41,32,40,40,40,67,39,32,95,50,
+56,50,41,32,40,40,66,32,40,95,52,56,32,95,54,56,41,41,32,95,
+49,48,57,53,41,41,32,40,95,49,53,49,51,32,95,55,54,48,41,41,
+41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,
+95,51,55,32,95,54,56,41,41,41,41,41,32,40,40,40,67,39,32,40,
+67,39,32,40,67,39,32,40,67,39,32,79,41,41,41,41,32,40,40,40,
+67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,41,41,
+32,40,40,66,32,40,67,39,32,40,67,39,32,67,41,41,41,32,40,40,
+66,32,40,66,32,67,41,41,32,80,41,41,41,32,95,53,48,50,41,41,
+32,75,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,
+66,32,40,66,32,40,66,32,85,41,41,41,41,41,41,32,40,40,66,32,
+40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,90,41,
+41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,
+40,66,32,40,66,32,40,66,32,90,41,41,41,41,41,41,41,32,40,40,
+40,83,39,32,66,41,32,40,40,66,32,40,67,39,32,40,67,39,32,40,
+83,39,32,40,83,39,32,40,67,39,32,40,67,39,32,66,41,41,41,41,
+41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,
+40,66,32,40,66,32,40,95,51,53,32,95,54,56,41,41,41,41,41,41,
+41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
+66,32,40,66,32,40,40,95,50,57,56,32,95,54,54,41,32,95,52,50,
+57,41,41,41,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,
+66,41,41,32,40,40,66,32,40,66,32,40,67,39,32,40,67,39,32,66,
+41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,66,39,41,41,41,
+32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,95,52,54,32,95,
+54,56,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,
+32,85,41,41,41,41,32,40,40,66,32,40,66,32,40,40,67,39,32,40,
+67,39,32,66,41,41,32,95,49,53,50,57,41,41,41,32,40,40,67,39,
+32,40,67,39,32,95,57,49,56,41,41,32,40,40,66,32,40,66,32,95,
+57,49,55,41,41,32,40,95,49,53,51,48,32,95,55,54,48,41,41,41,
+41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,95,52,
+53,48,32,40,40,95,50,48,53,32,95,50,49,57,41,32,40,40,95,53,
+56,49,32,95,51,49,48,41,32,40,95,51,57,50,32,35,49,41,41,41,
+41,41,41,41,32,40,40,66,32,40,66,32,95,52,51,49,41,41,32,40,
+40,66,32,40,66,32,95,57,57,54,41,41,32,40,40,67,39,32,95,52,
+53,48,41,32,40,95,52,51,49,32,95,57,55,50,41,41,41,41,41,41,
+41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
+32,40,66,32,40,95,50,56,50,32,40,95,51,55,32,95,54,56,41,41,
+41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,
+40,66,32,95,53,48,51,41,41,41,41,41,32,40,40,66,32,40,66,32,
+40,66,32,40,66,32,67,41,41,41,41,32,40,40,66,32,40,67,39,32,
+40,67,39,32,67,41,41,41,32,40,40,66,32,40,66,32,67,41,41,32,
+80,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,
+66,32,40,66,32,90,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
+40,66,32,40,40,95,50,57,56,32,95,54,54,41,32,95,52,50,57,41,
+41,41,41,41,32,40,40,40,67,39,32,40,83,39,32,40,67,39,32,40,
+67,39,32,40,95,52,54,32,95,54,56,41,41,41,41,41,32,40,40,66,
+32,40,66,32,40,66,32,40,66,32,85,41,41,41,41,32,40,40,66,32,
+40,66,32,40,40,67,39,32,40,67,39,32,66,41,41,32,95,49,53,50,
+57,41,41,41,32,40,40,67,39,32,40,67,39,32,95,57,49,56,41,41,
+32,40,40,66,32,40,67,32,95,57,55,55,41,41,32,95,52,52,57,41,
+41,41,41,41,32,40,95,52,53,48,32,40,40,95,50,48,53,32,95,50,
+49,57,41,32,40,40,95,53,56,49,32,95,51,49,48,41,32,40,95,51,
+57,50,32,35,48,41,41,41,41,41,41,41,41,41,41,41,32,40,40,40,
+67,39,32,66,41,32,95,53,48,52,41,32,40,85,32,40,75,32,75,41,
+41,41,41,41,41,32,40,40,40,67,39,32,66,41,32,95,53,48,52,41,
+32,40,85,32,40,90,32,75,41,41,41,41,41,41,32,40,85,32,65,41,
+41,41,32,40,85,32,75,41,41,41,32,40,95,49,51,51,48,32,95,55,
+54,48,41,41,41,32,40,85,32,40,75,32,65,41,41,41,41,32,95,49,
+52,53,51,41,41,32,40,40,65,32,58,49,53,51,48,32,40,75,32,40,
+40,40,67,39,32,66,41,32,95,49,48,57,50,41,32,40,40,66,32,40,
+95,53,48,52,32,34,36,115,117,112,101,114,34,41,41,32,40,95,49,56,
+52,50,32,95,51,49,54,41,41,41,41,41,32,40,40,65,32,58,49,53,
+51,49,32,40,40,66,32,40,40,95,51,53,32,95,54,56,41,32,40,95,
+55,52,32,95,49,51,53,51,41,41,41,32,40,40,66,32,40,66,32,40,
+40,95,51,54,32,95,54,56,41,32,40,95,49,51,54,52,32,95,53,48,
+50,41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,95,51,53,32,
+95,54,56,41,41,32,40,40,66,32,40,66,32,40,40,95,51,53,32,95,
+54,56,41,32,95,49,53,51,53,41,41,41,32,40,40,66,32,40,66,32,
+40,66,32,40,40,95,51,53,32,95,54,56,41,32,40,95,55,52,32,95,
+49,51,53,51,41,41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,
+66,39,32,40,40,66,32,40,67,39,32,40,95,51,54,32,95,54,56,41,
+41,41,32,40,40,66,32,40,66,32,95,49,51,54,52,41,41,32,40,67,
+32,95,53,48,52,41,41,41,41,41,32,40,40,66,32,40,66,32,40,95,
+51,55,32,95,54,56,41,41,41,32,80,41,41,41,41,41,41,41,41,32,
+40,40,65,32,58,49,53,51,50,32,40,40,67,32,40,40,67,32,83,39,
+41,32,95,49,53,51,49,41,41,32,40,40,67,32,40,95,51,53,32,95,
+54,56,41,41,32,40,40,66,32,40,40,95,51,53,32,95,54,56,41,32,
+95,49,53,51,53,41,41,32,40,40,66,32,40,66,32,40,40,95,51,53,
+32,95,54,56,41,32,40,95,55,52,32,95,49,51,53,51,41,41,41,41,
+32,40,40,66,32,40,66,32,40,40,67,39,32,40,95,51,53,32,95,54,
+56,41,41,32,40,40,66,32,95,49,53,49,55,41,32,40,95,52,51,49,
+32,95,54,54,53,41,41,41,41,41,32,40,40,66,32,40,66,32,40,40,
+67,39,32,40,95,51,53,32,95,54,56,41,41,32,40,40,66,32,40,40,
+95,50,57,56,32,95,54,54,41,32,95,52,50,57,41,41,32,40,40,95,
+52,54,32,95,54,56,41,32,95,49,53,51,52,41,41,41,41,41,32,40,
+40,66,32,40,66,32,40,66,32,40,95,51,55,32,95,54,56,41,41,41,
+41,32,40,40,40,67,39,32,66,41,32,40,66,39,32,80,41,41,32,95,
+53,48,52,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,49,53,
+51,51,32,40,40,66,32,85,41,32,40,90,32,40,40,40,67,39,32,66,
+41,32,40,40,66,32,40,95,50,57,56,32,95,54,54,41,41,32,40,95,
+52,55,50,32,95,51,49,52,41,41,41,32,40,40,66,32,95,49,53,49,
+55,41,32,40,40,67,32,79,41,32,75,41,41,41,41,41,41,32,40,40,
+65,32,58,49,53,51,52,32,40,40,66,32,40,40,95,51,53,32,95,54,
+56,41,32,95,55,51,41,41,32,40,40,40,83,39,32,40,83,39,32,40,
+95,51,53,32,95,54,56,41,41,41,32,40,40,40,67,39,32,66,41,32,
+40,40,66,32,40,95,53,53,32,95,54,56,41,41,32,95,49,53,51,51,
+41,41,32,95,49,51,53,51,41,41,32,40,40,66,32,40,66,32,85,41,
+41,32,40,40,40,67,39,32,40,83,39,32,40,67,39,32,40,67,39,32,
+89,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,
+66,32,40,80,32,40,40,95,51,55,32,95,54,56,41,32,95,53,48,50,
+41,41,41,41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,66,39,
+32,40,66,39,32,40,66,39,32,40,40,66,32,40,67,39,32,66,41,41,
+32,40,40,66,32,40,66,32,40,95,51,54,32,95,54,56,41,41,41,32,
+95,49,51,57,56,41,41,41,41,41,41,32,40,40,66,32,40,40,67,39,
+32,66,41,32,40,66,39,32,40,66,39,32,40,40,66,32,40,95,51,54,
+32,95,54,56,41,41,32,95,49,51,54,52,41,41,41,41,41,32,40,40,
+66,32,40,66,32,40,66,32,40,66,32,40,40,95,51,53,32,95,54,56,
+41,32,95,49,53,51,53,41,41,41,41,41,32,40,40,66,32,40,66,32,
+40,66,32,40,66,32,40,66,32,40,40,95,51,53,32,95,54,56,41,32,
+40,95,55,52,32,95,49,51,53,51,41,41,41,41,41,41,41,32,40,40,
+40,67,39,32,66,41,32,40,40,66,32,40,67,39,32,40,67,39,32,66,
+41,41,41,32,40,40,66,32,40,66,32,40,66,32,67,41,41,41,32,40,
+40,66,32,40,66,32,40,66,32,40,67,32,95,52,50,56,41,41,41,41,
+32,40,66,39,32,40,40,66,32,40,95,51,54,32,95,54,56,41,41,32,
+95,55,50,41,41,41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,
+40,66,32,40,95,51,54,32,95,54,56,41,41,32,95,49,51,54,52,41,
+41,32,40,95,51,55,32,95,54,56,41,41,41,41,41,41,41,41,41,32,
+95,49,51,53,52,41,41,41,41,41,32,40,40,65,32,58,49,53,51,53,
+32,40,40,40,95,51,53,32,95,54,56,41,32,40,95,55,52,32,95,49,
+51,53,51,41,41,32,40,40,67,32,40,40,83,32,95,52,50,56,41,32,
+40,40,66,32,40,40,95,51,54,32,95,54,56,41,32,95,49,53,54,53,
+41,41,32,40,40,40,67,39,32,40,95,51,53,32,95,54,56,41,41,32,
+40,40,95,52,54,32,95,54,56,41,32,40,85,32,40,40,66,32,40,40,
+67,39,32,40,95,51,53,32,95,54,56,41,41,32,95,49,52,48,50,41,
+41,32,40,40,66,32,40,66,32,40,95,51,55,32,95,54,56,41,41,41,
+32,80,41,41,41,41,41,32,40,40,40,67,39,32,40,95,51,53,32,95,
+54,56,41,41,32,40,40,67,32,40,40,67,32,40,40,67,32,95,49,53,
+51,55,41,32,95,53,48,50,41,41,32,95,53,48,50,41,41,32,95,53,
+48,50,41,41,32,40,85,32,40,40,40,67,39,32,66,41,32,40,66,39,
+32,40,40,66,32,40,95,51,54,32,95,54,56,41,41,32,95,49,51,54,
+52,41,41,41,32,40,40,40,83,39,32,67,41,32,40,40,66,32,40,83,
+32,95,52,50,56,41,41,32,40,40,66,32,40,40,67,39,32,40,95,51,
+54,32,95,54,56,41,41,32,40,40,95,52,55,32,95,54,56,41,32,40,
+85,32,40,95,49,52,48,52,32,95,55,54,48,41,41,41,41,41,32,40,
+40,40,67,39,32,40,95,50,57,56,32,95,54,54,41,41,32,40,67,32,
+95,53,48,52,41,41,32,95,49,53,51,53,41,41,41,41,32,40,95,51,
+55,32,95,54,56,41,41,41,41,41,41,41,41,41,32,40,40,95,51,55,
+32,95,54,56,41,32,95,53,48,50,41,41,41,41,32,40,40,65,32,58,
+49,53,51,54,32,40,40,79,32,40,40,80,32,40,40,95,50,56,52,32,
+95,53,49,56,41,32,95,57,55,54,41,41,32,95,49,53,52,48,41,41,
+32,40,40,79,32,40,40,80,32,40,40,67,32,40,95,50,50,51,32,95,
+49,48,55,56,41,41,32,40,95,49,48,56,51,32,95,49,51,48,52,41,
+41,41,32,95,49,53,52,49,41,41,32,40,40,79,32,40,40,80,32,40,
+40,67,32,40,95,50,50,51,32,95,49,48,55,56,41,41,32,40,95,49,
+48,56,51,32,95,49,51,49,49,41,41,41,32,95,49,53,52,50,41,41,
+32,40,40,79,32,40,40,80,32,40,40,67,32,40,95,50,50,51,32,95,
+49,48,55,56,41,41,32,40,95,49,48,56,51,32,95,49,51,49,50,41,
+41,41,32,95,49,53,52,51,41,41,32,40,40,79,32,40,40,80,32,40,
+95,50,56,54,32,95,49,51,53,41,41,32,95,49,53,51,56,41,41,32,
+75,41,41,41,41,41,41,32,40,40,65,32,58,49,53,51,55,32,40,40,
+67,32,40,40,40,67,39,32,83,39,41,32,40,40,66,32,83,39,41,32,
+83,39,41,41,32,40,40,66,32,40,66,32,40,66,32,40,95,51,55,32,
+95,54,56,41,41,41,41,32,40,40,66,32,40,66,32,67,41,41,32,80,
+41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,83,32,66,41,
+41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,
+39,32,40,67,39,32,40,67,39,32,66,41,41,41,41,41,41,32,40,40,
+40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,
+40,67,39,32,83,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,
+66,32,40,66,32,40,66,32,40,40,83,39,32,40,67,39,32,40,67,39,
+32,40,95,51,53,32,95,54,56,41,41,41,41,32,40,40,40,67,39,32,
+66,41,32,40,40,66,32,67,41,32,40,40,40,67,39,32,83,41,32,40,
+40,66,32,40,40,67,39,32,95,52,54,56,41,32,40,40,40,67,39,32,
+95,52,51,48,41,32,40,40,66,32,85,41,32,40,40,40,67,39,32,40,
+67,39,32,66,41,41,32,40,40,67,32,80,41,32,75,41,41,32,40,40,
+67,32,79,41,32,75,41,41,41,41,32,95,49,53,51,54,41,41,41,32,
+40,95,57,55,57,32,95,57,56,49,41,41,41,32,73,41,41,41,32,40,
+85,32,65,41,41,41,41,41,41,41,41,32,40,40,40,83,39,32,40,83,
+39,32,40,83,39,32,40,67,39,32,40,83,39,32,66,41,41,41,41,41,
+32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,80,41,41,
+41,41,41,32,40,40,66,32,40,66,32,40,67,39,32,67,41,41,41,32,
+40,40,66,32,40,67,39,32,67,41,41,32,40,40,66,32,40,66,32,40,
+67,32,95,49,53,51,55,41,41,41,32,40,67,32,95,53,48,51,41,41,
+41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,
+32,85,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,
+41,32,40,40,66,32,40,66,32,40,67,39,32,40,67,39,32,40,67,39,
+32,40,67,39,32,66,41,41,41,41,41,41,32,40,40,40,67,39,32,66,
+41,32,40,40,66,32,40,67,39,32,66,41,41,32,40,40,66,32,66,39,
+41,32,40,40,66,32,40,66,32,67,41,41,32,40,40,67,39,32,40,67,
+39,32,95,49,53,51,55,41,41,32,40,67,32,95,53,48,52,41,41,41,
+41,41,41,32,40,40,67,39,32,40,67,39,32,95,53,48,51,41,41,32,
+80,41,41,41,41,32,40,67,32,95,53,48,52,41,41,41,41,41,41,32,
+40,85,32,75,41,41,41,32,40,95,49,51,51,48,32,95,55,54,48,41,
+41,41,41,41,32,40,40,65,32,58,49,53,51,56,32,40,40,66,32,40,
+66,32,40,66,32,40,40,95,51,53,32,95,54,56,41,32,40,95,55,52,
+32,95,49,51,52,57,41,41,41,41,41,32,40,40,66,32,40,40,83,39,
+32,66,41,32,40,40,66,32,67,41,32,40,40,40,67,39,32,67,41,32,
+95,49,49,49,52,41,32,40,40,95,51,55,32,95,54,56,41,32,95,53,
+50,49,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,85,41,
+41,41,32,40,40,40,83,39,32,40,83,39,32,83,41,41,32,40,40,66,
+32,40,66,32,40,40,83,39,32,67,39,41,32,40,40,66,32,83,39,41,
+32,40,40,66,32,83,39,41,32,83,41,41,41,41,41,32,40,40,66,32,
+40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,67,
+32,66,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,
+32,40,66,32,40,66,32,40,66,32,40,40,83,39,32,66,41,32,40,40,
+66,32,40,67,39,32,66,41,41,32,40,67,32,40,40,67,32,61,61,41,
+32,35,48,41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,
+32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,85,
+41,41,41,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,
+67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,66,41,41,41,41,
+41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,
+66,32,67,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
+40,66,32,40,66,32,40,66,32,40,67,32,67,39,41,41,41,41,41,41,
+41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,
+40,67,39,32,40,67,39,32,67,41,41,41,41,41,41,32,40,40,66,32,
+40,66,32,40,66,32,40,40,67,39,32,66,41,32,40,66,39,32,40,40,
+66,32,67,41,32,40,67,32,95,49,49,49,52,41,41,41,41,41,41,41,
+32,40,40,66,32,40,66,32,40,67,39,32,67,41,41,41,32,40,40,66,
+32,40,67,39,32,67,41,41,32,40,40,67,39,32,67,41,32,40,67,32,
+95,49,53,51,57,41,41,41,41,41,41,32,40,40,66,32,40,95,50,56,
+50,32,40,95,51,55,32,95,54,56,41,41,41,32,40,40,66,32,95,53,
+50,50,41,32,40,40,40,67,39,32,67,41,32,40,40,67,32,80,41,32,
+95,53,48,50,41,41,32,95,53,48,50,41,41,41,41,41,41,41,32,40,
+90,32,75,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,67,
+39,32,67,41,41,41,32,40,40,66,32,40,67,39,32,67,41,41,32,40,
+40,67,39,32,67,41,32,40,67,32,95,49,53,51,57,41,41,41,41,41,
+41,41,41,41,32,40,40,65,32,58,49,53,51,57,32,40,40,40,67,39,
+32,40,67,39,32,40,83,39,32,66,41,41,41,32,40,40,66,32,40,66,
+32,40,66,32,83,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,
+67,39,32,40,67,39,32,40,95,50,56,50,32,95,49,53,53,49,41,41,
+41,41,41,32,40,40,66,32,67,41,32,40,67,32,95,49,53,52,53,41,
+41,41,32,40,40,95,51,55,32,95,54,56,41,32,95,53,50,49,41,41,
+41,41,32,40,40,66,32,40,66,32,40,66,32,40,67,32,66,41,41,41,
+41,32,40,40,40,83,39,32,66,41,32,40,66,39,32,40,40,66,32,67,
+41,32,40,40,66,32,40,40,67,39,32,67,39,41,32,40,40,66,32,67,
+39,41,32,67,39,41,41,41,32,40,40,40,67,39,32,40,83,39,32,67,
+41,41,32,40,40,66,32,40,66,32,40,40,83,39,32,83,39,41,32,95,
+52,50,56,41,41,41,32,40,40,40,67,39,32,66,41,32,40,66,39,32,
+40,66,39,32,40,40,66,32,40,95,51,53,32,95,54,56,41,41,32,95,
+49,52,56,53,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,
+66,32,40,95,50,56,50,32,40,95,51,55,32,95,54,56,41,41,41,41,
+41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,95,53,50,50,
+41,41,41,41,32,40,40,66,32,40,66,32,40,67,39,32,67,41,41,41,
+32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,83,39,32,80,41,
+41,32,40,40,40,67,39,32,66,41,32,95,57,49,56,41,32,95,57,49,
+55,41,41,41,32,40,40,40,67,39,32,40,67,39,32,79,41,41,32,40,
+40,66,32,40,67,32,80,41,41,32,95,49,52,53,50,41,41,32,75,41,
+41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,95,50,56,50,
+32,40,95,51,55,32,95,54,56,41,41,41,41,32,40,40,66,32,40,66,
+32,95,53,50,50,41,41,32,40,40,66,32,67,41,32,40,40,67,32,80,
+41,32,95,53,48,50,41,41,41,41,41,41,41,41,41,32,40,40,66,32,
+40,66,32,90,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,
+40,67,39,32,66,41,32,40,66,39,32,40,40,66,32,95,50,56,50,41,
+32,40,95,49,50,57,49,32,95,55,54,48,41,41,41,41,32,40,40,66,
+32,40,66,32,40,95,53,48,52,32,34,77,117,108,116,105,112,108,101,32,
+99,111,110,115,116,114,97,105,110,116,32,115,111,108,117,116,105,111,110,115,
+32,102,111,114,58,32,34,41,41,41,32,40,40,66,32,40,66,32,95,49,
+48,50,49,41,41,32,95,49,51,57,50,41,41,41,41,41,41,41,41,41,
+32,40,40,65,32,58,49,53,52,48,32,40,90,32,40,40,40,67,39,32,
+40,67,39,32,40,95,51,53,32,95,54,56,41,41,41,32,40,40,66,32,
+40,95,52,54,32,95,54,56,41,41,32,40,40,40,67,39,32,66,41,32,
+40,40,66,32,40,95,51,53,32,95,54,56,41,41,32,95,49,52,56,53,
+41,41,32,40,40,66,32,40,66,32,40,95,51,55,32,95,54,56,41,41,
+41,32,40,67,32,80,41,41,41,41,41,32,40,40,66,32,40,95,50,56,
+50,32,40,95,51,55,32,95,54,56,41,41,41,32,40,40,66,32,95,53,
+50,50,41,32,40,40,40,67,39,32,67,41,32,40,40,40,83,39,32,80,
+41,32,40,40,66,32,95,57,50,52,41,32,40,95,52,51,49,32,40,40,
+95,50,56,52,32,95,57,49,55,41,32,95,54,54,52,41,41,41,41,32,
+73,41,41,32,95,53,48,50,41,41,41,41,41,41,32,40,40,65,32,58,
+49,53,52,49,32,40,90,32,40,40,40,67,39,32,67,41,32,40,40,66,
+32,40,67,32,83,41,41,32,40,40,66,32,40,40,83,39,32,66,41,32,
+80,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,67,39,
+32,40,67,39,32,80,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
+40,40,95,51,53,32,95,54,56,41,32,40,95,55,52,32,95,49,51,53,
+49,41,41,41,41,41,32,40,40,66,32,40,40,67,39,32,40,67,39,32,
+67,41,41,32,40,40,40,67,39,32,40,67,39,32,67,41,41,32,40,40,
+66,32,67,41,32,40,67,32,95,49,53,53,53,41,41,41,32,40,40,95,
+51,55,32,95,54,56,41,32,95,53,50,49,41,41,41,41,32,40,40,66,
+32,85,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,67,39,
+32,40,95,51,53,32,95,54,56,41,41,41,32,40,40,66,32,40,95,52,
+54,32,95,54,56,41,41,32,40,40,66,32,85,41,32,40,40,40,83,39,
+32,66,41,32,40,66,39,32,40,40,66,32,40,95,51,53,32,95,54,56,
+41,41,32,95,49,52,56,53,41,41,41,32,40,40,66,32,40,66,32,40,
+66,32,40,66,32,40,95,51,55,32,95,54,56,41,41,41,41,41,32,40,
+40,66,32,40,66,32,40,66,32,40,67,32,80,41,41,41,41,32,95,49,
+53,53,52,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,95,
+50,56,50,32,40,95,51,55,32,95,54,56,41,41,41,41,32,40,40,66,
+32,40,66,32,95,53,50,50,41,41,32,40,40,40,67,39,32,40,67,39,
+32,67,41,41,32,80,41,32,95,53,48,50,41,41,41,41,41,41,41,41,
+41,32,40,90,32,75,41,41,41,41,41,32,40,95,49,53,49,51,32,95,
+55,54,48,41,41,41,41,32,40,40,65,32,58,49,53,52,50,32,40,40,
+40,83,39,32,40,83,39,32,83,41,41,32,40,40,66,32,40,66,32,40,
+67,32,83,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,83,32,
+66,41,41,41,41,32,40,40,66,32,40,66,32,40,40,83,39,32,66,41,
+32,40,66,39,32,40,40,66,32,40,67,39,32,66,41,41,32,40,67,32,
+40,40,67,32,61,61,41,32,35,52,41,41,41,41,41,41,41,32,40,40,
+66,32,40,66,32,40,66,32,40,66,32,40,66,32,85,41,41,41,41,41,
+32,40,40,66,32,40,66,32,40,66,32,40,66,32,90,41,41,41,41,32,
+40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,85,41,41,41,
+41,41,32,40,40,66,32,40,66,32,40,40,83,39,32,66,41,32,40,66,
+39,32,40,40,66,32,40,67,39,32,66,41,41,32,40,67,32,40,40,67,
+32,61,61,41,32,35,49,41,41,41,41,41,41,41,32,40,40,66,32,40,
+66,32,40,66,32,40,66,32,40,66,32,85,41,41,41,41,41,32,40,40,
+66,32,40,66,32,40,66,32,40,66,32,90,41,41,41,41,32,40,40,40,
+67,39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,40,67,
+39,32,80,41,41,41,32,95,49,53,52,52,41,41,32,40,90,32,75,41,
+41,41,41,41,41,41,41,41,41,41,41,32,95,49,53,51,56,41,41,32,
+40,40,65,32,58,49,53,52,51,32,40,40,40,83,39,32,40,83,39,32,
+83,41,41,32,40,40,66,32,40,66,32,40,67,32,83,41,41,41,32,40,
+40,66,32,40,66,32,40,66,32,40,83,32,66,41,41,41,41,32,40,40,
+66,32,40,66,32,40,40,83,39,32,66,41,32,40,66,39,32,40,40,66,
+32,40,67,39,32,66,41,41,32,40,67,32,40,40,67,32,61,61,41,32,
+35,52,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
+40,66,32,40,66,32,85,41,41,41,41,41,32,40,40,66,32,40,66,32,
+40,66,32,40,66,32,90,41,41,41,41,32,40,40,66,32,40,66,32,40,
+66,32,40,66,32,40,66,32,85,41,41,41,41,41,32,40,40,66,32,40,
+66,32,40,40,83,39,32,66,41,32,40,66,39,32,40,40,66,32,40,67,
+39,32,66,41,41,32,40,67,32,40,40,67,32,61,61,41,32,35,53,41,
+41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,
+40,66,32,85,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
+40,66,32,90,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,66,
+41,41,32,40,40,66,32,40,66,32,40,67,39,32,80,41,41,41,32,95,
+49,53,52,52,41,41,32,40,90,32,75,41,41,41,41,41,41,41,41,41,
+41,41,41,32,95,49,53,51,56,41,41,32,40,40,65,32,58,49,53,52,
+52,32,40,40,66,32,40,66,32,40,66,32,40,95,50,56,50,32,40,95,
+51,55,32,95,54,56,41,41,41,41,41,32,40,40,66,32,40,66,32,40,
+66,32,95,53,50,50,41,41,41,32,40,40,40,67,39,32,40,67,39,32,
+40,67,39,32,67,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,
+67,39,32,80,41,41,41,32,40,40,66,32,40,40,67,39,32,66,41,32,
+40,40,66,32,95,57,49,56,41,32,40,40,66,32,40,95,50,56,50,32,
+95,57,49,55,41,41,32,95,49,52,53,56,41,41,41,41,32,40,40,66,
+32,95,57,49,56,41,32,40,40,67,32,95,57,50,49,41,32,40,95,57,
+53,54,32,40,40,79,32,35,55,53,41,32,75,41,41,41,41,41,41,32,
+95,53,48,50,41,41,32,95,53,48,50,41,41,41,41,32,40,40,65,32,
+58,49,53,52,53,32,40,40,66,32,40,66,32,40,67,39,32,95,52,51,
+48,41,41,41,32,40,40,66,32,40,66,32,40,66,32,85,41,41,41,32,
+40,40,66,32,40,66,32,40,66,32,40,40,67,39,32,40,67,39,32,66,
+41,41,32,40,40,66,32,40,66,32,95,52,51,48,41,41,32,40,40,66,
+32,40,66,32,40,80,32,75,41,41,41,32,40,40,66,32,40,66,32,85,
+41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,
+32,79,41,41,41,41,32,40,40,66,32,40,66,32,40,40,83,39,32,66,
+41,32,40,40,66,32,80,41,32,95,52,52,57,41,41,41,41,32,40,40,
+66,32,40,66,32,40,66,32,67,41,41,41,32,40,40,40,67,39,32,66,
+41,32,40,66,39,32,80,41,41,32,40,40,67,39,32,95,52,51,49,41,
+32,95,49,53,52,54,41,41,41,41,41,32,75,41,41,41,41,41,41,41,
+41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,
+79,41,41,41,41,32,40,40,66,32,40,67,39,32,67,41,41,32,40,40,
+66,32,67,41,32,95,49,53,52,55,41,41,41,32,75,41,41,41,41,41,
+32,40,40,65,32,58,49,53,52,54,32,40,40,66,32,89,41,32,40,40,
+40,83,39,32,66,41,32,83,41,32,40,40,66,32,40,66,32,90,41,41,
+32,40,40,66,32,40,66,32,90,41,41,32,40,40,40,67,39,32,40,67,
+39,32,67,41,41,32,40,40,66,32,40,66,32,40,83,32,66,41,41,41,
+32,40,40,40,67,39,32,40,83,39,32,40,83,39,32,40,83,39,32,83,
+41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,40,
+83,39,32,83,39,41,32,40,40,67,32,60,41,32,35,52,41,41,41,41,
+41,41,32,40,40,40,67,39,32,40,67,39,32,40,83,39,32,40,83,39,
+32,83,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,
+40,40,83,39,32,83,39,41,32,40,40,67,32,60,41,32,35,49,55,41,
+41,41,41,41,41,32,40,40,66,32,40,40,67,39,32,66,41,32,40,66,
+39,32,40,40,66,32,83,41,32,40,40,66,32,40,40,67,39,32,83,39,
+41,32,40,40,67,32,60,41,32,35,49,57,41,41,41,32,40,40,66,32,
+85,41,32,40,40,67,39,32,66,41,32,95,57,51,54,41,41,41,41,41,
+41,41,32,40,40,66,32,40,66,32,40,40,67,39,32,40,67,39,32,66,
+41,41,32,40,67,32,40,40,67,32,61,61,41,32,35,49,55,41,41,41,
+41,41,32,40,40,66,32,40,66,32,85,41,41,32,40,40,66,32,40,40,
+67,39,32,66,41,32,40,40,66,32,95,50,56,50,41,32,95,53,49,54,
+41,41,41,32,40,67,32,40,95,52,55,54,32,95,51,49,52,41,41,41,
+41,41,41,41,41,32,40,40,66,32,40,40,67,39,32,40,67,39,32,66,
+41,41,32,40,67,32,40,40,67,32,61,61,41,32,35,52,41,41,41,41,
+32,40,40,66,32,85,41,32,40,90,32,75,41,41,41,41,41,41,32,40,
+40,40,67,39,32,66,41,32,40,40,66,32,40,67,39,32,67,41,41,32,
+40,40,66,32,40,66,32,40,40,83,39,32,83,39,41,32,40,40,67,32,
+60,41,32,35,49,41,41,41,41,32,40,40,66,32,40,40,67,39,32,40,
+67,39,32,66,41,41,32,40,67,32,40,40,67,32,61,61,41,32,35,49,
+41,41,41,41,32,40,40,66,32,85,41,32,40,40,40,83,39,32,40,67,
+39,32,66,41,41,32,40,66,32,95,57,49,56,41,41,32,73,41,41,41,
+41,41,41,32,40,40,66,32,85,41,32,75,41,41,41,41,41,32,40,95,
+49,53,49,51,32,95,55,54,48,41,41,41,41,41,41,41,32,40,40,65,
+32,58,49,53,52,55,32,40,40,66,32,40,40,83,39,32,40,83,39,32,
+83,41,41,32,40,40,66,32,40,66,32,85,41,41,32,40,40,40,67,39,
+32,40,67,39,32,40,95,51,53,32,95,53,49,48,41,41,41,32,40,40,
+89,32,40,40,40,67,39,32,40,83,39,32,67,41,41,32,40,40,66,32,
+40,66,32,40,40,67,39,32,67,39,41,32,83,41,41,41,32,40,40,66,
+32,40,66,32,40,40,67,39,32,40,67,39,32,66,41,41,32,66,39,41,
+41,41,32,40,40,66,32,40,40,67,39,32,40,67,39,32,66,41,41,32,
+40,40,66,32,40,66,32,40,67,39,32,66,41,41,41,32,40,40,66,32,
+40,66,32,40,66,32,40,95,51,53,32,95,53,49,48,41,41,41,41,32,
+95,49,53,52,57,41,41,41,41,32,40,40,66,32,40,66,32,67,41,41,
+32,67,41,41,41,41,41,32,40,95,49,52,32,95,53,48,57,41,41,41,
+32,95,53,48,50,41,41,32,40,40,66,32,40,95,49,52,32,95,53,48,
+57,41,41,32,40,40,67,32,80,41,32,95,53,48,50,41,41,41,41,41,
+41,32,40,40,66,32,40,66,32,40,66,32,90,41,41,41,32,40,40,66,
+32,40,66,32,40,66,32,90,41,41,41,32,40,40,66,32,40,66,32,40,
+66,32,40,66,32,40,95,50,56,50,32,40,95,49,49,32,95,53,49,50,
+41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,95,52,51,
+49,41,41,41,32,95,49,53,52,56,41,41,41,41,41,41,32,40,40,65,
+32,58,49,53,52,56,32,40,40,66,32,40,66,32,40,66,32,85,41,41,
+41,32,40,40,66,32,40,40,83,39,32,40,83,39,32,66,41,41,32,40,
+40,66,32,40,66,32,40,83,39,32,40,95,51,53,32,95,53,49,48,41,
+41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,95,50,56,50,32,
+40,95,52,57,32,95,53,49,48,41,41,41,41,41,32,40,40,66,32,67,
+41,32,40,67,32,40,95,52,53,51,32,40,40,80,32,40,95,49,53,52,
+57,32,95,53,48,50,41,41,32,40,75,50,32,40,95,53,50,50,32,95,
+53,48,50,41,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,
+32,40,66,32,40,66,32,40,66,32,40,40,83,39,32,40,95,51,53,32,
+95,53,49,48,41,41,32,95,49,53,53,48,41,41,41,41,41,41,32,40,
+40,66,32,40,66,32,40,66,32,40,40,67,39,32,66,41,32,40,40,66,
+32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,40,95,51,53,
+32,95,53,49,48,41,41,41,32,40,40,66,32,40,66,32,95,49,53,53,
+48,41,41,32,40,40,66,32,40,66,32,40,95,52,51,48,32,40,85,32,
+40,40,40,67,39,32,66,41,32,40,85,32,75,41,41,32,40,40,67,32,
+79,41,32,75,41,41,41,41,41,41,32,95,52,53,48,41,41,41,41,41,
+41,41,41,32,40,40,40,83,39,32,66,41,32,40,66,39,32,40,66,39,
+32,40,40,66,32,40,67,39,32,66,41,41,32,40,40,40,67,39,32,66,
+41,32,40,40,66,32,40,83,39,32,40,95,51,54,32,95,53,49,48,41,
+41,41,32,40,40,66,32,40,40,67,39,32,95,50,56,50,41,32,40,40,
+66,32,40,95,52,56,32,95,53,49,48,41,41,32,40,40,66,32,95,49,
+51,50,41,32,40,40,66,32,95,52,50,56,41,32,40,40,66,32,95,49,
+53,50,51,41,32,40,95,52,51,48,32,40,85,32,40,75,32,40,90,32,
+40,40,67,32,79,41,32,75,41,41,41,41,41,41,41,41,41,41,41,32,
+40,40,40,67,39,32,95,50,56,50,41,32,40,95,49,48,49,51,32,95,
+55,54,48,41,41,32,34,102,114,101,101,32,116,121,112,101,32,118,97,114,
+105,97,98,108,101,32,105,110,32,111,117,116,112,117,116,32,102,117,110,100,
+101,112,34,41,41,41,41,32,40,40,66,32,40,66,32,40,95,49,52,32,
+95,53,48,57,41,41,41,32,80,41,41,41,41,41,41,32,40,40,40,67,
+39,32,66,41,32,40,66,39,32,40,66,39,32,40,40,66,32,40,67,39,
+32,95,52,51,48,41,41,32,40,40,66,32,40,66,32,85,41,41,32,40,
+40,66,32,40,66,32,40,40,67,39,32,66,41,32,40,66,39,32,40,85,
+32,75,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,
+39,32,40,67,39,32,79,41,41,41,41,32,40,40,66,32,40,66,32,40,
+66,32,67,41,41,41,32,40,40,40,67,39,32,66,41,32,40,66,39,32,
+80,41,41,32,95,49,53,52,54,41,41,41,32,75,41,41,41,41,41,41,
+41,32,40,40,66,32,67,41,32,40,67,32,95,52,53,49,41,41,41,41,
+41,41,41,41,41,32,40,40,65,32,58,49,53,52,57,32,40,89,32,40,
+40,66,32,40,66,32,40,67,32,66,41,41,41,32,40,40,40,83,39,32,
+40,83,39,32,40,83,39,32,83,41,41,41,32,40,40,66,32,40,66,32,
+40,66,32,40,40,83,39,32,83,39,41,32,40,40,67,32,60,41,32,35,
+52,41,41,41,41,41,32,40,40,40,67,39,32,40,83,39,32,40,83,39,
+32,83,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,40,83,39,
+32,83,39,41,32,40,40,67,32,60,41,32,35,49,55,41,41,41,41,41,
+32,40,40,66,32,40,66,32,40,66,32,40,40,67,39,32,66,41,32,40,
+40,67,32,40,40,67,32,61,61,41,32,35,49,55,41,41,32,95,53,50,
+49,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,85,41,41,
+41,32,40,40,66,32,40,40,83,39,32,40,83,39,32,67,41,41,32,40,
+40,40,83,39,32,66,41,32,40,40,66,32,83,41,32,40,67,32,40,95,
+52,55,54,32,95,51,49,52,41,41,41,41,32,40,40,66,32,40,66,32,
+40,66,32,40,95,49,52,32,95,53,48,57,41,41,41,41,32,40,40,67,
+39,32,40,67,39,32,95,53,48,51,41,41,32,40,67,32,80,41,41,41,
+41,41,41,32,40,66,32,67,41,41,41,41,41,41,32,40,40,66,32,40,
+66,32,40,40,67,39,32,66,41,32,40,40,67,32,40,40,67,32,61,61,
+41,32,35,52,41,41,32,95,53,50,49,41,41,41,41,32,40,40,66,32,
+40,66,32,85,41,41,32,40,40,66,32,90,41,32,40,40,66,32,40,67,
+32,66,41,41,32,40,40,66,32,40,66,32,40,40,67,39,32,66,41,32,
+40,40,67,32,40,40,67,32,61,61,41,32,35,52,41,41,32,95,53,50,
+49,41,41,41,41,32,40,40,66,32,40,66,32,85,41,41,32,40,40,66,
+32,90,41,32,40,40,66,32,40,40,67,39,32,67,41,32,40,40,40,67,
+39,32,67,41,32,40,95,50,50,51,32,95,57,53,56,41,41,32,95,53,
+50,49,41,41,41,32,40,95,49,52,32,95,53,48,57,41,41,41,41,41,
+41,41,41,41,41,41,41,32,40,40,40,67,39,32,40,83,39,32,40,83,
+39,32,67,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,40,83,
+39,32,83,39,41,32,40,40,67,32,60,41,32,35,49,41,41,41,41,41,
+32,40,40,66,32,40,66,32,40,66,32,40,40,67,39,32,66,41,32,40,
+40,67,32,40,40,67,32,61,61,41,32,35,49,41,41,32,95,53,50,49,
+41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,85,41,41,41,
+32,40,40,66,32,40,66,32,40,40,67,39,32,66,41,32,66,41,41,41,
+32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,40,67,39,32,66,
+41,32,40,40,67,32,40,40,67,32,61,61,41,32,35,49,41,41,32,95,
+53,50,49,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
+40,66,32,85,41,41,41,41,32,40,40,40,83,39,32,40,67,39,32,40,
+67,39,32,66,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,67,
+39,32,66,41,41,41,41,32,40,66,32,40,66,32,40,66,32,40,95,51,
+53,32,95,53,49,48,41,41,41,41,41,41,32,40,40,66,32,40,66,32,
+67,41,41,32,67,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,
+66,32,85,41,41,32,40,40,66,32,40,67,32,66,41,41,32,40,40,66,
+32,40,66,32,40,40,67,39,32,66,41,32,40,40,67,32,40,40,67,32,
+61,61,41,32,35,48,41,41,32,95,53,50,49,41,41,41,41,32,40,40,
+66,32,40,66,32,85,41,41,32,40,40,66,32,40,40,67,39,32,67,41,
+32,40,40,40,67,39,32,67,41,32,40,95,50,50,51,32,95,49,48,55,
+56,41,41,32,95,53,50,49,41,41,41,32,40,95,49,52,32,95,53,48,
+57,41,41,41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,49,53,
+53,48,32,40,40,89,32,40,40,66,32,40,40,83,39,32,80,41,32,95,
+53,50,50,41,41,32,40,40,66,32,40,40,67,39,32,40,67,39,32,66,
+41,41,32,40,40,66,32,40,66,32,40,95,51,53,32,95,53,49,48,41,
+41,41,32,40,89,32,40,40,66,32,40,40,83,39,32,80,41,32,95,53,
+50,50,41,41,32,40,40,66,32,40,66,32,40,67,32,66,41,41,41,32,
+40,40,66,32,40,40,67,39,32,66,41,32,40,40,66,32,40,67,39,32,
+40,67,39,32,40,95,51,53,32,95,53,49,48,41,41,41,41,32,40,40,
+67,39,32,67,41,32,40,40,40,67,39,32,40,83,39,32,67,41,41,32,
+40,40,40,83,39,32,66,41,32,40,40,66,32,83,41,32,40,95,52,55,
+54,32,95,51,49,52,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
+95,53,50,50,41,41,41,32,40,40,66,32,40,66,32,95,53,48,51,41,
+41,32,80,41,41,41,41,32,40,67,32,40,95,49,53,52,57,32,95,53,
+48,50,41,41,41,41,41,41,41,32,67,41,41,41,41,41,41,41,32,67,
+41,41,41,32,95,53,48,50,41,41,32,40,40,65,32,58,49,53,53,49,
+32,40,40,83,32,40,85,32,95,53,48,50,41,41,32,40,90,32,40,90,
+32,40,40,40,67,39,32,40,67,32,40,40,67,32,40,40,40,83,39,32,
+83,39,41,32,40,40,66,32,67,41,32,40,83,32,95,52,50,56,41,41,
+41,32,40,40,67,32,66,41,32,40,85,32,65,41,41,41,41,32,40,85,
+32,75,41,41,41,41,32,40,95,52,57,50,32,40,85,32,40,75,32,40,
+85,32,40,90,32,40,90,32,40,40,66,32,40,40,95,52,53,56,32,95,
+49,52,49,41,32,40,40,95,53,48,52,32,95,49,52,56,49,41,32,95,
+49,52,49,49,41,41,41,32,40,40,66,32,95,49,48,56,54,41,32,40,
+40,83,32,73,41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,
+40,40,66,32,40,67,32,40,40,67,32,61,61,41,32,35,48,41,41,41,
+32,40,40,95,49,53,49,52,32,95,55,54,48,41,32,40,40,80,32,95,
+49,48,49,53,41,32,95,57,56,50,41,41,41,41,32,40,85,32,73,41,
+41,41,41,41,41,41,41,41,41,41,41,32,40,40,40,83,39,32,95,52,
+51,48,41,32,40,40,66,32,85,41,32,40,40,40,67,39,32,40,67,39,
+32,66,41,41,32,40,40,40,67,39,32,67,41,32,40,40,66,32,40,67,
+32,40,95,50,50,51,32,95,51,49,52,41,41,41,32,40,40,66,32,40,
+95,52,51,57,32,95,51,49,53,41,41,32,40,95,52,51,49,32,95,54,
+54,52,41,41,41,41,32,75,41,41,32,40,40,67,32,79,41,32,75,41,
+41,41,41,32,73,41,41,41,41,41,41,32,40,40,65,32,58,49,53,53,
+50,32,40,40,66,32,40,40,95,51,53,32,95,54,56,41,32,40,95,55,
+52,32,95,49,51,53,51,41,41,41,32,40,40,66,32,40,80,32,40,40,
+95,51,55,32,95,54,56,41,32,95,49,53,54,56,41,41,41,32,40,40,
+66,32,90,41,32,40,40,66,32,85,41,32,40,40,66,32,40,66,32,40,
+40,67,39,32,40,95,51,53,32,95,54,56,41,41,32,95,49,52,48,50,
+41,41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,
+66,32,40,66,32,95,50,56,50,41,41,32,40,40,40,67,39,32,66,41,
+32,95,49,50,57,49,41,32,40,95,57,55,57,32,95,57,56,49,41,41,
+41,41,32,40,40,66,32,40,95,53,48,52,32,34,67,97,110,110,111,116,
+32,115,97,116,105,115,102,121,32,99,111,110,115,116,114,97,105,110,116,58,
+32,34,41,41,32,95,49,48,49,55,41,41,41,41,41,41,41,41,32,40,
+40,65,32,58,49,53,53,51,32,40,40,40,83,39,32,66,41,32,40,66,
+39,32,40,40,66,32,40,95,51,53,32,95,54,56,41,41,32,95,49,52,
+56,53,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,67,32,95,
+49,51,55,49,41,41,41,41,32,95,49,53,53,52,41,41,41,32,40,40,
+65,32,58,49,53,53,52,32,40,40,66,32,40,66,32,95,57,49,56,41,
+41,32,40,40,66,32,95,57,49,56,41,32,40,40,66,32,95,57,49,55,
+41,32,40,40,67,32,95,49,48,56,52,41,32,95,49,51,48,52,41,41,
+41,41,41,32,40,40,65,32,58,49,53,53,53,32,40,40,40,67,39,32,
+40,67,39,32,67,41,41,32,40,40,66,32,40,40,83,39,32,83,41,32,
+95,57,57,55,41,41,32,40,40,40,67,39,32,40,67,39,32,67,41,41,
+32,40,40,40,67,39,32,40,83,39,32,83,41,41,32,40,40,67,39,32,
+40,67,39,32,40,95,52,55,52,32,95,49,53,53,55,41,41,41,32,80,
+41,41,32,40,40,40,67,39,32,67,41,32,80,41,32,40,40,67,32,66,
+41,32,40,40,66,32,40,40,67,39,32,66,41,32,40,40,67,32,40,40,
+67,32,61,61,41,32,35,49,41,41,32,95,53,50,49,41,41,41,32,40,
+40,66,32,85,41,32,40,40,40,67,39,32,66,41,32,66,41,32,40,40,
+66,32,40,66,32,40,40,67,39,32,66,41,32,40,40,67,32,40,40,67,
+32,61,61,41,32,35,49,41,41,32,95,53,50,49,41,41,41,41,32,40,
+40,66,32,40,66,32,85,41,41,32,40,40,66,32,40,66,32,40,66,32,
+40,66,32,95,53,50,50,41,41,41,41,32,40,40,66,32,40,66,32,40,
+66,32,40,66,32,40,80,32,40,95,57,50,52,32,95,53,48,50,41,41,
+41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,67,
+39,32,66,41,41,32,40,40,66,32,40,66,32,79,41,41,32,80,41,41,
+41,32,40,40,40,67,39,32,40,67,39,32,79,41,41,32,80,41,32,75,
+41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,95,53,50,50,32,
+40,40,80,32,40,95,57,50,52,32,95,53,48,50,41,41,32,95,53,48,
+50,41,41,41,41,41,32,40,95,53,50,50,32,40,40,80,32,40,95,57,
+50,52,32,95,53,48,50,41,41,32,95,53,48,50,41,41,41,41,32,40,
+40,65,32,58,49,53,53,54,32,40,40,40,67,39,32,40,67,39,32,67,
+41,41,32,40,40,40,67,39,32,40,67,39,32,83,41,41,32,40,40,40,
+83,39,32,40,83,39,32,40,83,39,32,67,39,41,41,41,32,40,40,40,
+83,39,32,40,83,39,32,66,41,41,32,40,40,66,32,40,66,32,95,49,
+51,48,41,41,32,95,57,57,55,41,41,32,40,40,40,83,39,32,40,83,
+39,32,40,83,39,32,95,49,51,48,41,41,41,32,40,40,66,32,40,66,
+32,40,95,52,55,52,32,95,49,53,53,55,41,41,41,32,80,41,41,32,
+40,40,66,32,40,66,32,40,95,52,55,52,32,95,49,53,53,55,41,41,
+41,32,40,67,32,80,41,41,41,41,41,32,40,40,40,83,39,32,40,83,
+39,32,66,41,41,32,40,40,66,32,66,39,41,32,40,40,66,32,40,66,
+32,95,53,48,51,41,41,32,80,41,41,41,32,40,40,40,83,39,32,40,
+83,39,32,66,41,41,32,40,40,66,32,66,39,41,32,40,40,66,32,40,
+66,32,95,53,48,51,41,41,32,40,67,32,80,41,41,41,41,32,40,40,
+40,83,39,32,40,83,39,32,40,83,39,32,40,83,39,32,95,53,48,52,
+41,41,41,41,32,40,40,66,32,40,66,32,67,41,41,32,80,41,41,32,
+40,40,40,67,39,32,40,67,39,32,40,83,39,32,40,67,39,32,95,53,
+48,52,41,41,41,41,32,40,40,66,32,40,66,32,67,41,41,32,40,67,
+32,80,41,41,41,32,73,41,41,41,41,41,41,32,73,41,41,32,40,40,
+66,32,40,66,32,95,52,51,48,41,41,32,40,40,66,32,40,66,32,85,
+41,41,32,40,40,66,32,40,40,67,39,32,40,67,39,32,66,41,41,32,
+40,40,40,67,39,32,67,41,32,95,57,57,55,41,32,75,41,41,41,32,
+40,40,66,32,40,66,32,40,95,52,51,48,32,40,40,67,32,79,41,32,
+75,41,41,41,41,32,40,40,40,83,39,32,40,83,39,32,79,41,41,32,
+80,41,32,40,40,40,67,39,32,40,67,39,32,79,41,41,32,40,67,32,
+80,41,41,32,75,41,41,41,41,41,41,41,41,32,40,40,65,32,58,49,
+53,53,55,32,40,40,67,32,66,41,32,40,40,40,67,39,32,66,41,32,
+66,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,67,39,32,
+66,41,41,32,40,40,66,32,40,66,32,95,49,51,49,41,41,32,95,57,
+57,55,41,41,41,32,95,57,57,55,41,41,41,41,32,40,40,65,32,58,
+49,53,53,56,32,80,41,32,40,40,65,32,58,49,53,53,57,32,40,40,
+66,32,40,66,32,85,41,41,32,40,40,40,67,39,32,40,67,39,32,40,
+67,39,32,67,41,41,41,32,40,40,66,32,40,40,83,39,32,66,41,32,
+40,40,66,32,67,41,32,40,95,52,55,54,32,95,49,48,55,56,41,41,
+41,41,32,40,40,40,83,39,32,40,83,39,32,67,41,41,32,40,40,66,
+32,40,40,83,39,32,67,41,32,95,49,49,49,52,41,41,32,40,40,66,
+32,40,66,32,40,95,50,56,50,32,95,49,57,50,41,41,41,32,40,40,
+66,32,40,66,32,40,95,53,48,52,32,34,117,110,100,101,102,105,110,101,
+100,32,34,41,41,41,32,40,40,40,67,39,32,66,41,32,95,53,48,52,
+41,32,40,40,66,32,40,95,53,48,52,32,34,58,32,34,41,41,32,95,
+49,48,56,56,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,83,
+32,40,40,67,32,83,41,32,40,40,66,32,40,40,67,39,32,80,41,32,
+95,49,57,51,41,41,32,40,90,32,75,41,41,41,41,41,41,32,40,40,
+66,32,40,66,32,40,66,32,40,95,50,56,50,32,95,49,57,50,41,41,
+41,41,32,40,40,66,32,40,66,32,40,66,32,40,95,53,48,52,32,34,
+97,109,98,105,103,117,111,117,115,32,34,41,41,41,41,32,40,40,40,67,
+39,32,66,41,32,40,66,39,32,95,53,48,52,41,41,32,40,40,66,32,
+40,66,32,40,95,53,48,52,32,34,58,32,34,41,41,41,32,40,40,40,
+67,39,32,66,41,32,40,40,66,32,95,53,48,52,41,32,95,49,48,56,
+56,41,41,32,40,40,66,32,40,95,53,48,52,32,40,40,79,32,35,51,
+50,41,32,75,41,41,41,32,40,40,66,32,40,95,49,56,53,54,32,40,
+40,95,50,56,52,32,95,49,48,56,56,41,32,95,49,51,50,57,41,41,
+41,32,40,95,52,51,48,32,40,85,32,40,90,32,40,40,67,32,79,41,
+32,75,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,95,49,
+57,51,41,41,41,32,40,40,65,32,58,49,53,54,48,32,40,40,40,67,
+39,32,40,67,39,32,95,49,53,53,56,41,41,32,95,49,49,49,49,41,
+32,95,53,48,50,41,41,32,40,40,65,32,58,49,53,54,49,32,40,40,
+40,67,39,32,95,49,53,53,56,41,32,95,49,49,49,48,41,32,95,53,
+48,50,41,41,32,40,40,65,32,58,49,53,54,50,32,40,85,32,40,75,
+32,40,95,52,51,49,32,95,54,54,53,41,41,41,41,32,40,40,65,32,
+58,49,53,54,51,32,40,40,66,32,40,66,32,85,41,41,32,40,40,66,
+32,40,66,32,40,40,67,39,32,66,41,32,95,49,53,53,56,41,41,41,
+32,40,40,66,32,40,66,32,95,53,48,51,41,41,32,80,41,41,41,41,
+32,40,40,65,32,58,49,53,54,52,32,40,40,66,32,40,66,32,85,41,
+41,32,40,40,66,32,40,66,32,40,66,32,95,49,53,53,56,41,41,41,
+32,95,49,49,49,53,41,41,41,32,40,40,65,32,58,49,53,54,53,32,
+40,40,40,95,51,53,32,95,54,56,41,32,40,95,55,52,32,95,49,51,
+53,48,41,41,32,40,40,66,32,40,40,95,51,54,32,95,54,56,41,32,
+40,95,49,51,54,49,32,95,53,48,50,41,41,41,32,40,40,95,52,55,
+32,95,54,56,41,32,95,49,51,55,52,41,41,41,41,32,40,40,65,32,
+58,49,53,54,54,32,95,49,51,53,41,32,40,40,65,32,58,49,53,54,
+55,32,73,41,32,40,40,65,32,58,49,53,54,56,32,73,41,32,40,40,
+65,32,58,49,53,54,57,32,43,41,32,40,40,65,32,58,49,53,55,48,
+32,45,41,32,40,40,65,32,58,49,53,55,49,32,42,41,32,40,40,65,
+32,58,49,53,55,50,32,113,117,111,116,41,32,40,40,65,32,58,49,53,
+55,51,32,114,101,109,41,32,40,40,65,32,58,49,53,55,52,32,115,117,
+98,116,114,97,99,116,41,32,40,40,65,32,58,49,53,55,53,32,110,101,
+103,41,32,40,40,65,32,58,49,53,55,54,32,61,61,41,32,40,40,65,
+32,58,49,53,55,55,32,47,61,41,32,40,40,65,32,58,49,53,55,56,
+32,60,41,32,40,40,65,32,58,49,53,55,57,32,60,61,41,32,40,40,
+65,32,58,49,53,56,48,32,62,41,32,40,40,65,32,58,49,53,56,49,
+32,62,61,41,32,40,40,65,32,58,49,53,56,50,32,102,43,41,32,40,
+40,65,32,58,49,53,56,51,32,102,45,41,32,40,40,65,32,58,49,53,
+56,52,32,102,42,41,32,40,40,65,32,58,49,53,56,53,32,102,47,41,
+32,40,40,65,32,58,49,53,56,54,32,102,110,101,103,41,32,40,40,65,
+32,58,49,53,56,55,32,102,61,61,41,32,40,40,65,32,58,49,53,56,
+56,32,102,47,61,41,32,40,40,65,32,58,49,53,56,57,32,102,60,41,
+32,40,40,65,32,58,49,53,57,48,32,102,60,61,41,32,40,40,65,32,
+58,49,53,57,49,32,102,62,41,32,40,40,65,32,58,49,53,57,50,32,
+102,62,61,41,32,40,40,65,32,58,49,53,57,51,32,102,115,104,111,119,
+41,32,40,40,65,32,58,49,53,57,52,32,102,114,101,97,100,41,32,40,
+40,65,32,58,49,53,57,53,32,105,116,111,102,41,32,40,40,65,32,58,
+49,53,57,54,32,43,41,32,40,40,65,32,58,49,53,57,55,32,45,41,
+32,40,40,65,32,58,49,53,57,56,32,42,41,32,40,40,65,32,58,49,
+53,57,57,32,117,113,117,111,116,41,32,40,40,65,32,58,49,54,48,48,
+32,117,114,101,109,41,32,40,40,65,32,58,49,54,48,49,32,97,110,100,
+41,32,40,40,65,32,58,49,54,48,50,32,111,114,41,32,40,40,65,32,
+58,49,54,48,51,32,120,111,114,41,32,40,40,65,32,58,49,54,48,52,
+32,115,104,108,41,32,40,40,65,32,58,49,54,48,53,32,115,104,114,41,
+32,40,40,65,32,58,49,54,48,54,32,97,115,104,114,41,32,40,40,65,
+32,58,49,54,48,55,32,105,110,118,41,32,40,40,65,32,58,49,54,48,
+56,32,116,111,68,98,108,41,32,40,40,65,32,58,49,54,48,57,32,116,
+111,73,110,116,41,32,40,40,65,32,58,49,54,49,48,32,61,61,41,32,
+40,40,65,32,58,49,54,49,49,32,47,61,41,32,40,40,65,32,58,49,
+54,49,50,32,117,60,41,32,40,40,65,32,58,49,54,49,51,32,117,60,
+61,41,32,40,40,65,32,58,49,54,49,52,32,117,62,41,32,40,40,65,
+32,58,49,54,49,53,32,117,62,61,41,32,40,40,65,32,58,49,54,49,
+54,32,73,41,32,40,40,65,32,58,49,54,49,55,32,73,41,32,40,40,
+65,32,58,49,54,49,56,32,61,61,41,32,40,40,65,32,58,49,54,49,
+57,32,47,61,41,32,40,40,65,32,58,49,54,50,48,32,60,41,32,40,
+40,65,32,58,49,54,50,49,32,60,61,41,32,40,40,65,32,58,49,54,
+50,50,32,62,41,32,40,40,65,32,58,49,54,50,51,32,62,61,41,32,
+40,40,65,32,58,49,54,50,52,32,101,114,114,111,114,41,32,40,40,65,
+32,58,49,54,50,53,32,89,41,32,40,40,65,32,58,49,54,50,54,32,
+115,101,113,41,32,40,40,65,32,58,49,54,50,55,32,115,99,109,112,41,
+32,40,40,65,32,58,49,54,50,56,32,105,99,109,112,41,32,40,40,65,
+32,58,49,54,50,57,32,105,99,109,112,41,32,40,40,65,32,58,49,54,
+51,48,32,115,101,113,117,97,108,41,32,40,40,65,32,58,49,54,51,49,
+32,99,104,114,41,32,40,40,65,32,58,49,54,51,50,32,111,114,100,41,
+32,40,40,65,32,58,49,54,51,51,32,73,41,32,40,40,65,32,58,49,
+54,51,52,32,73,79,46,62,62,61,41,32,40,40,65,32,58,49,54,51,
+53,32,73,79,46,62,62,41,32,40,40,65,32,58,49,54,51,54,32,73,
+79,46,114,101,116,117,114,110,41,32,40,40,65,32,58,49,54,51,55,32,
+73,79,46,103,101,116,65,114,103,115,41,32,40,40,65,32,58,49,54,51,
+56,32,73,79,46,112,101,114,102,111,114,109,73,79,41,32,40,40,65,32,
+58,49,54,51,57,32,73,79,46,99,97,116,99,104,41,32,40,40,65,32,
+58,49,54,52,48,32,40,114,110,102,32,35,48,41,41,32,40,40,65,32,
+58,49,54,52,49,32,40,114,110,102,32,35,49,41,41,32,40,40,65,32,
+58,49,54,52,50,32,110,101,119,67,65,83,116,114,105,110,103,76,101,110,
+41,32,40,40,65,32,58,49,54,52,51,32,112,101,101,107,67,65,83,116,
+114,105,110,103,41,32,40,40,65,32,58,49,54,52,52,32,112,101,101,107,
+67,65,83,116,114,105,110,103,76,101,110,41,32,40,40,65,32,58,49,54,
+52,53,32,116,111,80,116,114,41,32,40,40,65,32,58,49,54,52,54,32,
+116,111,73,110,116,41,32,40,40,65,32,58,49,54,52,55,32,116,111,80,
+116,114,41,32,40,40,65,32,58,49,54,52,56,32,116,111,73,110,116,41,
+32,40,40,65,32,58,49,54,52,57,32,40,40,40,89,32,40,40,40,67,
+39,32,67,41,32,40,40,66,32,40,40,83,39,32,83,39,41,32,40,40,
+67,32,95,49,54,49,48,41,32,35,48,41,41,41,32,40,40,40,67,39,
+32,40,67,39,32,66,41,41,32,40,40,67,32,66,41,32,40,40,67,32,
+95,49,54,48,53,41,32,35,49,41,41,41,32,40,40,67,32,95,49,53,
+54,57,41,32,35,49,41,41,41,41,32,73,41,41,32,40,95,49,54,48,
+55,32,35,48,41,41,32,35,48,41,41,32,40,40,65,32,58,49,54,53,
+48,32,94,105,115,119,105,110,100,111,119,115,41,32,40,40,65,32,58,49,
+54,53,49,32,40,40,95,49,53,55,54,32,40,95,49,54,51,56,32,95,
+49,54,53,48,41,41,32,35,49,41,41,32,40,40,65,32,58,49,54,53,
+50,32,112,61,61,41,32,40,40,65,32,58,49,54,53,51,32,112,110,117,
+108,108,41,32,40,40,65,32,58,49,54,53,52,32,112,99,97,115,116,41,
+32,40,40,65,32,58,49,54,53,53,32,112,43,41,32,40,40,65,32,58,
+49,54,53,54,32,112,45,41,32,40,40,65,32,58,49,54,53,55,32,65,
+46,97,108,108,111,99,41,32,40,40,65,32,58,49,54,53,56,32,65,46,
+115,105,122,101,41,32,40,40,65,32,58,49,54,53,57,32,65,46,114,101,
+97,100,41,32,40,40,65,32,58,49,54,54,48,32,65,46,119,114,105,116,
+101,41,32,40,40,65,32,58,49,54,54,49,32,65,46,61,61,41,32,40,
+40,65,32,58,49,54,54,50,32,94,103,101,116,82,97,119,41,32,40,40,
+65,32,58,49,54,54,51,32,40,75,32,40,40,40,95,51,53,32,95,49,
+54,57,55,41,32,40,40,40,95,49,54,54,54,32,40,40,80,32,95,53,
+48,50,41,32,95,53,48,50,41,41,32,75,41,32,75,41,41,32,40,85,
+32,40,75,32,40,95,51,55,32,95,49,54,57,55,41,41,41,41,41,41,
+32,40,40,65,32,58,49,54,54,52,32,40,40,40,83,39,32,66,41,32,
+40,40,66,32,40,95,51,53,32,95,49,54,57,55,41,41,32,40,40,67,
+32,95,49,55,48,56,41,32,95,49,54,57,49,41,41,41,32,40,40,66,
+32,40,66,32,40,40,67,39,32,40,95,51,53,32,95,49,54,57,55,41,
+41,32,40,40,80,32,40,40,95,51,55,32,95,49,54,57,55,41,32,95,
+53,48,50,41,41,32,40,40,40,67,39,32,40,95,51,53,32,95,49,54,
+57,55,41,41,32,95,49,55,50,50,41,32,40,40,66,32,40,40,40,83,
+39,32,95,50,57,50,41,32,95,52,52,57,41,32,40,95,51,55,32,95,
+49,54,57,55,41,41,41,32,95,49,56,53,56,41,41,41,41,41,41,32,
+40,40,66,32,40,40,67,39,32,66,41,32,40,40,66,32,40,95,51,54,
+32,95,49,54,57,55,41,41,32,95,49,55,49,53,41,41,41,32,40,40,
+66,32,40,40,67,39,32,40,95,51,53,32,95,49,54,57,55,41,41,32,
+40,40,67,32,40,40,40,67,39,32,95,49,54,54,54,41,32,40,40,40,
+67,39,32,80,41,32,95,52,54,51,41,32,95,53,48,50,41,41,32,75,
+41,41,32,75,41,41,41,32,40,40,66,32,85,41,32,40,40,40,67,39,
+32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,40,95,51,54,
+32,95,49,54,57,55,41,41,41,32,40,40,40,67,39,32,66,41,32,40,
+40,66,32,95,50,56,50,41,32,95,49,55,49,57,41,41,32,95,49,56,
+53,57,41,41,41,32,40,95,51,55,32,95,49,54,57,55,41,41,41,41,
+41,41,41,41,32,40,40,65,32,58,49,54,54,53,32,40,40,40,95,51,
+53,32,95,49,54,57,55,41,32,95,49,54,54,50,41,32,40,40,40,83,
+39,32,40,95,51,54,32,95,49,54,57,55,41,41,32,40,40,40,67,39,
+32,95,50,56,50,41,32,40,40,66,32,40,95,52,56,32,95,49,54,57,
+55,41,41,32,40,40,67,32,40,95,53,57,51,32,95,51,49,53,41,41,
+32,35,48,41,41,41,32,40,95,50,55,32,34,103,101,116,82,97,119,32,
+102,97,105,108,101,100,34,41,41,41,32,40,95,51,55,32,95,49,54,57,
+55,41,41,41,41,32,40,40,65,32,58,49,54,54,54,32,40,40,66,32,
+89,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,40,95,51,
+54,32,95,49,54,57,55,41,32,40,95,49,55,48,53,32,95,49,55,48,
+50,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,
+32,40,40,95,51,53,32,95,49,54,57,55,41,32,95,49,54,54,53,41,
+41,41,41,41,32,40,40,40,83,39,32,40,67,39,32,40,67,39,32,40,
+67,39,32,67,41,41,41,41,32,40,40,40,67,39,32,40,83,39,32,40,
+83,39,32,40,83,39,32,40,67,39,32,67,41,41,41,41,41,32,40,40,
+40,67,39,32,40,83,39,32,40,83,39,32,40,83,39,32,40,67,39,32,
+40,67,39,32,83,41,41,41,41,41,41,32,40,40,40,67,39,32,40,67,
+39,32,40,83,39,32,40,83,39,32,40,67,39,32,40,67,39,32,40,67,
+39,32,67,41,41,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,
+32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,
+32,40,67,39,32,83,41,41,41,41,41,41,41,41,32,40,40,40,83,39,
+32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,
+32,40,83,39,32,40,67,39,32,67,41,41,41,41,41,41,41,41,32,40,
+40,66,32,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,
+40,67,39,32,40,83,39,32,40,67,39,32,40,67,39,32,83,39,41,41,
+41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,
+40,66,32,40,66,32,40,66,32,40,66,32,67,41,41,41,41,41,41,41,
+41,32,40,40,40,67,39,32,40,83,39,32,40,83,39,32,40,67,39,32,
+40,83,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,
+67,41,41,41,41,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,
+32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,
+32,40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,41,41,41,41,
+41,41,41,41,32,40,40,40,83,39,32,40,83,39,32,40,83,39,32,40,
+67,39,32,40,67,39,32,40,83,39,32,40,67,39,32,40,67,39,32,40,
+67,39,32,40,67,39,32,40,67,39,32,83,41,41,41,41,41,41,41,41,
+41,41,41,32,40,40,40,83,39,32,40,83,39,32,40,83,39,32,40,67,
+39,32,40,67,39,32,40,83,39,32,40,67,39,32,40,67,39,32,40,67,
+39,32,40,67,39,32,40,67,39,32,40,83,39,32,67,41,41,41,41,41,
+41,41,41,41,41,41,41,32,40,40,40,83,39,32,40,83,39,32,40,83,
+39,32,40,67,39,32,66,41,41,41,41,32,40,40,66,32,40,66,32,40,
+66,32,40,40,83,39,32,83,39,41,32,40,40,66,32,67,39,41,32,40,
+40,66,32,67,39,41,32,40,40,66,32,67,39,41,32,40,40,66,32,67,
+39,41,32,40,40,66,32,67,39,41,32,40,40,66,32,83,39,41,32,40,
+40,66,32,67,39,41,32,40,40,66,32,67,39,41,32,40,40,95,50,50,
+51,32,95,51,49,52,41,32,40,40,95,53,56,49,32,95,51,49,48,41,
+32,40,95,51,57,50,32,35,52,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,67,
+41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,40,83,39,32,67,
+39,41,32,40,40,66,32,67,39,41,32,40,40,66,32,67,39,41,32,40,
+40,66,32,67,39,41,32,40,40,66,32,67,39,41,32,40,40,66,32,67,
+39,41,32,40,40,66,32,67,39,41,32,40,40,66,32,67,39,41,32,40,
+40,66,32,83,39,41,32,40,40,95,50,50,51,32,95,51,49,52,41,32,
+40,40,95,53,56,49,32,95,51,49,48,41,32,40,95,51,57,50,32,35,
+50,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,40,
+67,39,32,40,67,39,32,40,67,39,32,67,41,41,41,32,40,40,66,32,
+40,66,32,40,66,32,40,40,83,39,32,67,39,41,32,40,40,66,32,83,
+39,41,32,40,40,66,32,67,39,41,32,40,40,66,32,67,39,41,32,40,
+40,66,32,67,39,41,32,40,40,66,32,67,39,41,32,40,40,66,32,67,
+39,41,32,40,40,66,32,67,39,41,32,40,40,66,32,67,39,41,32,40,
+40,95,50,50,51,32,95,51,49,52,41,32,40,40,95,53,56,49,32,95,
+51,49,48,41,32,40,95,51,57,50,32,35,54,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,32,40,40,40,83,39,32,40,83,39,32,40,
+83,39,32,67,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,40,
+83,39,32,67,39,41,32,40,40,66,32,67,39,41,32,40,40,66,32,67,
+39,41,32,40,40,66,32,67,39,41,32,40,40,66,32,67,39,41,32,40,
+40,66,32,67,39,41,32,40,40,66,32,83,39,41,32,40,40,66,32,67,
+39,41,32,40,40,66,32,67,39,41,32,40,40,95,50,50,51,32,95,51,
+49,52,41,32,40,40,95,53,56,49,32,95,51,49,48,41,32,40,95,51,
+57,50,32,35,49,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+32,40,40,40,83,39,32,40,83,39,32,40,83,39,32,67,41,41,41,32,
+40,40,66,32,40,66,32,40,66,32,40,40,83,39,32,67,39,41,32,40,
+40,66,32,67,39,41,32,40,40,66,32,67,39,41,32,40,40,66,32,67,
+39,41,32,40,40,66,32,67,39,41,32,40,40,66,32,67,39,41,32,40,
+40,66,32,67,39,41,32,40,40,66,32,67,39,41,32,40,40,66,32,67,
+39,41,32,40,40,95,50,50,51,32,95,51,49,52,41,32,40,40,95,53,
+56,49,32,95,51,49,48,41,32,40,95,51,57,50,32,35,53,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,40,67,39,32,40,
+67,39,32,40,67,39,32,67,41,41,41,32,40,40,66,32,40,66,32,40,
+66,32,40,40,83,39,32,67,39,41,32,40,40,66,32,67,39,41,32,40,
+40,66,32,67,39,41,32,40,40,66,32,67,39,41,32,40,40,66,32,67,
+39,41,32,40,40,66,32,67,39,41,32,40,40,66,32,67,39,41,32,40,
+40,66,32,83,39,41,32,40,40,66,32,67,39,41,32,40,40,95,50,50,
+51,32,95,51,49,52,41,32,40,40,95,53,56,49,32,95,51,49,48,41,
+32,40,95,51,57,50,32,35,56,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,40,83,39,32,
+66,41,32,40,66,39,32,40,66,39,32,40,66,39,32,40,66,39,32,40,
+66,39,32,40,66,39,32,40,40,66,32,67,39,41,32,40,40,95,50,50,
+51,32,95,51,49,52,41,32,40,40,95,53,56,49,32,95,51,49,48,41,
+32,40,95,51,57,50,32,35,49,50,55,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,
+67,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,40,83,39,32,
+67,39,41,32,40,40,66,32,67,39,41,32,40,40,66,32,67,39,41,32,
+40,40,66,32,67,39,41,32,40,40,66,32,67,39,41,32,40,40,66,32,
+83,39,41,32,40,40,66,32,67,39,41,32,40,40,66,32,67,39,41,32,
+40,40,95,50,50,51,32,95,51,49,52,41,32,40,40,95,53,56,49,32,
+95,51,49,48,41,32,40,95,51,57,50,32,35,49,51,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
+40,40,83,39,32,66,41,32,40,66,39,32,40,66,39,32,40,66,39,32,
+40,66,39,32,40,40,66,32,67,39,41,32,40,40,66,32,67,39,41,32,
+40,40,95,50,50,51,32,95,51,49,52,41,32,40,40,95,53,56,49,32,
+95,51,49,48,41,32,40,95,51,57,50,32,35,49,48,41,41,41,41,41,
+41,41,41,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,
+67,39,32,67,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,40,
+83,39,32,67,39,41,32,40,40,66,32,67,39,41,32,40,40,66,32,67,
+39,41,32,40,40,66,32,67,39,41,32,40,40,66,32,83,39,41,32,40,
+40,66,32,67,39,41,32,40,40,66,32,67,39,41,32,40,40,95,50,50,
+51,32,95,51,49,52,41,32,40,40,95,53,56,49,32,95,51,49,48,41,
+32,40,95,51,57,50,32,35,49,52,41,41,41,41,41,41,41,41,41,41,
+41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,67,41,
+41,41,32,40,40,66,32,40,66,32,40,66,32,40,40,83,39,32,67,39,
+41,32,40,40,66,32,67,39,41,32,40,40,66,32,67,39,41,32,40,40,
+66,32,83,39,41,32,40,40,66,32,67,39,41,32,40,40,66,32,67,39,
+41,32,40,40,66,32,67,39,41,32,40,40,95,50,50,51,32,95,51,49,
+52,41,32,40,40,95,53,56,49,32,95,51,49,48,41,32,40,95,51,57,
+50,32,35,49,53,41,41,41,41,41,41,41,41,41,41,41,41,41,32,40,
+40,40,83,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,
+32,40,67,39,32,66,41,41,41,41,41,41,32,40,40,66,32,40,66,32,
+40,66,32,40,40,83,39,32,66,41,32,40,66,39,32,40,40,66,32,67,
+39,41,32,40,40,66,32,67,39,41,32,40,40,66,32,67,39,41,32,40,
+40,66,32,67,39,41,32,40,40,95,50,50,51,32,95,51,49,52,41,32,
+40,40,95,53,56,49,32,95,51,49,48,41,32,40,95,51,57,50,32,35,
+50,49,41,41,41,41,41,41,41,41,41,41,41,41,32,40,40,40,83,39,
+32,40,83,39,32,40,83,39,32,67,41,41,41,32,40,40,66,32,40,66,
+32,40,66,32,40,40,83,39,32,67,39,41,32,40,40,66,32,67,39,41,
+32,40,40,66,32,67,39,41,32,40,40,66,32,67,39,41,32,40,40,66,
+32,67,39,41,32,40,40,66,32,67,39,41,32,40,40,95,50,50,51,32,
+95,51,49,52,41,32,40,40,95,53,56,49,32,95,51,49,48,41,32,40,
+95,51,57,50,32,35,49,49,41,41,41,41,41,41,41,41,41,41,41,41,
+32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,
+83,39,32,66,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
+40,66,32,66,39,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
+40,66,32,66,39,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
+40,66,32,40,66,32,40,67,39,32,66,41,41,41,41,41,41,32,40,40,
+66,32,40,66,32,40,66,32,40,40,83,39,32,66,41,32,40,66,39,32,
+40,40,95,50,50,51,32,95,51,49,52,41,32,40,40,95,53,56,49,32,
+95,51,49,48,41,32,40,95,51,57,50,32,35,50,55,41,41,41,41,41,
+41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,40,83,39,32,40,
+67,39,32,66,41,41,32,40,40,40,83,39,32,95,49,51,49,41,32,40,
+40,67,32,40,95,53,57,54,32,95,51,49,53,41,41,32,35,51,50,41,
+41,32,40,40,67,32,40,95,53,57,51,32,95,51,49,53,41,41,32,35,
+49,50,55,41,41,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,
+40,67,39,32,66,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,
+67,39,32,40,40,83,39,32,40,95,51,54,32,95,49,54,57,55,41,41,
+32,95,49,55,49,48,41,41,41,41,41,32,40,40,66,32,40,66,32,40,
+40,83,39,32,66,41,32,40,66,39,32,40,40,66,32,40,95,51,54,32,
+95,49,54,57,55,41,41,32,95,49,55,49,53,41,41,41,41,41,32,40,
+40,66,32,40,66,32,40,40,83,39,32,40,67,39,32,66,41,41,32,40,
+40,66,32,40,66,32,40,95,51,54,32,95,49,54,57,55,41,41,41,32,
+40,40,66,32,85,41,32,95,52,52,57,41,41,41,41,41,32,40,40,40,
+67,39,32,66,41,32,67,39,41,32,40,67,32,95,53,48,51,41,41,41,
+41,41,41,32,95,49,52,54,41,41,41,41,41,41,41,32,40,40,66,32,
+40,66,32,40,66,32,40,66,32,40,66,32,40,40,95,51,53,32,95,49,
+54,57,55,41,32,95,49,54,54,53,41,41,41,41,41,41,32,40,40,40,
+83,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,67,
+41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,
+66,32,40,67,32,40,40,67,32,40,95,50,50,52,32,95,51,49,52,41,
+41,32,40,95,49,52,55,32,35,57,49,41,41,41,41,41,41,41,41,32,
+40,40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,40,40,95,51,
+53,32,95,49,54,57,55,41,32,95,49,54,54,53,41,41,41,41,41,41,
+32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,39,32,40,
+67,39,32,66,41,41,41,41,41,32,40,40,66,32,40,66,32,40,67,39,
+32,40,67,39,32,67,41,41,41,41,32,40,40,66,32,40,66,32,40,66,
+32,40,66,32,40,83,32,40,40,95,50,50,51,32,95,49,52,49,41,32,
+35,54,53,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,67,39,
+32,67,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,83,32,40,
+40,95,50,50,51,32,95,49,52,49,41,32,35,54,54,41,41,41,41,41,
+32,40,40,66,32,40,67,39,32,67,41,41,32,40,40,66,32,40,66,32,
+40,83,32,40,40,95,50,50,51,32,95,49,52,49,41,32,35,54,55,41,
+41,41,41,32,40,40,66,32,67,41,32,40,67,32,40,40,95,50,50,51,
+32,95,49,52,49,41,32,35,54,56,41,41,41,41,41,41,41,41,41,41,
+32,95,49,52,54,41,41,41,41,32,73,41,41,41,41,41,32,40,40,66,
+32,40,66,32,40,40,83,39,32,40,95,51,54,32,95,49,54,57,55,41,
+41,32,95,49,55,49,53,41,41,41,32,40,40,66,32,40,66,32,40,40,
+67,39,32,40,95,51,54,32,95,49,54,57,55,41,41,32,40,40,66,32,
+40,95,50,56,50,32,95,49,55,49,53,41,41,32,40,40,66,32,40,95,
+50,56,50,32,95,52,50,57,41,41,32,40,40,40,67,39,32,95,52,56,
+54,41,32,95,52,52,57,41,32,34,92,56,38,32,92,56,38,34,41,41,
+41,41,41,41,32,40,82,32,75,41,41,41,41,41,41,32,40,40,66,32,
+40,67,32,40,95,51,54,32,95,49,54,57,55,41,41,41,32,40,40,80,
+32,75,41,32,75,41,41,41,41,41,32,73,41,41,41,32,73,41,41,41,
+41,32,73,41,41,41,41,32,73,41,41,41,32,40,40,66,32,40,66,32,
+40,40,83,39,32,40,95,51,54,32,95,49,54,57,55,41,41,32,95,49,
+55,49,53,41,41,41,32,40,40,67,32,40,40,40,67,39,32,67,39,41,
+32,67,39,41,32,40,40,67,39,32,95,53,48,52,41,32,95,52,54,51,
+41,41,41,32,75,41,41,41,41,41,32,40,40,66,32,40,40,83,39,32,
+66,41,32,40,40,66,32,40,67,39,32,40,95,51,54,32,95,49,54,57,
+55,41,41,41,32,40,40,66,32,85,41,32,95,52,52,57,41,41,41,41,
+32,40,40,40,67,39,32,66,41,32,40,66,39,32,40,85,32,75,41,41,
+41,32,40,40,66,32,95,53,48,52,41,32,95,52,54,51,41,41,41,41,
+41,41,32,73,41,41,41,32,73,41,41,41,32,40,40,40,67,39,32,40,
+67,39,32,40,67,39,32,66,41,41,41,32,40,40,66,32,40,40,83,39,
+32,40,83,39,32,67,39,41,41,32,40,40,66,32,40,66,32,67,39,41,
+41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,95,49,51,49,41,
+32,95,52,50,56,41,41,32,95,52,50,56,41,41,41,41,32,40,40,66,
+32,40,66,32,40,67,32,40,67,39,32,66,41,41,41,41,32,40,40,66,
+32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,40,66,32,40,40,
+83,39,32,40,95,51,54,32,95,49,54,57,55,41,41,32,95,49,55,49,
+53,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,
+40,95,51,54,32,95,49,54,57,55,41,32,40,95,49,55,49,48,32,35,
+51,50,41,41,41,41,41,41,32,40,66,32,40,40,67,39,32,40,83,39,
+32,40,95,51,54,32,95,49,54,57,55,41,41,41,32,40,40,67,32,66,
+41,32,40,40,40,67,39,32,40,95,53,55,53,32,95,51,49,48,41,41,
+32,95,52,52,57,41,32,35,49,41,41,41,41,41,41,41,41,41,41,32,
+40,85,32,95,53,50,49,41,41,41,41,32,40,40,66,32,40,40,67,39,
+32,66,41,32,40,67,39,32,66,41,41,41,32,40,40,66,32,40,66,32,
+40,40,67,39,32,66,41,32,40,66,39,32,40,40,66,32,40,95,51,54,
+32,95,49,54,57,55,41,41,32,40,85,32,35,49,41,41,41,41,41,41,
+32,40,40,40,67,39,32,66,41,32,40,66,39,32,67,41,41,32,40,67,
+32,95,53,48,51,41,41,41,41,41,41,32,40,40,66,32,40,40,67,39,
+32,66,41,32,40,67,39,32,66,41,41,41,32,40,40,66,32,40,66,32,
+90,41,41,32,40,40,66,32,40,66,32,40,40,83,39,32,66,41,32,40,
+40,66,32,40,95,51,54,32,95,49,54,57,55,41,41,32,40,85,32,35,
+49,41,41,41,41,41,32,40,40,66,32,40,40,83,39,32,66,41,32,40,
+66,39,32,40,40,66,32,40,95,51,54,32,95,49,54,57,55,41,41,32,
+95,49,55,49,53,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
+40,66,32,40,40,95,51,54,32,95,49,54,57,55,41,32,40,95,49,55,
+49,48,32,35,51,50,41,41,41,41,41,41,32,40,40,66,32,40,40,83,
+39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,66,32,40,95,51,
+54,32,95,49,54,57,55,41,41,41,32,40,40,66,32,85,41,32,40,40,
+40,67,39,32,40,95,53,55,53,32,95,51,49,48,41,41,32,95,52,52,
+57,41,32,35,49,41,41,41,41,41,32,67,41,41,41,41,41,41,41,41,
+32,40,40,66,32,95,49,55,49,53,41,32,40,40,67,32,95,52,56,54,
+41,32,35,56,41,41,41,41,32,40,40,66,32,40,66,32,85,41,41,32,
+40,40,66,32,40,66,32,95,53,50,50,41,41,32,40,40,66,32,95,53,
+48,52,41,32,95,52,54,51,41,41,41,41,41,41,41,32,40,40,40,67,
+39,32,66,41,32,66,41,32,40,40,40,67,39,32,66,41,32,40,66,39,
+32,80,41,41,32,40,40,67,32,40,40,40,67,39,32,67,39,41,32,40,
+40,66,32,83,39,41,32,67,39,41,41,32,40,40,66,32,40,66,32,80,
+41,41,32,40,67,32,95,53,48,51,41,41,41,41,32,73,41,41,41,41,
+41,32,40,40,40,67,39,32,66,41,32,66,41,32,40,40,40,67,39,32,
+66,41,32,40,40,66,32,40,67,39,32,66,41,41,32,85,41,41,32,40,
+40,67,32,40,40,40,67,39,32,67,39,41,32,40,40,66,32,83,39,41,
+32,67,39,41,41,32,40,40,66,32,40,66,32,40,67,32,80,41,41,41,
+32,40,67,32,95,53,48,51,41,41,41,41,32,73,41,41,41,41,41,32,
+40,40,40,67,39,32,66,41,32,40,66,39,32,40,95,51,54,32,95,49,
+54,57,55,41,41,41,32,40,40,66,32,40,40,83,39,32,40,95,51,54,
+32,95,49,54,57,55,41,41,32,95,49,55,49,53,41,41,32,40,40,67,
+32,40,40,40,67,39,32,67,39,41,32,95,49,54,54,54,41,32,95,52,
+54,51,41,41,32,75,41,41,41,41,41,32,40,40,66,32,40,40,83,39,
+32,40,95,51,54,32,95,49,54,57,55,41,41,32,95,49,55,49,53,41,
+41,32,40,40,66,32,40,66,32,40,95,50,56,50,32,95,49,55,49,53,
+41,41,41,32,40,40,66,32,40,66,32,40,95,50,56,50,32,95,52,50,
+57,41,41,41,32,40,40,40,67,39,32,40,67,39,32,95,52,56,54,41,
+41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,95,53,55,53,
+32,95,51,49,48,41,41,32,95,52,52,57,41,41,32,95,52,52,57,41,
+41,32,34,92,56,38,32,92,56,38,34,41,41,41,41,41,41,32,40,40,
+66,32,40,66,32,82,41,41,32,40,40,66,32,40,66,32,40,40,83,39,
+32,66,41,32,40,40,66,32,40,95,51,54,32,95,49,54,57,55,41,41,
+32,95,49,55,49,48,41,41,41,41,32,40,40,40,67,39,32,66,41,32,
+66,41,32,40,67,32,95,53,48,51,41,41,41,41,41,41,32,73,41,41,
+32,40,40,66,32,40,66,32,40,40,95,51,54,32,95,49,54,57,55,41,
+32,40,95,49,55,49,48,32,35,49,48,41,41,41,41,32,40,40,66,32,
+40,66,32,40,40,95,51,54,32,95,49,54,57,55,41,32,40,95,49,55,
+48,53,32,95,49,55,48,50,41,41,41,41,32,40,40,66,32,40,40,67,
+39,32,40,66,32,40,95,51,55,32,95,49,54,57,55,41,41,41,32,40,
+40,40,83,39,32,40,67,39,32,80,41,41,32,40,40,66,32,40,83,32,
+95,53,48,52,41,41,32,40,40,40,67,39,32,66,41,32,40,85,32,95,
+53,48,50,41,41,32,40,40,40,67,39,32,67,41,32,40,40,66,32,40,
+83,32,40,40,95,50,50,51,32,95,49,52,51,41,32,75,41,41,41,32,
+40,40,40,67,39,32,67,41,32,40,40,67,32,40,40,40,83,39,32,83,
+39,41,32,40,40,66,32,95,49,51,49,41,32,40,40,66,32,95,49,51,
+50,41,32,95,52,50,56,41,41,41,32,40,40,66,32,40,67,32,40,95,
+50,50,51,32,95,49,52,51,41,41,41,32,95,52,57,54,41,41,41,32,
+40,40,67,32,79,41,32,75,41,41,41,32,95,53,48,50,41,41,41,32,
+95,53,48,50,41,41,41,41,32,73,41,41,41,32,40,40,40,83,39,32,
+95,53,48,52,41,32,40,40,66,32,95,52,54,51,41,32,95,54,54,52,
+41,41,32,95,54,54,53,41,41,41,41,41,41,41,41,41,32,40,40,65,
+32,58,49,54,54,55,32,94,117,110,108,105,110,107,41,32,40,40,65,32,
+58,49,54,54,56,32,40,40,40,67,39,32,40,95,51,53,32,95,49,54,
+57,55,41,41,32,40,40,67,32,95,55,49,53,41,32,95,49,54,54,55,
+41,41,32,40,40,40,67,39,32,95,50,56,50,41,32,40,40,66,32,40,
+95,52,56,32,95,49,54,57,55,41,41,32,40,40,67,32,40,95,50,50,
+52,32,95,51,49,52,41,41,32,35,48,41,41,41,32,40,95,50,55,32,
+34,114,101,109,111,118,101,70,105,108,101,32,102,97,105,108,101,100,34,41,
+41,41,41,32,40,40,65,32,58,49,54,54,57,32,40,40,95,50,56,50,
+32,95,49,54,51,56,41,32,40,40,40,95,51,53,32,95,49,54,57,55,
+41,32,95,49,54,51,55,41,32,95,51,48,54,41,41,41,32,40,40,65,
+32,58,49,54,55,48,32,40,95,51,48,55,32,95,49,54,54,57,41,41,
+32,40,40,65,32,58,49,54,55,49,32,40,40,66,32,40,66,32,40,40,
+95,51,53,32,95,49,54,57,55,41,32,40,95,51,48,55,32,95,49,54,
+54,57,41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,66,39,32,
+40,40,66,32,40,95,51,54,32,95,49,54,57,55,41,41,32,40,95,51,
+48,56,32,95,49,54,54,57,41,41,41,41,32,40,40,40,67,39,32,66,
+41,32,40,95,51,53,32,95,49,54,57,55,41,41,32,40,40,40,67,39,
+32,66,41,32,40,40,66,32,40,95,51,54,32,95,49,54,57,55,41,41,
+32,40,95,51,48,56,32,95,49,54,54,57,41,41,41,32,40,95,51,55,
+32,95,49,54,57,55,41,41,41,41,41,41,32,40,40,65,32,58,49,54,
+55,50,32,94,103,101,116,101,110,118,41,32,40,40,65,32,58,49,54,55,
+51,32,40,40,40,67,39,32,40,95,51,53,32,95,49,54,57,55,41,41,
+32,40,40,67,32,95,55,49,53,41,32,95,49,54,55,50,41,41,32,40,
+40,67,32,40,40,83,32,40,40,67,32,40,95,50,50,51,32,95,55,50,
+55,41,41,32,95,55,50,57,41,41,32,40,40,66,32,40,40,95,50,57,
+56,32,95,49,54,57,53,41,32,95,53,50,50,41,41,32,95,55,49,54,
+41,41,41,32,40,40,95,51,55,32,95,49,54,57,55,41,32,95,53,50,
+49,41,41,41,41,32,40,40,65,32,58,49,54,55,52,32,73,41,32,40,
+40,65,32,58,49,54,55,53,32,73,79,46,115,101,114,105,97,108,105,122,
+101,41,32,40,40,65,32,58,49,54,55,54,32,73,79,46,112,114,105,110,
+116,41,32,40,40,65,32,58,49,54,55,55,32,73,79,46,100,101,115,101,
+114,105,97,108,105,122,101,41,32,40,40,65,32,58,49,54,55,56,32,73,
+79,46,115,116,100,105,110,41,32,40,40,65,32,58,49,54,55,57,32,73,
+79,46,115,116,100,111,117,116,41,32,40,40,65,32,58,49,54,56,48,32,
+73,79,46,115,116,100,101,114,114,41,32,40,40,65,32,58,49,54,56,49,
+32,94,102,111,112,101,110,41,32,40,40,65,32,58,49,54,56,50,32,94,
+102,99,108,111,115,101,41,32,40,40,65,32,58,49,54,56,51,32,94,102,
+102,108,117,115,104,41,32,40,40,65,32,58,49,54,56,52,32,94,102,103,
+101,116,99,41,32,40,40,65,32,58,49,54,56,53,32,94,102,112,117,116,
+99,41,32,40,40,65,32,58,49,54,56,54,32,94,102,119,114,105,116,101,
+41,32,40,40,65,32,58,49,54,56,55,32,94,103,101,116,84,105,109,101,
+77,105,108,108,105,41,32,40,40,65,32,58,49,54,56,56,32,40,40,95,
+50,50,50,32,40,95,50,50,51,32,95,55,50,55,41,41,32,40,95,50,
+50,54,32,95,49,54,56,56,41,41,41,32,40,40,65,32,58,49,54,56,
+57,32,40,40,40,95,49,56,52,48,32,40,95,49,56,52,52,32,95,49,
+54,56,57,41,41,32,40,40,66,32,40,95,53,48,52,32,34,72,97,110,
+100,108,101,45,34,41,41,32,40,95,49,56,52,50,32,95,55,50,56,41,
+41,41,32,40,95,49,56,52,54,32,95,49,54,56,57,41,41,41,32,40,
+40,65,32,58,49,54,57,48,32,40,95,49,54,55,52,32,95,55,50,57,
+41,41,32,40,40,65,32,58,49,54,57,49,32,40,90,32,40,90,32,75,
+41,41,41,32,40,40,65,32,58,49,54,57,50,32,40,75,32,40,90,32,
+75,41,41,41,32,40,40,65,32,58,49,54,57,51,32,40,75,50,32,75,
+41,41,32,40,40,65,32,58,49,54,57,52,32,40,75,50,32,65,41,41,
+32,40,40,65,32,58,49,54,57,53,32,40,40,95,50,57,51,32,40,40,
+66,32,40,67,32,95,49,54,51,52,41,41,32,40,66,32,95,49,54,51,
+54,41,41,41,32,40,95,50,57,55,32,95,49,54,57,53,41,41,41,32,
+40,40,65,32,58,49,54,57,54,32,40,40,40,40,40,95,49,50,32,95,
+49,54,57,53,41,32,95,49,54,51,54,41,32,40,95,52,49,32,95,49,
+54,57,55,41,41,32,40,95,50,48,32,95,49,54,57,54,41,41,32,40,
+95,50,49,32,95,49,54,57,54,41,41,41,32,40,40,65,32,58,49,54,
+57,55,32,40,40,40,40,95,51,51,32,95,49,54,57,54,41,32,95,49,
+54,51,52,41,32,95,49,54,51,53,41,32,95,49,54,51,54,41,41,32,
+40,40,65,32,58,49,54,57,56,32,40,40,95,52,50,32,95,49,54,57,
+55,41,32,95,50,55,41,41,32,40,40,65,32,58,49,54,57,57,32,95,
+49,54,55,53,41,32,40,40,65,32,58,49,55,48,48,32,95,49,54,55,
+55,41,32,40,40,65,32,58,49,55,48,49,32,95,49,54,55,56,41,32,
+40,40,65,32,58,49,55,48,50,32,95,49,54,55,57,41,32,40,40,65,
+32,58,49,55,48,51,32,95,49,54,56,48,41,32,40,40,65,32,58,49,
+55,48,52,32,40,40,40,67,39,32,40,95,51,54,32,95,49,54,57,55,
+41,41,32,95,49,54,56,50,41,32,40,40,95,51,55,32,95,49,54,57,
+55,41,32,95,49,53,54,56,41,41,41,32,40,40,65,32,58,49,55,48,
+53,32,40,40,40,67,39,32,40,95,51,54,32,95,49,54,57,55,41,41,
+32,95,49,54,56,51,41,32,40,40,95,51,55,32,95,49,54,57,55,41,
+32,95,49,53,54,56,41,41,41,32,40,40,65,32,58,49,55,48,54,32,
+40,40,40,67,39,32,40,95,51,53,32,95,49,54,57,55,41,41,32,95,
+49,54,56,52,41,32,40,40,67,32,40,40,83,32,40,40,67,32,40,95,
+50,50,51,32,95,51,49,52,41,41,32,40,40,95,53,55,56,32,95,51,
+49,48,41,32,35,49,41,41,41,32,40,40,66,32,40,95,51,55,32,95,
+49,54,57,55,41,41,32,95,49,52,54,41,41,41,32,40,95,50,55,32,
+34,104,71,101,116,67,104,97,114,58,32,69,79,70,34,41,41,41,41,32,
+40,40,65,32,58,49,55,48,55,32,40,40,40,67,39,32,40,67,39,32,
+40,95,51,54,32,95,49,54,57,55,41,41,41,32,40,40,67,39,32,95,
+49,54,56,53,41,32,95,49,52,55,41,41,32,40,40,95,51,55,32,95,
+49,54,57,55,41,32,95,49,53,54,56,41,41,41,32,40,40,65,32,58,
+49,55,48,56,32,40,40,40,67,39,32,40,67,39,32,40,95,51,53,32,
+95,49,54,57,55,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,
+66,32,95,50,56,50,41,32,95,55,49,53,41,41,32,40,40,40,67,39,
+32,66,41,32,40,40,66,32,95,50,56,50,41,32,40,40,66,32,95,55,
+49,53,41,32,40,40,67,32,40,40,67,32,40,40,80,32,40,40,79,32,
+35,49,49,52,41,32,75,41,41,32,40,40,79,32,35,49,49,57,41,32,
+75,41,41,41,32,40,40,79,32,35,57,55,41,32,75,41,41,41,32,34,
+119,43,34,41,41,41,41,32,95,49,54,56,49,41,41,41,32,40,40,67,
+32,40,40,83,32,40,40,67,32,40,95,50,50,51,32,95,49,54,56,56,
+41,41,32,95,49,54,57,48,41,41,32,40,40,66,32,40,95,51,55,32,
+95,49,54,57,55,41,41,32,95,53,50,50,41,41,41,32,40,40,95,51,
+55,32,95,49,54,57,55,41,32,95,53,50,49,41,41,41,41,32,40,40,
+65,32,58,49,55,48,57,32,40,40,40,83,39,32,40,67,39,32,40,95,
+51,53,32,95,49,54,57,55,41,41,41,32,95,49,55,48,56,41,32,40,
+40,40,67,39,32,80,41,32,40,40,66,32,95,50,55,41,32,40,95,53,
+48,52,32,34,111,112,101,110,70,105,108,101,58,32,99,97,110,110,111,116,
+32,111,112,101,110,32,34,41,41,41,32,40,95,51,55,32,95,49,54,57,
+55,41,41,41,41,32,40,40,65,32,58,49,55,49,48,32,40,95,49,55,
+48,55,32,95,49,55,48,50,41,41,32,40,40,65,32,58,49,55,49,49,
+32,40,95,49,55,48,54,32,95,49,55,48,49,41,41,32,40,40,65,32,
+58,49,55,49,50,32,40,40,40,83,39,32,95,50,57,50,41,32,95,49,
+54,52,49,41,32,40,95,49,54,55,54,32,95,49,55,48,50,41,41,41,
+32,40,40,65,32,58,49,55,49,51,32,40,95,49,54,55,54,32,95,49,
+55,48,50,41,41,32,40,40,65,32,58,49,55,49,52,32,40,40,66,32,
+40,66,32,95,49,55,49,55,41,41,32,95,49,56,52,50,41,41,32,40,
+40,65,32,58,49,55,49,53,32,40,95,49,55,49,54,32,95,49,55,48,
+50,41,41,32,40,40,65,32,58,49,55,49,54,32,40,40,66,32,40,95,
+52,55,32,95,49,54,57,55,41,41,32,95,49,55,48,55,41,41,32,40,
+40,65,32,58,49,55,49,55,32,40,95,49,55,49,56,32,95,49,55,48,
+50,41,41,32,40,40,65,32,58,49,55,49,56,32,40,40,40,83,39,32,
+40,67,39,32,40,95,51,54,32,95,49,54,57,55,41,41,41,32,95,49,
+55,49,54,41,32,40,40,67,32,95,49,55,48,55,41,32,35,49,48,41,
+41,41,32,40,40,65,32,58,49,55,49,57,32,40,40,40,67,39,32,66,
+41,32,40,40,66,32,40,95,51,53,32,95,49,54,57,55,41,41,32,40,
+40,67,32,95,49,55,48,57,41,32,95,49,54,57,50,41,41,41,32,40,
+40,40,67,39,32,40,83,39,32,40,95,51,54,32,95,49,54,57,55,41,
+41,41,32,40,67,32,95,49,55,49,54,41,41,32,95,49,55,48,52,41,
+41,41,32,40,40,65,32,58,49,55,50,48,32,40,40,40,67,39,32,66,
+41,32,40,40,66,32,40,95,51,53,32,95,49,54,57,55,41,41,32,40,
+40,67,32,95,49,55,48,57,41,32,95,49,54,57,50,41,41,41,32,40,
+40,40,67,39,32,66,41,32,40,40,66,32,40,95,51,53,32,95,49,54,
+57,55,41,41,32,95,55,49,52,41,41,32,40,40,66,32,85,41,32,40,
+40,40,83,39,32,40,83,39,32,40,83,39,32,40,95,51,53,32,95,49,
+54,57,55,41,41,41,41,32,40,40,67,39,32,67,41,32,40,40,67,32,
+95,49,54,56,54,41,32,35,49,41,41,41,32,40,40,66,32,40,40,67,
+39,32,66,41,32,40,66,39,32,40,40,66,32,40,95,51,54,32,95,49,
+54,57,55,41,41,32,95,55,49,57,41,41,41,41,32,40,40,40,67,39,
+32,66,41,32,40,66,39,32,40,40,66,32,40,95,51,54,32,95,49,54,
+57,55,41,41,32,95,49,55,48,52,41,41,41,32,40,40,40,67,39,32,
+40,67,39,32,95,50,56,50,41,41,32,40,40,66,32,40,66,32,40,95,
+52,56,32,95,49,54,57,55,41,41,41,32,40,95,50,50,52,32,95,51,
+49,52,41,41,41,32,40,95,50,55,32,34,119,114,105,116,101,70,105,108,
+101,70,97,115,116,32,102,97,105,108,101,100,34,41,41,41,41,41,41,41,
+41,41,32,40,40,65,32,58,49,55,50,49,32,40,40,40,67,39,32,40,
+95,51,53,32,95,49,54,57,55,41,41,32,40,40,67,32,95,49,55,48,
+57,41,32,95,49,54,57,49,41,41,32,40,40,40,67,39,32,40,95,51,
+53,32,95,49,54,57,55,41,41,32,95,49,55,50,50,41,32,40,95,51,
+55,32,95,49,54,57,55,41,41,41,41,32,40,40,65,32,58,49,55,50,
+50,32,40,40,40,83,39,32,40,95,51,53,32,95,49,54,57,55,41,41,
+32,95,49,54,56,52,41,32,40,40,40,83,39,32,67,41,32,40,40,66,
+32,40,83,32,40,40,67,32,40,95,50,50,51,32,95,51,49,52,41,41,
+32,40,40,95,53,55,56,32,95,51,49,48,41,32,35,49,41,41,41,41,
+32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,95,51,53,32,95,
+49,54,57,55,41,41,32,40,40,66,32,95,49,55,50,54,41,32,95,49,
+55,50,50,41,41,41,32,40,40,66,32,40,66,32,40,95,51,55,32,95,
+49,54,57,55,41,41,41,32,40,40,66,32,95,53,48,51,41,32,95,49,
+52,54,41,41,41,41,41,32,40,40,40,67,39,32,40,95,51,54,32,95,
+49,54,57,55,41,41,32,95,49,55,48,52,41,32,40,40,95,51,55,32,
+95,49,54,57,55,41,32,75,41,41,41,41,41,32,40,40,65,32,58,49,
+55,50,51,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,95,51,
+53,32,95,49,54,57,55,41,41,32,40,40,67,32,95,49,55,48,57,41,
+32,95,49,54,57,50,41,41,41,32,40,40,40,67,39,32,40,83,39,32,
+40,95,51,54,32,95,49,54,57,55,41,41,41,32,40,67,32,95,49,54,
+57,57,41,41,32,95,49,55,48,52,41,41,41,32,40,40,65,32,58,49,
+55,50,52,32,40,40,40,67,39,32,40,95,51,53,32,95,49,54,57,55,
+41,41,32,40,40,67,32,95,49,55,48,57,41,32,95,49,54,57,49,41,
+41,32,40,40,40,83,39,32,40,95,51,53,32,95,49,54,57,55,41,41,
+32,95,49,55,48,48,41,32,40,40,40,67,39,32,66,41,32,40,40,66,
+32,40,95,51,54,32,95,49,54,57,55,41,41,32,95,49,55,48,52,41,
+41,32,40,95,51,55,32,95,49,54,57,55,41,41,41,41,41,32,40,40,
+65,32,58,49,55,50,53,32,95,49,54,56,55,41,32,40,40,65,32,58,
+49,55,50,54,32,40,40,66,32,40,95,51,55,32,95,49,54,57,55,41,
+41,32,95,49,54,51,56,41,41,32,40,40,65,32,58,49,55,50,55,32,
+40,75,50,32,40,40,95,51,55,32,95,49,54,57,55,41,32,95,49,53,
+54,56,41,41,41,32,40,40,65,32,58,49,55,50,56,32,94,116,109,112,
+110,97,109,101,41,32,40,40,65,32,58,49,55,50,57,32,40,40,66,32,
+40,40,40,67,39,32,40,95,51,53,32,95,49,54,57,55,41,41,32,40,
+40,40,83,39,32,95,50,56,50,41,32,40,40,66,32,95,55,49,53,41,
+32,40,85,32,75,41,41,41,32,40,40,40,67,39,32,95,50,56,52,41,
+32,40,40,66,32,95,55,49,53,41,32,40,85,32,65,41,41,41,32,95,
+49,55,50,56,41,41,41,32,40,40,40,83,39,32,40,95,51,53,32,95,
+49,54,57,55,41,41,32,95,55,49,54,41,32,40,40,40,67,39,32,66,
+41,32,40,40,66,32,40,95,51,54,32,95,49,54,57,55,41,41,32,95,
+55,49,57,41,41,32,40,40,40,83,39,32,40,95,51,53,32,95,49,54,
+57,55,41,41,32,40,40,67,32,95,49,55,48,57,41,32,95,49,54,57,
+50,41,41,32,40,40,66,32,40,66,32,40,95,51,55,32,95,49,54,57,
+55,41,41,41,32,80,41,41,41,41,41,41,32,40,40,40,83,39,32,40,
+95,52,54,54,32,40,40,67,32,40,95,50,50,52,32,95,49,52,49,41,
+41,32,35,52,54,41,41,41,32,95,52,54,51,41,32,40,40,66,32,40,
+40,67,39,32,67,41,32,40,40,66,32,40,83,32,40,40,95,50,50,51,
+32,95,49,52,51,41,32,75,41,41,41,32,40,40,66,32,40,80,32,40,
+40,40,110,111,77,97,116,99,104,32,34,46,47,108,105,98,47,83,121,115,
+116,101,109,47,73,79,46,104,115,34,41,32,35,50,50,54,41,32,35,49,
+52,41,41,41,32,40,90,32,40,40,66,32,40,40,67,39,32,80,41,32,
+95,52,54,51,41,41,32,40,40,66,32,40,95,53,48,51,32,35,52,54,
+41,41,32,95,52,54,51,41,41,41,41,41,41,41,32,40,40,67,32,80,
+41,32,75,41,41,41,41,41,32,40,40,65,32,58,49,55,51,48,32,85,
+41,32,40,40,65,32,58,49,55,51,49,32,40,85,32,73,41,41,32,40,
+40,65,32,58,49,55,51,50,32,40,75,32,40,110,111,68,101,102,97,117,
+108,116,32,34,80,114,105,110,116,79,114,82,117,110,46,112,114,105,110,116,
+79,114,82,117,110,34,41,41,41,32,40,40,65,32,58,49,55,51,51,32,
+40,95,49,55,51,48,32,73,41,41,32,40,40,65,32,58,49,55,51,52,
+32,40,40,66,32,95,49,55,51,48,41,32,40,40,66,32,40,66,32,95,
+49,55,49,55,41,41,32,95,49,56,52,50,41,41,41,32,40,40,65,32,
+58,49,55,51,53,32,94,109,100,53,70,105,108,101,41,32,40,40,65,32,
+58,49,55,51,54,32,73,41,32,40,40,65,32,58,49,55,51,55,32,40,
+40,95,50,50,50,32,40,95,50,50,51,32,40,95,52,49,57,32,95,54,
+57,49,41,41,41,32,40,95,50,50,54,32,95,49,55,51,55,41,41,41,
+32,40,40,65,32,58,49,55,51,56,32,40,40,40,95,49,56,52,48,32,
+40,95,49,56,52,52,32,95,49,55,51,56,41,41,32,40,40,66,32,40,
+95,53,48,52,32,34,77,68,53,34,41,41,32,40,95,49,56,52,50,32,
+40,95,52,50,52,32,95,54,57,52,41,41,41,41,32,40,95,49,56,52,
+54,32,95,49,55,51,56,41,41,41,32,40,40,65,32,58,49,55,51,57,
+32,35,49,54,41,32,40,40,65,32,58,49,55,52,48,32,40,40,66,32,
+40,40,95,51,53,32,95,49,54,57,55,41,32,40,95,55,50,49,32,95,
+49,55,51,57,41,41,41,32,40,40,40,67,39,32,40,83,39,32,40,95,
+51,54,32,95,49,54,57,55,41,41,41,32,95,49,55,51,53,41,32,40,
+40,40,83,39,32,40,95,51,53,32,95,49,54,57,55,41,41,32,40,40,
+66,32,95,55,49,55,41,32,40,40,67,32,80,41,32,95,49,55,51,57,
+41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,95,51,
+54,32,95,49,54,57,55,41,41,32,95,55,49,57,41,41,32,40,40,66,
+32,40,95,51,55,32,95,49,54,57,55,41,41,32,40,40,66,32,95,49,
+55,51,54,41,32,95,49,54,51,51,41,41,41,41,41,41,41,32,40,40,
+65,32,58,49,55,52,49,32,40,40,40,67,39,32,40,95,51,53,32,95,
+49,54,57,55,41,41,32,40,40,67,32,95,49,55,48,56,41,32,95,49,
+54,57,49,41,41,32,40,40,80,32,40,40,95,51,55,32,95,49,54,57,
+55,41,32,95,53,50,49,41,41,32,40,40,40,83,39,32,40,95,51,53,
+32,95,49,54,57,55,41,41,32,95,49,55,52,48,41,32,40,40,40,67,
+39,32,66,41,32,40,40,66,32,40,95,51,54,32,95,49,54,57,55,41,
+41,32,95,49,55,48,52,41,41,32,40,40,66,32,40,95,51,55,32,95,
+49,54,57,55,41,41,32,95,53,50,50,41,41,41,41,41,41,32,40,40,
+65,32,58,49,55,52,50,32,94,115,121,115,116,101,109,41,32,40,40,65,
+32,58,49,55,52,51,32,40,40,40,67,39,32,40,95,51,53,32,95,49,
+54,57,55,41,41,32,40,40,67,32,95,55,49,53,41,32,95,49,55,52,
+50,41,41,32,40,40,40,83,39,32,95,50,56,50,41,32,40,40,66,32,
+40,95,52,56,32,95,49,54,57,55,41,41,32,40,40,67,32,40,95,50,
+50,52,32,95,51,49,52,41,41,32,35,48,41,41,41,32,40,40,66,32,
+40,95,50,56,50,32,95,50,55,41,41,32,40,40,66,32,40,95,53,48,
+52,32,34,99,97,108,108,67,111,109,109,97,110,100,58,32,102,97,105,108,
+101,100,32,34,41,41,32,40,95,49,56,52,50,32,95,51,49,54,41,41,
+41,41,41,41,32,40,40,65,32,58,49,55,52,52,32,40,40,66,32,40,
+66,32,67,41,41,32,80,41,41,32,40,40,65,32,58,49,55,52,53,32,
+35,49,48,48,48,48,48,48,48,48,48,41,32,40,40,65,32,58,49,55,
+52,54,32,40,40,40,95,49,55,52,52,32,95,49,55,52,53,41,32,95,
+53,48,50,41,32,95,53,48,50,41,41,32,40,40,65,32,58,49,55,52,
+55,32,40,40,83,32,66,41,32,40,40,66,32,40,40,83,39,32,66,41,
+32,40,66,39,32,66,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
+40,66,32,40,66,32,90,41,41,41,41,41,32,40,40,67,39,32,40,67,
+39,32,40,67,39,32,40,67,39,32,67,41,41,41,41,32,40,40,66,32,
+40,40,83,39,32,66,41,32,40,66,39,32,40,40,66,32,40,83,39,32,
+67,39,41,41,32,40,95,53,57,51,32,95,51,49,53,41,41,41,41,41,
+32,40,40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,41,32,40,
+40,40,83,39,32,66,41,32,40,66,39,32,40,40,66,32,40,67,39,32,
+67,39,41,41,32,40,67,32,40,95,53,57,51,32,95,51,49,53,41,41,
+41,41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,
+66,32,66,39,41,32,95,49,55,52,52,41,41,32,95,53,48,52,41,41,
+41,41,41,41,41,41,41,32,40,40,65,32,58,49,55,52,56,32,40,95,
+52,51,56,32,95,49,55,52,55,41,41,32,40,40,65,32,58,49,55,52,
+57,32,80,41,32,40,40,65,32,58,49,55,53,48,32,85,41,32,40,40,
+65,32,58,49,55,53,49,32,40,85,32,73,41,41,32,40,40,65,32,58,
+49,55,53,50,32,40,40,95,50,57,51,32,40,40,66,32,40,66,32,40,
+95,50,56,50,32,95,49,55,53,48,41,41,41,32,40,40,66,32,40,40,
+67,39,32,67,41,32,95,49,55,53,49,41,41,32,40,40,66,32,40,66,
+32,95,49,55,52,57,41,41,32,40,40,66,32,95,52,51,48,41,32,40,
+40,66,32,85,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,
+79,41,41,41,32,40,66,32,80,41,41,32,75,41,41,41,41,41,41,41,
+32,40,95,50,57,55,32,95,49,55,53,50,41,41,41,32,40,40,65,32,
+58,49,55,53,51,32,40,40,40,40,40,95,49,50,32,95,49,55,53,50,
+41,32,40,40,66,32,40,95,50,56,50,32,95,49,55,53,48,41,41,32,
+40,40,40,67,39,32,40,67,39,32,95,49,55,52,57,41,41,32,40,40,
+40,67,39,32,40,67,39,32,79,41,41,32,80,41,32,75,41,41,32,95,
+49,55,52,54,41,41,41,32,40,95,52,49,32,95,49,55,53,52,41,41,
+32,40,40,40,67,39,32,66,41,32,40,95,51,53,32,95,49,55,53,52,
+41,41,32,75,41,41,32,40,95,50,49,32,95,49,55,53,51,41,41,41,
+32,40,40,65,32,58,49,55,53,52,32,40,40,40,40,95,51,51,32,95,
+49,55,53,51,41,32,40,40,66,32,40,66,32,40,95,50,56,50,32,95,
+49,55,53,48,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,
+32,67,41,32,95,49,55,53,49,41,41,32,40,40,40,67,39,32,40,67,
+39,32,66,41,41,32,40,40,66,32,40,66,32,95,52,53,52,41,41,32,
+40,40,66,32,40,66,32,40,95,52,51,48,32,40,40,40,67,39,32,79,
+41,32,40,40,40,83,39,32,80,41,32,40,85,32,75,41,41,32,40,85,
+32,65,41,41,41,32,75,41,41,41,41,32,40,40,66,32,95,52,51,48,
+41,32,40,40,40,67,39,32,40,67,39,32,79,41,41,32,40,40,40,67,
+39,32,40,83,39,32,95,49,55,53,49,41,41,32,40,40,67,32,66,41,
+32,40,85,32,75,41,41,41,32,40,85,32,65,41,41,41,32,75,41,41,
+41,41,41,32,40,40,66,32,40,40,67,39,32,66,41,32,40,40,66,32,
+95,49,55,52,57,41,32,95,52,50,57,41,41,41,32,40,40,66,32,40,
+66,32,95,49,55,52,56,41,41,32,95,53,48,51,41,41,41,41,41,41,
+32,40,95,51,57,32,95,49,55,53,52,41,41,32,40,95,49,52,32,95,
+49,55,53,51,41,41,41,32,40,40,65,32,58,49,55,53,53,32,40,40,
+95,52,50,32,95,49,55,53,52,41,32,40,40,66,32,40,95,50,56,50,
+32,95,49,55,53,48,41,41,32,40,40,66,32,85,41,32,40,40,66,32,
+90,41,32,40,40,66,32,40,66,32,40,95,49,55,52,57,32,95,53,48,
+50,41,41,41,32,40,40,66,32,40,67,32,40,40,40,83,39,32,95,49,
+55,52,52,41,32,95,52,52,57,41,32,40,95,52,52,55,32,35,49,41,
+41,41,41,32,40,40,67,32,79,41,32,75,41,41,41,41,41,41,41,41,
+32,40,40,65,32,58,49,55,53,54,32,40,40,40,40,40,95,48,32,95,
+49,55,53,51,41,32,40,40,95,50,56,50,32,95,49,55,53,48,41,32,
+40,85,32,40,90,32,40,40,66,32,40,95,49,55,52,57,32,95,53,48,
+50,41,41,32,40,40,67,32,40,40,40,83,39,32,95,49,55,52,52,41,
+32,95,52,52,57,41,32,40,95,52,52,55,32,35,49,41,41,41,32,95,
+53,48,50,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,95,50,
+56,50,32,95,49,55,53,48,41,41,41,32,40,40,40,67,39,32,66,41,
+32,40,40,66,32,83,41,32,95,49,55,53,49,41,41,32,40,40,40,67,
+39,32,40,67,39,32,66,41,41,32,40,40,66,32,66,39,41,32,95,49,
+55,53,49,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,
+67,39,32,66,41,41,32,40,40,66,32,40,66,32,95,49,55,52,57,41,
+41,32,95,53,48,52,41,41,41,32,95,49,55,52,55,41,41,41,41,41,
+32,40,95,56,32,95,49,55,53,54,41,41,32,40,95,57,32,95,49,55,
+53,54,41,41,41,32,40,40,65,32,58,49,55,53,55,32,40,40,95,50,
+56,50,32,95,49,55,53,48,41,32,40,40,83,32,73,41,32,40,90,32,
+40,40,40,67,39,32,40,67,39,32,95,49,55,52,57,41,41,32,40,40,
+40,67,39,32,40,67,39,32,79,41,41,32,40,67,32,80,41,41,32,75,
+41,41,32,95,49,55,52,54,41,41,41,41,41,32,40,40,65,32,58,49,
+55,53,56,32,40,40,66,32,40,95,50,56,50,32,95,49,55,53,48,41,
+41,32,40,40,66,32,85,41,32,40,40,66,32,90,41,32,40,40,40,67,
+39,32,40,67,39,32,95,49,55,52,57,41,41,32,40,40,40,67,39,32,
+40,67,39,32,79,41,41,32,40,40,66,32,40,66,32,40,80,32,95,49,
+53,54,56,41,41,41,32,40,67,32,80,41,41,41,32,75,41,41,32,95,
+49,55,52,54,41,41,41,41,41,32,40,40,65,32,58,49,55,53,57,32,
+40,40,66,32,40,40,95,51,53,32,95,49,55,53,52,41,32,95,49,55,
+53,55,41,41,32,40,66,32,95,49,55,53,56,41,41,41,32,40,40,65,
+32,58,49,55,54,48,32,40,40,66,32,40,66,32,40,95,50,56,50,32,
+95,49,55,53,48,41,41,41,32,40,40,66,32,40,40,67,39,32,40,83,
+39,32,40,83,32,73,41,41,41,32,40,40,40,67,39,32,40,67,39,32,
+66,41,41,32,40,40,66,32,40,66,32,67,41,41,32,40,40,66,32,40,
+66,32,40,67,32,67,39,41,41,41,32,40,40,40,67,39,32,40,67,39,
+32,66,41,41,32,95,49,55,53,49,41,32,40,40,66,32,40,40,67,39,
+32,66,41,32,95,49,55,52,57,41,41,32,95,49,55,52,55,41,41,41,
+41,41,32,40,90,32,75,41,41,41,41,32,95,49,55,53,49,41,41,41,
+32,40,40,65,32,58,49,55,54,49,32,40,40,40,67,39,32,40,95,51,
+32,95,49,55,53,54,41,41,32,40,40,95,50,57,56,32,95,49,55,53,
+50,41,32,95,53,50,50,41,41,32,40,40,95,49,52,32,95,49,55,53,
+51,41,32,95,53,50,49,41,41,41,32,40,40,65,32,58,49,55,54,50,
+32,40,40,40,67,39,32,95,49,55,54,48,41,32,95,49,55,54,51,41,
+32,40,40,95,49,52,32,95,49,55,53,51,41,32,95,53,48,50,41,41,
+41,32,40,40,65,32,58,49,55,54,51,32,40,40,40,83,39,32,40,95,
+49,53,32,95,49,55,53,51,41,41,32,40,40,95,50,57,56,32,95,49,
+55,53,50,41,32,95,53,48,51,41,41,32,95,49,55,54,50,41,41,32,
+40,40,65,32,58,49,55,54,52,32,40,40,40,67,39,32,95,49,55,54,
+48,41,32,40,40,95,50,57,56,32,95,49,55,53,50,41,32,95,53,50,
+50,41,41,32,40,40,95,49,52,32,95,49,55,53,51,41,32,95,53,50,
+49,41,41,41,32,40,40,65,32,58,49,55,54,53,32,40,40,66,32,40,
+67,32,66,41,41,32,40,40,40,67,39,32,40,67,39,32,80,41,41,32,
+40,67,32,80,41,41,32,40,40,83,32,40,40,67,32,67,39,41,32,95,
+49,57,50,41,41,32,40,90,32,40,90,32,40,40,66,32,95,49,57,51,
+41,32,40,95,52,51,48,32,40,85,32,40,40,40,67,39,32,40,67,39,
+32,79,41,41,32,40,40,40,67,39,32,66,41,32,80,41,32,95,54,54,
+53,41,41,32,75,41,41,41,41,41,41,41,41,41,41,32,40,40,65,32,
+58,49,55,54,54,32,40,40,83,32,40,85,32,40,95,50,32,95,49,55,
+53,54,41,41,41,32,40,90,32,40,90,32,40,95,52,51,53,32,40,95,
+51,32,95,49,55,53,54,41,41,41,41,41,41,32,40,40,65,32,58,49,
+55,54,55,32,40,40,66,32,40,66,32,40,95,50,56,50,32,95,49,55,
+53,48,41,41,41,32,40,40,66,32,40,66,32,85,41,41,32,40,40,66,
+32,40,40,67,39,32,83,41,32,40,40,66,32,40,40,67,39,32,67,39,
+41,32,83,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,
+67,39,32,40,83,39,32,66,41,41,41,32,67,41,41,32,40,40,40,67,
+39,32,40,67,39,32,40,67,39,32,95,49,55,52,57,41,41,41,32,40,
+40,40,67,39,32,40,67,39,32,40,67,39,32,79,41,41,41,32,40,40,
+66,32,40,40,67,39,32,66,41,32,80,41,41,32,40,67,32,80,41,41,
+41,32,75,41,41,32,95,49,55,52,54,41,41,41,41,41,32,40,40,66,
+32,40,66,32,40,95,49,55,52,57,32,95,53,48,50,41,41,41,32,40,
+40,66,32,40,67,32,40,40,40,83,39,32,95,49,55,52,52,41,32,95,
+52,52,57,41,32,40,95,52,52,55,32,35,49,41,41,41,41,32,40,40,
+67,32,79,41,32,75,41,41,41,41,41,41,41,32,40,40,65,32,58,49,
+55,54,56,32,40,40,66,32,40,66,32,40,95,50,56,50,32,95,49,55,
+53,48,41,41,41,32,40,40,66,32,40,66,32,85,41,41,32,40,40,66,
+32,40,40,67,39,32,83,41,32,40,40,66,32,40,40,67,39,32,67,39,
+41,32,83,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,
+67,39,32,40,67,39,32,66,41,41,41,32,67,41,41,32,40,40,40,67,
+39,32,40,67,39,32,40,67,39,32,95,49,55,52,57,41,41,41,32,40,
+40,40,67,39,32,40,67,39,32,40,67,39,32,79,41,41,41,32,40,40,
+66,32,40,66,32,40,67,32,80,41,41,41,32,40,67,32,80,41,41,41,
+32,75,41,41,32,95,49,55,52,54,41,41,41,41,41,32,40,40,66,32,
+40,66,32,40,95,49,55,52,57,32,95,53,48,50,41,41,41,32,40,40,
+66,32,40,67,32,40,40,40,83,39,32,95,49,55,52,52,41,32,95,52,
+52,57,41,32,40,95,52,52,55,32,35,49,41,41,41,41,32,40,40,67,
+32,79,41,32,75,41,41,41,41,41,41,41,32,40,40,65,32,58,49,55,
+54,57,32,40,40,95,50,56,50,32,95,49,55,53,48,41,32,40,40,83,
+32,73,41,32,40,40,66,32,90,41,32,40,40,66,32,40,67,32,40,40,
+83,32,95,52,50,56,41,32,40,40,66,32,40,95,49,55,52,57,32,95,
+53,48,50,41,41,32,40,40,67,32,40,40,40,83,39,32,95,49,55,52,
+52,41,32,95,52,52,57,41,32,40,95,52,52,55,32,35,49,41,41,41,
+32,40,40,79,32,34,101,111,102,34,41,32,75,41,41,41,41,41,41,32,
+40,40,40,67,39,32,95,49,55,52,57,41,32,40,40,40,67,39,32,79,
+41,32,40,80,32,95,49,53,54,56,41,41,32,75,41,41,32,95,49,55,
+52,54,41,41,41,41,41,41,32,40,40,65,32,58,49,55,55,48,32,40,
+40,66,32,40,66,32,40,95,50,56,50,32,95,49,55,53,48,41,41,41,
+32,40,40,40,67,39,32,66,41,32,40,40,66,32,67,41,32,95,49,55,
+53,49,41,41,32,40,40,66,32,40,66,32,85,41,41,32,40,40,66,32,
+40,66,32,40,66,32,90,41,41,41,32,40,40,66,32,40,40,67,39,32,
+66,41,32,40,66,39,32,95,49,55,52,57,41,41,41,32,40,40,66,32,
+40,40,67,39,32,67,41,32,95,49,55,52,52,41,41,32,40,40,67,32,
+79,41,32,75,41,41,41,41,41,41,41,41,32,40,40,65,32,58,49,55,
+55,49,32,40,40,66,32,40,95,50,56,50,32,95,49,55,53,48,41,41,
+32,40,40,40,67,39,32,83,41,32,95,49,55,53,49,41,32,40,40,66,
+32,40,67,32,40,40,67,32,67,39,41,32,40,85,32,40,40,66,32,40,
+66,32,40,66,32,40,95,49,55,52,57,32,95,53,48,50,41,41,41,41,
+32,40,40,40,67,39,32,66,41,32,95,49,55,52,52,41,32,40,95,52,
+52,55,32,35,49,41,41,41,41,41,41,41,32,40,90,32,40,90,32,40,
+40,40,67,39,32,95,49,55,52,57,41,32,40,40,40,67,39,32,79,41,
+32,40,80,32,95,49,53,54,56,41,41,32,75,41,41,32,95,49,55,52,
+54,41,41,41,41,41,41,41,32,40,40,65,32,58,49,55,55,50,32,40,
+40,95,50,56,50,32,95,49,55,53,48,41,32,40,40,83,32,73,41,32,
+40,40,66,32,90,41,32,40,40,66,32,40,67,32,40,40,83,32,73,41,
+32,40,40,66,32,40,95,49,55,52,57,32,95,53,48,50,41,41,32,40,
+40,67,32,40,40,40,67,39,32,95,49,55,52,52,41,32,95,52,52,57,
+41,32,95,53,48,50,41,41,32,40,40,79,32,34,33,101,111,102,34,41,
+32,75,41,41,41,41,41,41,32,40,40,66,32,90,41,32,40,40,40,67,
+39,32,40,67,39,32,95,49,55,52,57,41,41,32,40,40,40,67,39,32,
+40,67,39,32,79,41,41,32,40,67,32,80,41,41,32,75,41,41,32,95,
+49,55,52,54,41,41,41,41,41,41,41,32,40,40,65,32,58,49,55,55,
+51,32,40,40,66,32,40,95,50,56,50,32,95,49,55,53,48,41,41,32,
+40,40,66,32,85,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,
+32,95,49,55,52,57,41,41,41,32,40,40,40,67,39,32,40,67,39,32,
+40,67,39,32,79,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,
+80,32,95,49,53,54,56,41,41,41,41,32,40,40,66,32,40,66,32,80,
+41,41,32,95,53,48,52,41,41,41,32,75,41,41,32,95,49,55,52,54,
+41,41,41,41,32,40,40,65,32,58,49,55,55,52,32,40,40,40,83,39,
+32,66,41,32,40,40,66,32,40,95,49,53,32,95,49,55,53,51,41,41,
+32,40,40,95,50,57,56,32,95,49,55,53,50,41,32,95,53,48,51,41,
+41,41,32,40,40,66,32,40,66,32,40,95,53,32,95,49,55,53,54,41,
+41,41,32,40,67,32,40,95,49,54,32,95,49,55,53,51,41,41,41,41,
+41,32,40,40,65,32,58,49,55,55,53,32,40,40,40,83,39,32,66,41,
+32,40,40,66,32,40,95,49,53,32,95,49,55,53,51,41,41,32,40,40,
+95,50,57,56,32,95,49,55,53,50,41,32,95,53,48,51,41,41,41,32,
+40,40,66,32,40,66,32,95,49,55,54,50,41,41,32,40,67,32,40,95,
+49,54,32,95,49,55,53,51,41,41,41,41,41,32,40,40,65,32,58,49,
+55,55,54,32,40,40,40,67,39,32,40,67,39,32,95,49,55,54,48,41,
+41,32,95,49,55,55,53,41,32,40,40,95,49,52,32,95,49,55,53,51,
+41,32,95,53,48,50,41,41,41,32,40,40,65,32,58,49,55,55,55,32,
+40,40,40,67,39,32,40,67,39,32,95,49,55,54,48,41,41,32,95,49,
+55,55,56,41,32,40,40,95,49,52,32,95,49,55,53,51,41,32,95,53,
+48,50,41,41,41,32,40,40,65,32,58,49,55,55,56,32,40,40,40,83,
+39,32,66,41,32,40,40,66,32,40,95,49,53,32,95,49,55,53,51,41,
+41,32,40,40,95,50,57,56,32,95,49,55,53,50,41,32,95,53,48,51,
+41,41,41,32,40,40,40,67,39,32,40,67,39,32,95,49,55,54,48,41,
+41,32,40,40,66,32,40,83,32,40,95,49,54,32,95,49,55,53,51,41,
+41,41,32,95,49,55,55,55,41,41,32,40,40,95,49,52,32,95,49,55,
+53,51,41,32,95,53,48,50,41,41,41,41,32,40,40,65,32,58,49,55,
+55,57,32,40,40,80,32,35,48,41,32,73,41,41,32,40,40,65,32,58,
+49,55,56,48,32,40,40,66,32,40,80,32,35,49,41,41,32,85,41,41,
+32,40,40,65,32,58,49,55,56,49,32,40,40,66,32,40,66,32,40,80,
+32,35,50,41,41,41,32,80,41,41,32,40,40,65,32,58,49,55,56,50,
+32,40,40,66,32,40,66,32,40,80,32,35,51,41,41,41,32,80,41,41,
+32,40,40,65,32,58,49,55,56,51,32,40,40,66,32,40,66,32,40,80,
+32,35,52,41,41,41,32,80,41,41,32,40,40,65,32,58,49,55,56,52,
+32,40,40,80,32,35,53,41,32,73,41,41,32,40,40,65,32,58,49,55,
+56,53,32,40,40,66,32,40,66,32,40,66,32,40,80,32,35,54,41,41,
+41,41,32,40,40,66,32,40,66,32,67,41,41,32,80,41,41,41,32,40,
+40,65,32,58,49,55,56,54,32,40,40,66,32,40,66,32,40,66,32,40,
+80,32,35,55,41,41,41,41,32,40,40,66,32,40,66,32,67,41,41,32,
+80,41,41,41,32,40,40,65,32,58,49,55,56,55,32,40,40,67,32,95,
+49,55,56,49,41,32,95,49,55,55,57,41,41,32,40,40,65,32,58,49,
+55,56,56,32,95,49,55,55,57,41,32,40,40,65,32,58,49,55,56,57,
+32,40,40,83,32,73,41,32,40,40,66,32,40,83,32,40,40,40,67,39,
+32,83,39,41,32,40,40,67,32,60,41,32,35,55,41,41,32,40,85,32,
+40,40,40,67,39,32,40,67,39,32,66,41,41,32,95,49,56,49,52,41,
+32,95,49,55,56,57,41,41,41,41,41,32,40,40,40,67,39,32,40,67,
+39,32,66,41,41,32,40,67,32,40,40,67,32,61,61,41,32,35,54,41,
+41,41,32,40,85,32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,
+95,49,56,50,48,41,32,95,49,55,56,57,41,41,41,41,41,41,32,40,
+40,65,32,58,49,55,57,48,32,40,40,95,50,56,52,32,95,54,54,53,
+41,32,40,40,95,50,56,52,32,95,49,56,48,52,41,32,40,40,95,52,
+51,51,32,40,40,67,32,95,49,55,56,53,41,32,95,49,51,52,41,41,
+32,95,49,55,56,56,41,41,41,41,32,40,40,65,32,58,49,55,57,49,
+32,40,40,95,50,56,52,32,95,54,54,53,41,32,40,40,95,50,56,52,
+32,95,49,56,48,52,41,32,40,40,95,52,51,51,32,40,40,67,32,95,
+49,55,56,53,41,32,95,49,51,53,41,41,32,95,49,55,56,56,41,41,
+41,41,32,40,40,65,32,58,49,55,57,50,32,40,40,95,50,56,52,32,
+95,54,54,53,41,32,40,40,95,50,56,52,32,95,49,56,48,53,41,32,
+40,40,95,52,51,51,32,40,40,67,32,95,49,55,56,54,41,32,95,49,
+51,52,41,41,32,95,49,55,56,56,41,41,41,41,32,40,40,65,32,58,
+49,55,57,51,32,40,40,40,67,39,32,66,41,32,95,49,56,48,48,41,
+32,95,49,55,56,57,41,41,32,40,40,65,32,58,49,55,57,52,32,40,
+40,66,32,40,66,32,40,66,32,95,49,56,50,50,41,41,41,32,40,40,
+40,67,39,32,66,41,32,40,66,39,32,79,41,41,32,40,40,40,67,39,
+32,40,67,39,32,79,41,41,32,95,49,55,57,51,41,32,75,41,41,41,
+41,32,40,40,65,32,58,49,55,57,53,32,40,40,66,32,40,80,32,95,
+53,48,50,41,41,32,40,40,66,32,89,41,32,40,40,66,32,40,66,32,
+40,40,83,39,32,80,41,32,40,40,67,32,79,41,32,75,41,41,41,41,
+32,40,40,66,32,40,67,39,32,66,41,41,32,40,40,66,32,66,39,41,
+32,40,40,66,32,40,66,32,95,53,48,51,41,41,32,40,67,32,95,49,
+56,49,55,41,41,41,41,41,41,41,41,32,40,40,65,32,58,49,55,57,
+54,32,40,40,80,32,95,50,56,53,41,32,95,49,55,57,55,41,41,32,
+40,40,65,32,58,49,55,57,55,32,40,40,40,67,39,32,95,49,56,49,
+55,41,32,40,95,49,56,49,55,32,40,95,49,55,56,55,32,40,40,79,
+32,35,52,48,41,32,75,41,41,41,41,32,40,95,49,55,56,55,32,40,
+40,79,32,35,52,49,41,32,75,41,41,41,41,32,40,40,65,32,58,49,
+55,57,56,32,40,40,40,67,39,32,95,49,56,49,55,41,32,40,95,49,
+56,49,55,32,40,95,49,55,56,55,32,40,40,79,32,35,49,50,51,41,
+32,75,41,41,41,41,32,40,95,49,55,56,55,32,40,40,79,32,35,49,
+50,53,41,32,75,41,41,41,41,32,40,40,65,32,58,49,55,57,57,32,
+40,40,40,67,39,32,95,49,56,49,55,41,32,40,95,49,56,49,55,32,
+40,95,49,55,56,55,32,40,40,79,32,35,57,49,41,32,75,41,41,41,
+41,32,40,95,49,55,56,55,32,40,40,79,32,35,57,51,41,32,75,41,
+41,41,41,32,40,40,65,32,58,49,56,48,48,32,40,40,40,83,39,32,
+83,41,32,40,40,67,32,40,40,40,83,39,32,67,39,41,32,40,40,66,
+32,67,39,41,32,40,40,67,32,95,50,57,50,41,32,95,49,51,52,41,
+41,41,32,40,40,66,32,40,67,32,66,41,41,32,40,40,40,67,39,32,
+40,83,39,32,83,41,41,32,40,40,66,32,40,66,32,40,40,83,39,32,
+83,39,41,32,40,40,67,32,60,41,32,35,51,41,41,41,41,32,40,40,
+66,32,40,40,83,39,32,83,41,32,40,40,66,32,40,40,83,39,32,83,
+39,41,32,40,40,67,32,60,41,32,35,53,41,41,41,32,40,40,40,67,
+39,32,40,67,39,32,66,41,41,32,40,67,32,40,40,67,32,61,61,41,
+32,35,53,41,41,41,32,40,85,32,95,49,55,56,52,41,41,41,41,41,
+32,40,40,66,32,40,40,67,39,32,40,67,39,32,66,41,41,32,40,67,
+32,40,40,67,32,61,61,41,32,35,51,41,41,41,41,32,40,40,66,32,
+85,41,32,40,40,66,32,40,66,32,95,49,56,48,48,41,41,32,40,95,
+53,55,53,32,95,51,49,48,41,41,41,41,41,41,41,32,40,40,40,67,
+39,32,40,67,39,32,66,41,41,32,40,67,32,40,40,67,32,61,61,41,
+32,35,48,41,41,41,32,40,85,32,95,49,55,55,57,41,41,41,41,41,
+41,32,95,50,56,41,41,32,40,40,67,32,40,40,40,83,39,32,83,39,
+41,32,40,40,95,50,50,51,32,95,51,49,52,41,32,40,40,95,53,56,
+49,32,95,51,49,48,41,32,40,95,51,57,50,32,35,48,41,41,41,41,
+32,95,49,56,48,57,41,41,32,73,41,41,41,32,40,40,65,32,58,49,
+56,48,49,32,40,40,83,32,66,41,32,40,40,40,67,39,32,40,67,39,
+32,40,67,39,32,66,41,41,41,32,40,40,66,32,40,66,32,40,67,32,
+40,40,67,32,61,61,41,32,35,48,41,41,41,41,32,95,49,56,49,48,
+41,41,32,40,85,32,95,49,55,55,57,41,41,41,41,32,40,40,65,32,
+58,49,56,48,50,32,75,41,32,40,40,65,32,58,49,56,48,51,32,65,
+41,32,40,40,65,32,58,49,56,48,52,32,40,40,83,32,73,41,32,40,
+40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,67,32,
+40,40,67,32,61,61,41,32,35,54,41,41,41,32,40,80,32,95,49,56,
+48,51,41,41,41,32,40,85,32,40,40,40,67,39,32,40,67,39,32,66,
+41,41,32,40,40,66,32,40,95,49,56,48,54,32,95,49,55,56,53,41,
+41,32,40,40,66,32,95,54,54,53,41,32,95,49,56,48,52,41,41,41,
+32,95,49,56,48,52,41,41,41,41,41,32,40,40,65,32,58,49,56,48,
+53,32,40,40,83,32,73,41,32,40,40,40,67,39,32,40,67,39,32,66,
+41,41,32,40,40,66,32,40,67,32,40,40,67,32,61,61,41,32,35,55,
+41,41,41,32,40,80,32,95,49,56,48,51,41,41,41,32,40,85,32,40,
+40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,66,32,40,95,49,
+56,48,54,32,95,49,55,56,54,41,41,32,40,40,66,32,95,54,54,53,
+41,32,95,49,56,48,53,41,41,41,32,95,49,56,48,53,41,41,41,41,
+41,32,40,40,65,32,58,49,56,48,54,32,40,40,66,32,40,40,83,39,
+32,66,41,32,66,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,
+39,32,40,83,39,32,40,67,39,32,66,41,41,41,41,41,32,40,40,66,
+32,40,66,32,40,66,32,40,66,32,40,67,32,40,40,67,32,61,61,41,
+32,35,48,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
+40,66,32,40,80,32,95,49,56,48,51,41,41,41,41,41,32,40,40,66,
+32,40,66,32,40,66,32,85,41,41,41,32,40,40,83,39,32,66,41,32,
+40,40,66,32,40,67,39,32,66,41,41,32,85,41,41,41,41,41,41,32,
+85,41,41,41,32,40,40,65,32,58,49,56,48,55,32,95,49,55,56,48,
+41,32,40,40,65,32,58,49,56,48,56,32,95,49,55,56,49,41,32,40,
+40,65,32,58,49,56,48,57,32,95,49,55,56,50,41,32,40,40,65,32,
+58,49,56,49,48,32,95,49,55,56,51,41,32,40,40,65,32,58,49,56,
+49,49,32,40,40,67,32,95,49,56,49,51,41,32,95,49,51,52,41,41,
+32,40,40,65,32,58,49,56,49,50,32,40,40,67,32,95,49,56,49,51,
+41,32,95,49,51,53,41,41,32,40,40,65,32,58,49,56,49,51,32,40,
+40,66,32,40,66,32,40,83,32,73,41,41,41,32,40,40,40,83,39,32,
+40,67,39,32,40,67,39,32,40,67,39,32,66,41,41,41,41,32,40,40,
+66,32,40,66,32,40,66,32,40,67,32,40,40,67,32,61,61,41,32,35,
+48,41,41,41,41,41,32,40,40,40,83,39,32,66,41,32,66,41,32,40,
+40,40,67,39,32,40,67,39,32,40,83,39,32,40,67,39,32,66,41,41,
+41,41,32,40,40,66,32,40,66,32,40,66,32,40,67,32,40,40,67,32,
+61,61,41,32,35,48,41,41,41,41,41,32,95,49,55,56,54,41,41,32,
+85,41,41,41,41,32,85,41,41,41,32,40,40,65,32,58,49,56,49,52,
+32,40,40,40,83,39,32,66,41,32,66,41,32,40,40,66,32,40,40,83,
+39,32,40,83,39,32,83,41,41,32,40,40,66,32,40,66,32,40,40,67,
+39,32,83,39,41,32,40,40,67,32,60,41,32,35,55,41,41,41,41,32,
+40,40,66,32,40,66,32,85,41,41,32,40,40,66,32,40,66,32,40,40,
+67,39,32,40,67,39,32,66,41,41,32,95,49,56,49,52,41,41,41,32,
+40,40,66,32,67,41,32,40,67,32,95,49,56,49,52,41,41,41,41,41,
+41,41,32,40,40,40,83,39,32,40,83,39,32,40,83,39,32,40,67,39,
+32,66,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,67,32,
+40,40,67,32,61,61,41,32,35,54,41,41,41,41,41,32,40,40,40,67,
+39,32,40,67,39,32,66,41,41,32,40,40,40,67,39,32,67,41,32,95,
+49,56,49,53,41,32,35,48,41,41,32,95,49,55,56,57,41,41,41,32,
+40,40,66,32,40,66,32,40,66,32,85,41,41,41,32,40,40,66,32,40,
+66,32,90,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,
+32,40,66,32,90,41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,
+41,32,40,40,40,67,39,32,67,41,32,40,40,66,32,95,49,56,49,53,
+41,32,95,49,55,56,57,41,41,32,35,48,41,41,32,95,49,55,56,57,
+41,41,41,41,41,41,41,41,41,32,40,40,65,32,58,49,56,49,53,32,
+40,40,40,67,39,32,40,67,39,32,67,41,41,32,40,40,66,32,40,66,
+32,40,40,83,39,32,67,39,41,32,40,40,67,32,95,50,57,50,41,32,
+95,49,51,52,41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,66,
+39,32,66,41,41,32,40,40,40,83,39,32,40,83,39,32,40,83,39,32,
+83,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,40,83,39,32,
+83,39,41,32,40,40,67,32,60,41,32,35,52,41,41,41,41,41,32,40,
+40,66,32,40,66,32,40,66,32,40,83,32,40,40,40,83,39,32,83,39,
+41,32,40,40,67,32,60,41,32,35,54,41,41,32,40,40,67,32,40,40,
+40,67,39,32,83,39,41,32,40,40,67,32,60,41,32,35,55,41,41,32,
+40,85,32,40,75,51,32,40,95,50,55,32,34,97,98,111,118,101,78,101,
+115,116,32,65,98,111,118,101,34,41,41,41,41,41,32,40,85,32,40,75,
+51,32,40,95,50,55,32,34,97,98,111,118,101,78,101,115,116,32,66,101,
+115,105,100,101,34,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,
+66,32,40,66,32,40,67,32,40,40,40,67,39,32,83,39,41,32,40,40,
+67,32,60,41,32,35,53,41,41,32,40,85,32,95,49,55,56,52,41,41,
+41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,85,41,41,41,32,
+40,40,40,83,39,32,40,83,39,32,40,83,39,32,40,67,39,32,66,41,
+41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,95,49,56,
+49,48,41,41,41,41,32,40,40,66,32,40,66,32,67,41,41,32,40,40,
+66,32,67,41,32,40,67,32,95,49,56,49,53,41,41,41,41,41,32,40,
+40,66,32,40,66,32,67,41,41,32,40,40,66,32,67,41,32,40,67,32,
+95,49,56,49,53,41,41,41,41,41,41,41,41,41,32,40,40,40,83,39,
+32,40,83,39,32,40,83,39,32,83,41,41,41,32,40,40,66,32,40,66,
+32,40,66,32,40,40,83,39,32,83,39,41,32,40,40,67,32,60,41,32,
+35,50,41,41,41,41,41,32,40,40,40,83,39,32,40,83,39,32,40,83,
+39,32,67,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,40,67,
+39,32,83,39,41,32,40,40,67,32,60,41,32,35,51,41,41,41,41,41,
+32,40,40,66,32,40,66,32,40,66,32,85,41,41,41,32,40,40,66,32,
+40,66,32,40,66,32,40,40,83,39,32,66,41,32,95,49,56,48,57,41,
+41,41,41,32,40,40,66,32,40,66,32,40,67,39,32,67,41,41,41,32,
+40,40,40,67,39,32,66,41,32,40,66,39,32,40,40,66,32,67,41,32,
+40,67,32,95,49,56,49,53,41,41,41,41,32,40,95,53,55,54,32,95,
+51,49,48,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,
+32,85,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,
+67,39,32,83,41,41,32,40,40,66,32,40,66,32,40,40,67,39,32,67,
+39,41,32,40,66,39,32,95,49,55,56,49,41,41,41,41,32,40,40,66,
+32,40,66,32,40,83,32,66,41,41,41,32,40,40,40,83,39,32,40,83,
+39,32,40,67,39,32,40,83,39,32,40,67,39,32,66,41,41,41,41,41,
+32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,67,32,40,40,67,
+32,61,61,41,32,35,48,41,41,41,41,41,41,32,40,40,66,32,40,67,
+39,32,67,41,41,32,40,67,32,95,49,56,49,53,41,41,41,41,32,40,
+40,66,32,40,66,32,40,66,32,85,41,41,41,32,40,40,66,32,67,41,
+32,95,49,56,49,54,41,41,41,41,41,41,41,32,40,40,40,67,39,32,
+66,41,32,40,95,53,55,54,32,95,51,49,48,41,41,32,95,52,52,57,
+41,41,41,41,41,41,32,40,40,40,67,39,32,40,83,39,32,40,83,39,
+32,67,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,40,67,39,
+32,83,39,41,32,40,40,67,32,60,41,32,35,49,41,41,41,41,41,32,
+40,40,66,32,40,66,32,40,66,32,85,41,41,41,32,40,40,66,32,40,
+66,32,40,66,32,40,66,32,95,49,56,48,55,41,41,41,41,32,40,40,
+66,32,40,66,32,67,41,41,32,40,40,66,32,67,41,32,40,67,32,95,
+49,56,49,53,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,85,
+41,41,32,95,49,56,48,48,41,41,41,41,41,41,41,32,95,50,56,41,
+41,32,40,40,65,32,58,49,56,49,54,32,40,40,66,32,89,41,32,40,
+40,40,67,39,32,40,67,39,32,67,41,41,32,40,40,66,32,40,66,32,
+40,40,83,39,32,67,39,41,32,40,40,67,32,95,50,57,50,41,32,95,
+49,51,52,41,41,41,41,32,40,40,66,32,40,40,67,39,32,40,83,39,
+32,83,41,41,32,40,40,66,32,40,66,32,40,67,32,66,41,41,41,32,
+40,40,40,67,39,32,40,67,39,32,40,83,39,32,83,41,41,41,32,40,
+40,66,32,40,66,32,40,66,32,40,40,83,39,32,83,39,41,32,40,40,
+67,32,60,41,32,35,51,41,41,41,41,41,32,40,40,66,32,40,66,32,
+40,40,67,39,32,40,67,39,32,66,41,41,32,40,67,32,40,40,67,32,
+61,61,41,32,35,51,41,41,41,41,41,32,40,40,66,32,40,66,32,85,
+41,41,32,40,40,40,67,39,32,66,41,32,66,41,32,40,95,53,55,53,
+32,95,51,49,48,41,41,41,41,41,41,32,40,40,40,67,39,32,40,67,
+39,32,66,41,41,32,40,67,32,40,40,67,32,61,61,41,32,35,48,41,
+41,41,32,40,85,32,95,49,55,55,57,41,41,41,41,41,41,32,40,40,
+40,67,39,32,83,41,32,40,40,40,67,39,32,40,83,39,32,83,39,41,
+41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,95,49,51,49,41,
+32,95,49,51,50,41,41,32,40,40,67,32,40,95,53,57,53,32,95,51,
+49,53,41,41,32,35,48,41,41,41,32,40,40,66,32,40,66,32,95,49,
+56,48,55,41,41,32,95,49,56,48,48,41,41,41,32,40,40,66,32,95,
+49,56,48,56,41,32,40,40,67,32,95,52,56,54,41,32,35,51,50,41,
+41,41,41,41,41,32,95,50,56,41,41,41,32,40,40,65,32,58,49,56,
+49,55,32,40,40,67,32,95,49,56,49,57,41,32,95,49,51,52,41,41,
+32,40,40,65,32,58,49,56,49,56,32,40,40,67,32,95,49,56,49,57,
+41,32,95,49,51,53,41,41,32,40,40,65,32,58,49,56,49,57,32,40,
+40,66,32,40,66,32,40,83,32,73,41,41,41,32,40,40,40,83,39,32,
+40,67,39,32,40,67,39,32,40,67,39,32,66,41,41,41,41,32,40,40,
+66,32,40,66,32,40,66,32,40,67,32,40,40,67,32,61,61,41,32,35,
+48,41,41,41,41,41,32,40,40,40,83,39,32,66,41,32,66,41,32,40,
+40,40,67,39,32,40,67,39,32,40,83,39,32,40,67,39,32,66,41,41,
+41,41,32,40,40,66,32,40,66,32,40,66,32,40,67,32,40,40,67,32,
+61,61,41,32,35,48,41,41,41,41,41,32,95,49,55,56,53,41,41,32,
+85,41,41,41,41,32,85,41,41,41,32,40,40,65,32,58,49,56,50,48,
+32,40,40,40,83,39,32,66,41,32,66,41,32,40,40,40,67,39,32,40,
+83,39,32,40,83,39,32,83,41,41,41,32,40,40,66,32,40,66,32,40,
+66,32,40,40,83,39,32,83,39,41,32,40,40,67,32,60,41,32,35,52,
+41,41,41,41,41,32,40,40,40,67,39,32,40,83,39,32,40,83,39,32,
+83,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,40,83,39,32,
+83,39,41,32,40,40,67,32,60,41,32,35,54,41,41,41,41,41,32,40,
+40,40,83,39,32,40,83,39,32,40,83,39,32,67,41,41,41,32,40,40,
+66,32,40,66,32,40,66,32,40,40,67,39,32,83,39,41,32,40,40,67,
+32,60,41,32,35,55,41,41,41,41,41,32,40,40,66,32,40,66,32,40,
+66,32,85,41,41,41,32,40,40,66,32,40,66,32,90,41,41,32,40,40,
+66,32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,90,41,41,32,
+40,40,66,32,95,49,56,50,48,41,32,95,49,55,56,57,41,41,41,41,
+41,41,41,32,40,40,66,32,40,66,32,40,66,32,85,41,41,41,32,40,
+40,40,67,39,32,40,83,39,32,40,83,39,32,66,41,41,41,32,40,40,
+66,32,40,66,32,40,66,32,40,83,39,32,66,41,41,41,41,32,40,40,
+66,32,40,40,83,39,32,66,41,32,40,40,66,32,67,41,32,40,67,32,
+40,95,50,50,51,32,95,49,50,55,41,41,41,41,41,32,40,40,66,32,
+95,49,56,50,48,41,32,95,49,55,56,57,41,41,41,41,32,40,40,66,
+32,40,66,32,40,40,67,39,32,40,67,39,32,66,41,41,32,40,40,66,
+32,40,66,32,95,50,56,51,41,41,32,95,49,56,50,48,41,41,41,41,
+32,40,40,66,32,67,41,32,40,67,32,95,49,56,50,48,41,41,41,41,
+41,41,41,41,32,40,40,66,32,40,66,32,40,67,32,40,40,40,67,39,
+32,83,39,41,32,40,40,67,32,60,41,32,35,53,41,41,32,40,85,32,
+95,49,55,56,52,41,41,41,41,41,32,40,40,66,32,40,66,32,85,41,
+41,32,40,40,40,83,39,32,40,83,39,32,40,67,39,32,66,41,41,41,
+32,40,40,66,32,40,66,32,40,66,32,95,49,56,49,48,41,41,41,32,
+40,40,66,32,67,41,32,40,67,32,95,49,56,50,48,41,41,41,41,32,
+40,40,66,32,67,41,32,40,67,32,95,49,56,50,48,41,41,41,41,41,
+41,41,41,32,40,40,40,83,39,32,40,83,39,32,83,41,41,32,40,40,
+66,32,40,66,32,40,40,83,39,32,83,39,41,32,40,40,67,32,60,41,
+32,35,50,41,41,41,41,32,40,40,40,83,39,32,40,83,39,32,67,41,
+41,32,40,40,66,32,40,66,32,40,40,67,39,32,83,39,41,32,40,40,
+67,32,60,41,32,35,51,41,41,41,41,32,40,40,66,32,40,66,32,85,
+41,41,32,40,40,66,32,40,66,32,40,40,67,39,32,66,41,32,40,40,
+66,32,95,50,56,51,41,32,95,49,56,48,57,41,41,41,41,32,40,40,
+66,32,67,41,32,40,67,32,95,49,56,50,48,41,41,41,41,41,41,32,
+40,40,66,32,40,66,32,85,41,41,32,40,40,66,32,40,66,32,40,40,
+67,39,32,66,41,32,95,49,55,56,49,41,41,41,32,40,40,66,32,40,
+66,32,40,83,32,73,41,41,41,32,40,40,40,83,39,32,40,83,39,32,
+40,67,39,32,40,67,39,32,66,41,41,41,41,32,40,40,66,32,40,66,
+32,40,66,32,40,67,32,40,40,67,32,61,61,41,32,35,48,41,41,41,
+41,41,32,40,40,66,32,67,41,32,40,67,32,95,49,56,50,48,41,41,
+41,41,32,40,40,66,32,40,66,32,85,41,41,32,95,49,56,50,49,41,
+41,41,41,41,41,41,41,32,40,40,40,67,39,32,40,83,39,32,67,41,
+41,32,40,40,66,32,40,66,32,40,40,67,39,32,83,39,41,32,40,40,
+67,32,60,41,32,35,49,41,41,41,41,32,40,40,66,32,40,66,32,85,
+41,41,32,40,40,66,32,40,66,32,40,66,32,40,95,50,56,51,32,95,
+49,56,48,55,41,41,41,41,32,40,40,66,32,67,41,32,40,67,32,95,
+49,56,50,48,41,41,41,41,41,41,32,85,41,41,41,41,41,32,40,40,
+65,32,58,49,56,50,49,32,40,40,66,32,89,41,32,40,40,66,32,40,
+40,67,39,32,83,41,32,40,40,66,32,40,67,32,66,41,41,32,40,40,
+40,67,39,32,40,83,39,32,83,41,41,32,40,40,66,32,40,66,32,40,
+40,83,39,32,83,39,41,32,40,40,67,32,60,41,32,35,51,41,41,41,
+41,32,40,40,66,32,40,40,67,39,32,40,67,39,32,66,41,41,32,40,
+67,32,40,40,67,32,61,61,41,32,35,51,41,41,41,41,32,40,40,66,
+32,85,41,32,75,41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,
+66,41,41,32,40,67,32,40,40,67,32,61,61,41,32,35,48,41,41,41,
+32,40,85,32,95,49,55,55,57,41,41,41,41,41,41,32,40,40,67,32,
+83,41,32,40,95,49,56,48,56,32,40,40,79,32,35,51,50,41,32,75,
+41,41,41,41,41,41,32,40,40,65,32,58,49,56,50,50,32,40,95,49,
+56,50,52,32,95,49,51,53,41,41,32,40,40,65,32,58,49,56,50,51,
+32,40,95,49,56,50,52,32,95,49,51,52,41,41,32,40,40,65,32,58,
+49,56,50,52,32,40,40,66,32,40,80,32,95,49,55,56,56,41,41,32,
+40,40,67,32,40,40,40,67,39,32,67,39,41,32,95,49,56,50,53,41,
+32,95,49,55,56,57,41,41,32,35,48,41,41,41,32,40,40,65,32,58,
+49,56,50,53,32,40,40,66,32,89,41,32,40,40,40,67,39,32,40,67,
+39,32,40,67,39,32,67,41,41,41,32,40,40,66,32,40,66,32,40,66,
+32,40,40,83,39,32,67,39,41,32,40,40,67,32,95,50,57,50,41,32,
+95,49,51,52,41,41,41,41,41,32,40,40,66,32,40,66,32,40,40,67,
+39,32,66,41,32,66,41,41,41,32,40,40,66,32,40,40,83,39,32,40,
+83,39,32,40,83,39,32,83,41,41,41,32,40,40,66,32,40,66,32,40,
+66,32,40,40,83,39,32,83,39,41,32,40,40,67,32,60,41,32,35,52,
+41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,83,32,40,
+40,40,83,39,32,83,39,41,32,40,40,67,32,60,41,32,35,54,41,41,
+32,40,40,67,32,40,40,40,67,39,32,83,39,41,32,40,40,67,32,60,
+41,32,35,55,41,41,32,40,85,32,40,75,51,32,40,95,50,55,32,34,
+115,101,112,49,32,65,98,111,118,101,34,41,41,41,41,41,32,40,85,32,
+40,75,51,32,40,95,50,55,32,34,115,101,112,49,32,66,101,115,105,100,
+101,34,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,
+66,32,40,67,32,40,40,40,67,39,32,83,39,41,32,40,40,67,32,60,
+41,32,35,53,41,41,32,40,85,32,95,49,55,56,52,41,41,41,41,41,
+41,32,40,40,66,32,40,66,32,40,66,32,85,41,41,41,32,40,40,40,
+67,39,32,40,83,39,32,40,83,39,32,40,67,39,32,66,41,41,41,41,
+32,40,40,66,32,40,66,32,40,66,32,40,66,32,95,49,56,49,48,41,
+41,41,41,32,40,40,66,32,40,66,32,67,41,41,32,67,41,41,41,32,
+40,40,40,67,39,32,66,41,32,40,40,66,32,67,41,32,40,67,32,40,
+40,67,32,95,49,56,49,53,41,32,95,49,51,52,41,41,41,41,32,40,
+40,66,32,95,49,55,56,57,41,32,95,49,55,57,50,41,41,41,41,41,
+41,41,41,41,32,40,40,40,83,39,32,40,67,39,32,40,83,39,32,40,
+83,39,32,83,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,
+66,32,40,40,83,39,32,83,39,41,32,40,40,67,32,60,41,32,35,50,
+41,41,41,41,41,41,32,40,40,66,32,40,40,67,39,32,40,83,39,32,
+40,83,39,32,67,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,
+40,67,39,32,83,39,41,32,40,40,67,32,60,41,32,35,51,41,41,41,
+41,41,32,40,40,66,32,40,66,32,40,66,32,85,41,41,41,32,40,40,
+66,32,40,66,32,40,66,32,40,40,83,39,32,66,41,32,95,49,56,48,
+57,41,41,41,41,32,40,40,66,32,40,66,32,40,67,39,32,67,41,41,
+41,32,40,40,40,67,39,32,66,41,32,40,66,39,32,67,41,41,32,40,
+95,53,55,54,32,95,51,49,48,41,41,41,41,41,41,41,41,32,40,40,
+66,32,40,66,32,40,66,32,85,41,41,41,32,40,40,66,32,40,66,32,
+40,66,32,40,40,83,39,32,66,41,32,95,49,56,48,56,41,41,41,41,
+32,40,40,66,32,40,66,32,40,67,39,32,67,41,41,41,32,40,40,40,
+67,39,32,66,41,32,40,66,39,32,40,40,66,32,67,41,32,95,49,56,
+50,54,41,41,41,32,40,40,40,67,39,32,66,41,32,40,95,53,55,54,
+32,95,51,49,48,41,41,32,95,52,52,57,41,41,41,41,41,41,41,41,
+32,40,40,66,32,40,40,83,39,32,40,83,39,32,67,41,41,32,40,40,
+66,32,40,66,32,40,40,67,39,32,83,39,41,32,40,40,67,32,60,41,
+32,35,49,41,41,41,41,32,40,40,66,32,40,66,32,85,41,41,32,40,
+40,66,32,40,66,32,40,66,32,95,49,56,48,55,41,41,41,32,40,40,
+40,67,39,32,66,41,32,40,40,66,32,67,41,32,40,67,32,40,40,67,
+32,95,49,56,49,53,41,32,95,49,51,52,41,41,41,41,32,40,40,66,
+32,95,49,55,56,57,41,32,95,49,55,57,50,41,41,41,41,41,41,41,
+32,40,40,66,32,40,66,32,40,66,32,85,41,41,41,32,40,40,66,32,
+40,40,67,39,32,66,41,32,95,49,56,48,48,41,41,32,95,49,56,50,
+52,41,41,41,41,41,41,41,41,32,95,50,56,41,41,41,32,40,40,65,
+32,58,49,56,50,54,32,40,40,66,32,89,41,32,40,40,40,83,39,32,
+40,67,39,32,83,41,41,32,40,40,66,32,40,66,32,40,40,67,39,32,
+83,39,41,32,40,40,66,32,83,39,41,32,66,41,41,41,41,32,40,40,
+66,32,40,40,67,39,32,40,83,39,32,40,83,39,32,40,83,39,32,83,
+41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,40,
+83,39,32,83,39,41,32,40,40,67,32,60,41,32,35,51,41,41,41,41,
+41,41,32,40,40,66,32,40,66,32,40,66,32,40,40,67,39,32,40,67,
+39,32,66,41,41,32,40,67,32,40,40,67,32,61,61,41,32,35,51,41,
+41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,85,41,41,41,
+32,40,40,66,32,40,66,32,90,41,41,32,40,40,66,32,40,66,32,67,
+41,41,32,67,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,40,
+66,32,40,40,67,39,32,40,67,39,32,66,41,41,32,40,67,32,40,40,
+67,32,61,61,41,32,35,48,41,41,41,41,41,41,32,40,40,66,32,40,
+66,32,40,66,32,85,41,41,41,32,40,40,40,67,39,32,66,41,32,40,
+40,66,32,40,83,39,32,95,49,56,48,49,41,41,32,40,40,66,32,40,
+66,32,95,49,56,50,55,41,41,32,40,40,40,83,39,32,66,41,32,95,
+49,56,50,49,41,32,40,40,66,32,40,66,32,95,49,55,56,57,41,41,
+32,40,40,67,32,40,40,67,32,83,39,41,32,95,49,55,57,48,41,41,
+32,95,49,55,57,49,41,41,41,41,41,41,32,40,40,40,67,39,32,66,
+41,32,40,95,49,56,49,54,32,95,49,51,52,41,41,32,40,40,66,32,
+95,49,55,56,57,41,32,95,49,55,57,50,41,41,41,41,41,41,41,41,
+32,95,49,56,50,53,41,41,41,32,40,40,65,32,58,49,56,50,55,32,
+40,85,32,40,40,83,32,40,40,40,83,39,32,83,39,41,32,40,40,67,
+32,60,41,32,35,52,41,41,32,40,40,83,32,40,40,40,83,39,32,83,
+39,41,32,40,40,67,32,60,41,32,35,54,41,41,32,40,40,67,32,40,
+40,40,67,39,32,83,39,41,32,40,40,67,32,60,41,32,35,55,41,41,
+32,40,85,32,40,75,51,32,40,95,50,55,32,34,111,110,101,76,105,110,
+101,114,32,65,98,111,118,101,34,41,41,41,41,41,32,40,85,32,40,75,
+51,32,40,95,50,55,32,34,111,110,101,76,105,110,101,114,32,66,101,115,
+105,100,101,34,41,41,41,41,41,41,32,40,40,67,32,40,40,40,67,39,
+32,83,39,41,32,40,40,67,32,60,41,32,35,53,41,41,32,40,85,32,
+95,49,55,56,52,41,41,41,32,40,85,32,40,90,32,95,49,56,50,55,
+41,41,41,41,41,41,32,40,40,83,32,40,40,40,83,39,32,83,39,41,
+32,40,40,67,32,60,41,32,35,50,41,41,32,40,40,67,32,40,40,40,
+67,39,32,83,39,41,32,40,40,67,32,60,41,32,35,51,41,41,32,40,
+85,32,40,40,40,67,39,32,66,41,32,95,49,56,48,57,41,32,95,49,
+56,50,55,41,41,41,41,32,40,85,32,40,40,40,67,39,32,66,41,32,
+95,49,56,48,56,41,32,95,49,56,50,55,41,41,41,41,41,32,40,40,
+67,32,40,40,40,67,39,32,83,39,41,32,40,40,67,32,60,41,32,35,
+49,41,41,32,40,85,32,40,75,32,95,49,55,56,52,41,41,41,41,32,
+40,85,32,95,49,55,55,57,41,41,41,41,41,41,32,40,40,65,32,58,
+49,56,50,56,32,80,41,32,40,40,65,32,58,49,56,50,57,32,40,85,
+32,75,41,41,32,40,40,65,32,58,49,56,51,48,32,40,85,32,65,41,
+41,32,40,40,65,32,58,49,56,51,49,32,40,40,95,49,56,50,56,32,
+35,49,48,48,41,32,40,40,80,32,40,40,95,53,56,49,32,95,51,49,
+48,41,32,40,95,51,57,50,32,35,51,41,41,41,32,40,40,95,53,56,
+49,32,95,51,49,48,41,32,40,95,51,57,50,32,35,50,41,41,41,41,
+41,32,40,40,65,32,58,49,56,51,50,32,40,95,49,56,51,51,32,95,
+49,56,51,49,41,41,32,40,40,65,32,58,49,56,51,51,32,40,40,67,
+32,40,40,40,83,39,32,95,49,56,51,52,41,32,95,49,56,50,57,41,
+32,95,49,56,51,48,41,41,32,75,41,41,32,40,40,65,32,58,49,56,
+51,52,32,40,40,66,32,40,40,67,39,32,66,41,32,66,41,41,32,40,
+40,40,83,39,32,40,67,39,32,40,67,39,32,66,41,41,41,32,40,40,
+66,32,40,66,32,66,39,41,41,32,40,40,40,83,39,32,40,67,39,32,
+66,41,41,32,40,40,66,32,40,66,32,83,41,41,32,40,40,66,32,67,
+41,32,95,49,56,51,53,41,41,41,32,40,40,40,67,39,32,66,41,32,
+40,40,66,32,67,41,32,95,49,56,51,54,41,41,32,95,49,55,56,57,
+41,41,41,41,32,40,40,66,32,40,67,39,32,40,95,51,57,57,32,95,
+51,49,49,41,41,41,32,40,95,53,55,55,32,95,51,49,48,41,41,41,
+41,41,32,40,40,65,32,58,49,56,51,53,32,40,75,50,32,40,40,67,
+32,40,40,40,67,39,32,89,41,32,40,40,40,67,39,32,83,41,32,40,
+40,40,67,39,32,40,83,39,32,67,41,41,32,40,40,40,83,39,32,40,
+67,39,32,40,83,39,32,40,83,39,32,67,41,41,41,41,32,40,40,40,
+67,39,32,40,67,39,32,40,67,39,32,66,41,41,41,32,40,40,66,32,
+40,66,32,40,66,32,80,41,41,41,32,40,40,66,32,40,66,32,40,66,
+32,40,66,32,85,41,41,41,41,32,40,40,66,32,40,40,67,39,32,40,
+83,39,32,40,83,39,32,83,41,41,41,32,40,40,66,32,40,66,32,40,
+66,32,40,40,83,39,32,83,39,41,32,40,40,67,32,60,41,32,35,50,
+41,41,41,41,41,32,40,40,66,32,40,40,67,39,32,40,83,39,32,67,
+41,41,32,40,40,66,32,40,66,32,40,40,83,39,32,83,39,41,32,40,
+40,67,32,60,41,32,35,51,41,41,41,41,32,40,40,66,32,40,66,32,
+40,40,67,39,32,66,41,32,40,40,67,32,40,40,67,32,61,61,41,32,
+35,51,41,41,32,40,95,50,55,32,34,100,105,115,112,108,97,121,32,108,
+97,121,34,41,41,41,41,41,32,40,40,66,32,40,66,32,85,41,41,32,
+40,40,40,67,39,32,66,41,32,66,41,32,40,95,53,55,53,32,95,51,
+49,48,41,41,41,41,41,41,41,32,40,40,66,32,40,66,32,85,41,41,
+32,40,85,32,40,75,32,75,41,41,41,41,41,41,41,32,40,40,66,32,
+40,40,67,39,32,40,67,39,32,67,41,41,32,40,40,66,32,40,66,32,
+40,40,67,39,32,83,39,41,32,40,40,67,32,60,41,32,35,49,41,41,
+41,41,32,40,40,66,32,40,66,32,85,41,41,32,40,66,32,40,66,32,
+40,95,53,48,52,32,40,40,79,32,35,49,48,41,32,75,41,41,41,41,
+41,41,41,41,32,85,41,41,41,41,41,32,40,40,66,32,40,40,83,39,
+32,66,41,32,40,66,39,32,40,40,66,32,95,53,48,52,41,32,40,40,
+67,32,95,52,56,54,41,32,35,51,50,41,41,41,41,41,32,40,40,66,
+32,40,66,32,40,40,83,39,32,66,41,32,95,53,48,52,41,41,41,32,
+40,40,40,67,39,32,66,41,32,66,41,32,40,40,40,67,39,32,66,41,
+32,40,95,53,55,53,32,95,51,49,48,41,41,32,95,52,52,57,41,41,
+41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,85,41,
+41,41,41,32,40,40,66,32,40,66,32,40,40,67,39,32,40,83,39,32,
+83,41,41,32,40,40,66,32,40,66,32,40,40,83,39,32,83,39,41,32,
+40,40,67,32,60,41,32,35,50,41,41,41,41,32,40,40,40,83,39,32,
+40,83,39,32,67,41,41,32,40,40,66,32,40,66,32,40,40,83,39,32,
+83,39,41,32,40,40,67,32,60,41,32,35,51,41,41,41,41,32,40,40,
+66,32,40,66,32,40,40,67,39,32,66,41,32,40,40,67,32,40,40,67,
+32,61,61,41,32,35,51,41,41,32,40,95,50,55,32,34,100,105,115,112,
+108,97,121,32,108,97,121,50,34,41,41,41,41,41,32,40,40,66,32,40,
+66,32,85,41,41,32,90,41,41,41,41,32,40,40,66,32,40,66,32,85,
+41,41,32,40,40,66,32,40,66,32,40,40,83,39,32,66,41,32,95,53,
+48,52,41,41,41,32,40,40,40,67,39,32,66,41,32,66,41,32,40,40,
+40,67,39,32,66,41,32,40,95,53,55,53,32,95,51,49,48,41,41,32,
+95,52,52,57,41,41,41,41,41,41,41,41,41,32,40,40,66,32,40,40,
+67,39,32,40,67,39,32,67,41,41,32,40,40,66,32,40,66,32,40,40,
+67,39,32,83,39,41,32,40,40,67,32,60,41,32,35,49,41,41,41,41,
+32,40,40,66,32,40,66,32,85,41,41,32,40,66,32,40,66,32,40,95,
+53,48,52,32,40,40,79,32,35,49,48,41,32,75,41,41,41,41,41,41,
+41,41,32,85,41,41,41,41,41,32,40,85,32,40,75,32,65,41,41,41,
+41,32,40,85,32,40,90,32,75,41,41,41,41,32,40,90,32,75,41,41,
+41,32,35,48,41,41,41,32,40,40,65,32,58,49,56,51,54,32,40,67,
+32,40,40,40,67,39,32,89,41,32,40,40,67,32,40,40,40,67,39,32,
+83,39,41,32,40,40,66,32,67,41,32,40,40,40,83,39,32,40,83,39,
+32,40,83,39,32,80,41,41,41,32,40,40,66,32,40,66,32,40,66,32,
+40,66,32,85,41,41,41,41,32,40,40,40,67,39,32,40,83,39,32,66,
+41,41,32,40,40,66,32,40,66,32,40,83,39,32,83,41,41,41,32,40,
+40,66,32,40,66,32,40,66,32,40,40,83,39,32,83,39,41,32,40,40,
+67,32,60,41,32,35,51,41,41,41,41,41,32,40,40,40,67,39,32,40,
+83,39,32,40,83,39,32,67,41,41,41,32,40,40,66,32,40,66,32,40,
+66,32,40,40,83,39,32,83,39,41,32,40,40,67,32,60,41,32,35,52,
+41,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,67,32,40,
+40,40,83,39,32,83,39,41,32,40,40,67,32,60,41,32,35,53,41,41,
+32,40,40,40,67,39,32,66,41,32,40,40,67,32,40,40,67,32,61,61,
+41,32,35,53,41,41,32,40,95,50,55,32,34,98,101,115,116,32,103,101,
+116,34,41,41,41,32,40,85,32,95,49,55,56,52,41,41,41,41,41,41,
+41,32,40,40,66,32,40,66,32,40,66,32,85,41,41,41,32,40,40,40,
+67,39,32,40,83,39,32,40,83,39,32,40,67,39,32,66,41,41,41,41,
+32,40,40,66,32,40,83,39,32,66,41,41,32,40,67,32,95,49,56,51,
+55,41,41,41,32,73,41,41,41,41,41,32,40,40,66,32,40,66,32,85,
+41,41,32,40,40,66,32,40,66,32,40,40,83,39,32,66,41,32,95,49,
+56,48,57,41,41,41,32,40,40,40,67,39,32,66,41,32,66,41,32,40,
+95,53,55,54,32,95,51,49,48,41,41,41,41,41,41,41,41,32,40,40,
+40,67,39,32,40,67,39,32,40,67,39,32,67,41,41,41,32,40,40,66,
+32,40,66,32,40,66,32,40,40,83,39,32,83,39,41,32,40,40,67,32,
+60,41,32,35,49,41,41,41,41,41,32,40,40,66,32,40,40,67,39,32,
+40,83,39,32,67,41,41,32,40,40,66,32,40,66,32,40,40,67,39,32,
+83,39,41,32,40,40,67,32,60,41,32,35,50,41,41,41,41,32,40,40,
+66,32,40,66,32,85,41,41,32,40,40,66,32,40,66,32,40,40,83,39,
+32,66,41,32,95,49,56,48,56,41,41,41,32,40,40,67,32,40,67,39,
+32,66,41,41,32,95,52,52,57,41,41,41,41,41,41,32,40,40,66,32,
+40,66,32,85,41,41,32,40,66,32,40,66,32,95,49,56,48,55,41,41,
+41,41,41,41,32,40,85,32,95,49,55,55,57,41,41,41,41,41,32,40,
+40,66,32,40,66,32,40,66,32,40,66,32,40,66,32,85,41,41,41,41,
+41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,40,83,39,32,40,
+83,39,32,40,83,39,32,83,41,41,41,41,32,40,40,66,32,40,66,32,
+40,66,32,40,66,32,40,40,83,39,32,83,39,41,32,40,40,67,32,60,
+41,32,35,51,41,41,41,41,41,41,32,40,40,40,67,39,32,40,83,39,
+32,40,83,39,32,40,83,39,32,67,41,41,41,41,32,40,40,66,32,40,
+66,32,40,66,32,40,66,32,40,40,83,39,32,83,39,41,32,40,40,67,
+32,60,41,32,35,52,41,41,41,41,41,41,32,40,40,66,32,40,66,32,
+40,66,32,40,66,32,40,67,32,40,40,40,83,39,32,83,39,41,32,40,
+40,67,32,60,41,32,35,53,41,41,32,40,40,40,67,39,32,66,41,32,
+40,40,67,32,40,40,67,32,61,61,41,32,35,53,41,41,32,40,95,50,
+55,32,34,98,101,115,116,32,103,101,116,49,34,41,41,41,32,40,85,32,
+95,49,55,56,52,41,41,41,41,41,41,41,41,32,40,40,66,32,40,66,
+32,40,66,32,40,66,32,85,41,41,41,41,32,40,40,40,67,39,32,40,
+83,39,32,40,83,39,32,40,83,39,32,40,67,39,32,66,41,41,41,41,
+41,32,40,40,66,32,40,83,39,32,40,83,39,32,66,41,41,41,32,40,
+67,32,95,49,56,51,56,41,41,41,32,73,41,41,41,41,41,32,40,40,
+66,32,40,66,32,40,66,32,85,41,41,41,32,40,66,32,90,41,41,41,
+41,41,41,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,67,
+39,32,67,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,
+32,40,40,83,39,32,83,39,41,32,40,40,67,32,60,41,32,35,49,41,
+41,41,41,41,41,32,40,40,66,32,40,40,67,39,32,40,83,39,32,40,
+83,39,32,67,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,40,
+67,39,32,83,39,41,32,40,40,67,32,60,41,32,35,50,41,41,41,41,
+41,32,40,40,66,32,40,66,32,40,66,32,85,41,41,41,32,40,40,66,
+32,40,66,32,40,66,32,40,40,83,39,32,66,41,32,95,49,56,48,56,
+41,41,41,41,32,40,40,40,67,39,32,40,67,39,32,66,41,41,32,66,
+39,41,32,40,40,40,67,39,32,66,41,32,40,95,53,55,53,32,95,51,
+49,48,41,41,32,95,52,52,57,41,41,41,41,41,41,41,32,40,40,66,
+32,40,66,32,40,66,32,85,41,41,41,32,40,40,66,32,40,66,32,40,
+66,32,40,66,32,95,49,56,48,55,41,41,41,41,32,40,40,40,67,39,
+32,66,41,32,66,41,32,40,95,53,55,54,32,95,51,49,48,41,41,41,
+41,41,41,41,32,40,85,32,95,49,55,55,57,41,41,41,41,41,41,41,
+32,40,85,32,65,41,41,41,32,40,85,32,75,41,41,41,32,75,41,41,
+41,32,40,40,65,32,58,49,56,51,55,32,40,40,40,67,39,32,67,41,
+32,95,49,56,51,56,41,32,35,48,41,41,32,40,40,65,32,58,49,56,
+51,56,32,40,40,40,67,39,32,40,67,39,32,40,67,39,32,40,83,39,
+32,67,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,95,49,56,
+51,57,41,41,41,32,40,40,66,32,40,66,32,40,95,53,55,54,32,95,
+51,49,48,41,41,41,32,40,40,40,83,39,32,67,41,32,40,40,40,67,
+39,32,83,41,32,40,95,53,57,51,32,95,51,49,53,41,41,32,73,41,
+41,32,73,41,41,41,41,32,73,41,41,32,40,40,65,32,58,49,56,51,
+57,32,40,40,67,32,40,40,40,83,39,32,67,39,41,32,40,40,67,32,
+40,95,53,57,51,32,95,51,49,53,41,41,32,35,48,41,41,32,40,40,
+40,67,39,32,67,41,32,40,40,66,32,40,67,32,66,41,41,32,40,40,
+40,67,39,32,40,67,39,32,83,41,41,32,40,40,66,32,40,66,32,40,
+40,83,39,32,83,39,41,32,40,40,67,32,60,41,32,35,50,41,41,41,
+41,32,40,40,66,32,40,40,83,39,32,83,41,32,40,40,66,32,40,40,
+83,39,32,83,39,41,32,40,40,67,32,60,41,32,35,53,41,41,41,32,
+40,40,40,67,39,32,40,67,39,32,66,41,41,32,40,67,32,40,40,67,
+32,61,61,41,32,35,53,41,41,41,32,40,85,32,95,49,51,52,41,41,
+41,41,41,32,40,40,66,32,40,40,67,39,32,40,67,39,32,66,41,41,
+32,40,67,32,40,40,67,32,61,61,41,32,35,50,41,41,41,41,32,40,
+40,66,32,85,41,32,40,40,66,32,40,66,32,95,49,56,51,57,41,41,
+32,40,40,40,67,39,32,66,41,32,40,95,53,55,54,32,95,51,49,48,
+41,41,32,95,52,52,57,41,41,41,41,41,41,41,32,40,40,67,32,40,
+40,40,67,39,32,83,39,41,32,40,40,67,32,60,41,32,35,49,41,41,
+32,40,85,32,40,75,32,95,49,51,53,41,41,41,41,32,40,85,32,95,
+49,51,53,41,41,41,41,41,32,40,95,50,55,32,34,102,105,116,115,34,
+41,41,41,41,32,95,49,51,52,41,41,32,40,40,65,32,58,49,56,52,
+48,32,40,40,66,32,40,66,32,67,41,41,32,80,41,41,32,40,40,65,
+32,58,49,56,52,49,32,40,85,32,40,90,32,75,41,41,41,32,40,40,
+65,32,58,49,56,52,50,32,40,85,32,40,75,32,75,41,41,41,32,40,
+40,65,32,58,49,56,52,51,32,40,85,32,40,75,32,65,41,41,41,32,
+40,40,65,32,58,49,56,52,52,32,40,90,32,40,40,66,32,40,66,32,
+95,53,48,52,41,41,32,95,49,56,52,50,41,41,41,32,40,40,65,32,
+58,49,56,52,53,32,40,40,40,67,39,32,67,41,32,40,40,67,32,95,
+49,56,52,49,41,32,35,48,41,41,32,75,41,41,32,40,40,65,32,58,
+49,56,52,54,32,40,40,66,32,95,49,56,53,49,41,32,95,49,56,52,
+55,41,41,32,40,40,65,32,58,49,56,52,55,32,40,40,67,32,95,49,
+56,52,49,41,32,35,48,41,41,32,40,40,65,32,58,49,56,52,56,32,
+95,53,48,51,41,32,40,40,65,32,58,49,56,52,57,32,95,53,48,52,
+41,32,40,40,65,32,58,49,56,53,48,32,40,40,67,32,83,41,32,40,
+40,66,32,40,66,32,40,95,53,48,51,32,35,52,48,41,41,41,32,40,
+40,67,32,66,41,32,40,95,53,48,51,32,35,52,49,41,41,41,41,41,
+32,40,40,65,32,58,49,56,53,49,32,40,40,66,32,40,67,32,40,40,
+67,32,83,39,41,32,40,40,66,32,40,95,53,48,51,32,35,57,49,41,
+41,32,40,95,53,48,51,32,35,57,51,41,41,41,41,41,32,40,40,66,
+32,40,66,32,40,66,32,40,66,32,40,95,53,48,51,32,35,57,49,41,
+41,41,41,41,32,40,40,40,83,39,32,66,41,32,40,67,39,32,66,41,
+41,32,40,40,66,32,40,66,32,89,41,41,32,40,40,66,32,40,40,67,
+39,32,66,41,32,40,40,66,32,80,41,32,40,95,53,48,51,32,35,57,
+51,41,41,41,41,32,40,40,66,32,40,66,32,40,66,32,40,66,32,40,
+95,53,48,51,32,35,52,52,41,41,41,41,41,32,40,67,39,32,66,41,
+41,41,41,41,41,41,41,32,40,40,65,32,58,49,56,53,50,32,35,49,
+48,41,32,40,40,65,32,58,49,56,53,51,32,35,49,49,41,32,40,40,
+65,32,58,49,56,53,52,32,40,40,67,32,40,40,83,32,40,40,40,83,
+39,32,83,39,41,32,40,40,40,67,39,32,40,95,50,50,51,32,95,49,
+52,49,41,41,32,95,52,54,56,41,32,35,52,53,41,41,32,85,41,41,
+32,40,40,66,32,40,66,32,40,40,95,53,55,54,32,95,51,49,48,41,
+32,35,48,41,41,41,32,40,40,66,32,85,41,32,95,52,54,57,41,41,
+41,41,32,40,40,95,52,51,54,32,40,40,40,67,39,32,40,67,39,32,
+40,95,53,55,54,32,95,51,49,48,41,41,41,32,40,40,40,67,39,32,
+66,41,32,40,40,66,32,40,95,53,55,53,32,95,51,49,48,41,41,32,
+40,40,67,32,40,95,53,55,55,32,95,51,49,48,41,41,32,35,49,48,
+41,41,41,32,95,49,52,55,41,41,32,40,95,49,52,55,32,35,52,56,
+41,41,41,32,35,48,41,41,41,32,40,40,65,32,58,49,56,53,53,32,
+95,49,53,57,52,41,32,40,40,65,32,58,49,56,53,54,32,40,40,40,
+67,39,32,67,41,32,40,40,66,32,95,49,56,53,49,41,32,40,66,32,
+95,53,48,52,41,41,41,32,75,41,41,32,40,40,65,32,58,49,56,53,
+55,32,40,40,66,32,40,66,32,85,41,41,32,40,40,66,32,40,66,32,
+40,66,32,40,66,32,40,95,53,48,52,32,40,40,79,32,35,52,48,41,
+32,75,41,41,41,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,
+66,32,40,67,39,32,66,41,41,32,40,66,32,95,53,48,52,41,41,41,
+32,40,40,66,32,40,66,32,40,95,53,48,52,32,40,40,79,32,35,52,
+52,41,32,75,41,41,41,41,32,40,40,67,32,40,67,39,32,95,53,48,
+52,41,41,32,40,40,79,32,35,52,49,41,32,75,41,41,41,41,41,41,
+41,32,40,40,65,32,58,49,56,53,56,32,40,40,67,32,40,40,83,32,
+40,40,95,50,50,51,32,95,49,52,51,41,32,75,41,41,32,40,40,67,
+32,40,95,52,54,54,32,40,40,95,50,56,52,32,95,49,51,50,41,32,
+40,40,67,32,40,95,50,50,51,32,95,49,52,49,41,41,32,35,49,48,
+41,41,41,41,32,40,40,40,83,39,32,80,41,32,40,40,67,32,79,41,
+32,75,41,41,32,40,90,32,40,40,40,67,39,32,66,41,32,95,53,48,
+51,41,32,95,49,56,53,56,41,41,41,41,41,41,32,95,53,48,50,41,
+41,32,40,40,65,32,58,49,56,53,57,32,40,95,52,51,48,32,40,40,
+67,32,95,53,48,52,41,32,40,40,79,32,35,49,48,41,32,75,41,41,
+41,41,32,40,40,65,32,58,49,56,54,48,32,40,40,66,32,40,40,67,
+32,40,40,83,32,40,40,95,50,50,51,32,95,49,52,51,41,32,75,41,
+41,32,40,40,66,32,40,40,40,83,39,32,95,53,48,51,41,32,40,85,
+32,75,41,41,32,40,40,66,32,95,49,56,54,48,41,32,40,85,32,65,
+41,41,41,41,32,40,95,52,54,54,32,40,40,95,50,56,52,32,95,49,
+51,50,41,32,95,49,53,53,41,41,41,41,41,32,95,53,48,50,41,41,
+32,40,95,52,54,53,32,95,49,53,53,41,41,41,32,40,40,65,32,58,
+49,56,54,49,32,40,95,52,55,49,32,40,40,79,32,35,51,50,41,32,
+75,41,41,41,32,40,40,65,32,58,49,56,54,50,32,40,40,40,67,39,
+32,40,83,39,32,95,53,48,52,41,41,32,40,40,40,67,39,32,40,67,
+39,32,95,52,56,54,41,41,32,40,40,40,67,39,32,66,41,32,40,95,
+53,55,54,32,95,51,49,48,41,41,32,95,52,52,57,41,41,32,35,51,
+50,41,41,32,73,41,41,32,40,40,65,32,58,49,56,54,51,32,40,40,
+80,32,95,49,53,54,56,41,32,40,40,40,67,39,32,66,41,32,95,49,
+54,50,54,41,32,95,49,56,54,51,41,41,41,32,40,40,65,32,58,49,
+56,54,52,32,40,40,83,32,40,85,32,40,40,40,110,111,77,97,116,99,
+104,32,34,46,47,108,105,98,47,84,101,120,116,47,83,116,114,105,110,103,
+46,104,115,34,41,32,35,54,54,41,32,35,49,41,41,41,32,40,40,40,
+67,39,32,40,67,39,32,67,41,41,32,40,40,40,67,39,32,40,67,39,
+32,40,67,39,32,66,41,41,41,32,40,40,40,67,39,32,40,67,39,32,
+40,67,39,32,66,41,41,41,32,40,40,40,67,39,32,40,67,39,32,66,
+41,41,32,40,40,66,32,40,40,67,39,32,83,39,41,32,40,40,67,32,
+40,95,50,50,51,32,95,49,52,49,41,41,32,35,52,53,41,41,41,32,
+85,41,41,32,40,40,66,32,40,66,32,40,95,50,56,50,32,40,95,53,
+55,56,32,40,95,54,49,53,32,95,51,52,50,41,41,41,41,41,32,85,
+41,41,41,32,40,40,66,32,40,67,32,40,95,52,54,54,32,95,49,53,
+49,41,41,41,32,40,40,40,67,39,32,66,41,32,40,40,66,32,67,41,
+32,40,40,40,83,39,32,83,41,32,40,40,66,32,40,40,67,39,32,83,
+39,41,32,83,41,41,32,40,40,66,32,40,66,32,40,40,67,39,32,40,
+67,39,32,66,41,41,32,40,67,32,40,40,95,50,50,51,32,95,49,52,
+49,41,32,35,52,54,41,41,41,41,41,32,40,40,66,32,40,66,32,40,
+67,32,40,95,52,54,54,32,95,49,53,49,41,41,41,41,32,40,40,40,
+67,39,32,66,41,32,40,66,39,32,40,40,66,32,67,41,32,40,40,40,
+67,39,32,67,41,32,40,40,66,32,40,40,67,39,32,83,39,41,32,83,
+41,41,32,40,66,32,40,40,67,39,32,40,67,39,32,66,41,41,32,40,
+67,32,40,40,40,67,39,32,40,95,50,50,51,32,95,49,52,49,41,41,
+32,95,49,53,55,41,32,35,49,48,49,41,41,41,41,41,41,32,73,41,
+41,41,41,32,40,40,40,67,39,32,66,41,32,40,95,53,55,53,32,40,
+95,54,49,53,32,95,51,52,50,41,41,41,32,40,40,40,83,39,32,40,
+95,53,55,55,32,40,95,54,49,53,32,95,51,52,50,41,41,41,32,40,
+40,66,32,40,95,54,50,56,32,95,51,52,51,41,41,32,95,51,55,56,
+41,41,32,40,40,66,32,40,40,95,50,56,49,32,40,40,67,32,40,40,
+80,32,40,95,54,49,54,32,40,40,80,32,95,51,52,50,41,32,95,51,
+51,57,41,41,41,32,95,51,49,49,41,41,32,95,51,49,53,41,41,32,
+40,40,95,53,56,49,32,40,95,54,49,53,32,95,51,52,50,41,41,32,
+40,95,51,57,50,32,35,49,48,41,41,41,41,32,40,40,66,32,40,95,
+50,56,50,32,40,95,53,55,56,32,95,51,49,48,41,41,41,32,95,52,
+52,57,41,41,41,41,41,41,41,41,41,32,40,40,40,67,39,32,67,41,
+32,40,40,66,32,40,40,67,39,32,83,39,41,32,83,41,41,32,40,66,
+32,40,40,67,39,32,40,67,39,32,66,41,41,32,40,67,32,40,40,40,
+67,39,32,40,95,50,50,51,32,95,49,52,49,41,41,32,95,49,53,55,
+41,32,35,49,48,49,41,41,41,41,41,41,32,73,41,41,41,41,32,40,
+40,66,32,40,95,54,50,56,32,95,51,52,51,41,41,32,95,51,55,56,
+41,41,41,41,41,32,40,40,40,83,39,32,40,83,39,32,83,41,41,32,
+40,40,66,32,40,66,32,40,67,32,83,41,41,41,32,40,40,40,83,39,
+32,40,83,39,32,40,67,39,32,67,41,41,41,32,40,40,66,32,40,66,
+32,40,66,32,40,40,83,39,32,83,39,41,32,40,40,95,50,50,51,32,
+95,49,52,49,41,32,35,52,51,41,41,41,41,41,32,40,40,66,32,40,
+66,32,40,40,67,39,32,40,67,39,32,66,41,41,32,40,67,32,40,40,
+95,50,50,51,32,95,49,52,49,41,32,35,52,53,41,41,41,41,41,32,
+40,40,67,39,32,66,41,32,40,95,50,55,53,32,40,95,54,49,54,32,
+40,40,80,32,95,51,52,50,41,32,95,51,51,57,41,41,41,41,41,41,
+41,32,40,40,67,39,32,66,41,32,40,95,53,55,55,32,40,95,54,49,
+53,32,95,51,52,50,41,41,41,41,41,41,32,40,40,67,39,32,66,41,
+32,40,95,53,55,55,32,40,95,54,49,53,32,95,51,52,50,41,41,41,
+41,41,41,32,40,40,66,32,40,40,95,52,49,55,32,40,40,67,32,40,
+40,80,32,40,95,54,49,53,32,95,51,52,50,41,41,32,95,51,52,50,
+41,41,32,95,51,51,57,41,41,32,40,40,95,53,56,49,32,40,95,54,
+49,53,32,95,51,52,50,41,41,32,40,95,51,57,50,32,35,49,48,41,
+41,41,41,32,95,51,55,56,41,41,41,41,32,40,40,65,32,58,49,56,
+54,53,32,95,49,54,51,51,41,32,95,49,49,55,53,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,
+41,
+};
+unsigned char *combexpr = data;
+int combexprlen = 290741;
diff --git a/ghc/Compat.hs b/ghc/Compat.hs
--- a/ghc/Compat.hs
+++ b/ghc/Compat.hs
@@ -86,12 +86,6 @@
 getTimeMilli :: IO Int
 getTimeMilli  = floor . (1000 *) . nominalDiffTimeToSeconds . utcTimeToPOSIXSeconds <$> getCurrentTime
 
--- A hack until we have a real withArgs
-withDropArgs :: Int -> IO a -> IO a
-withDropArgs i ioa = do
-  as <- getArgs
-  withArgs (drop i as) ioa
-
 ------- Read --------
 
 readInteger :: String -> Integer
diff --git a/ghc/PrimTable.hs b/ghc/PrimTable.hs
--- a/ghc/PrimTable.hs
+++ b/ghc/PrimTable.hs
@@ -1,31 +1,46 @@
 module PrimTable(module PrimTable) where
+import Control.Exception
+import Data.Bits
 import Data.Char
 import Data.Maybe
+import Data.Word()
 import System.IO
 import Unsafe.Coerce
 import GHC.Types(Any)
+import Foreign.C.String
+import Foreign.C.Types
+import Foreign.Marshal.Alloc
+import Foreign.Ptr
+import System.Environment
+import System.IO.Unsafe
+--import Debug.Trace
+import Compat
 
 primitive :: String -> Any
-primitive s = fromMaybe (error $ "primitive: " ++ s) $ lookup s primOps
-
-newtype DIO a = DIO { unDIO :: IO a }
+--primitive s | trace ("primitive " ++ show s) False = undefined
+primitive "dynsym" = unsafeCoerce dynsym
+primitive s = fromMaybe (error $ "PrimTable.primitive: " ++ s) $ lookup s primOps
 
 primOps :: [(String, Any)]
 primOps =
   [ comb "S" (\ f g x -> f x (g x))
-  , comb "S'" (\ k f g x -> k f x (g x))
   , comb "K" (\ x _y -> x)
-  , comb "A" (\ _x y -> y)
-  , comb "T" (\ x y -> y x)
   , comb "I" (\ x -> x)
-  , comb "Y" (\ f -> let r = f r in r)
   , comb "B" (\ f g x -> f (g x))
-  , comb "B'" (\ k f g x -> k f (g x))
-  , comb "BK" (\ f g _x -> f g)
   , comb "C" (\ f g x -> f x g)
-  , comb "C'" (\ k f g x -> k f x g)
+  , comb "S'" (\ k f g x -> k (f x) (g x))
+  , comb "B'" (\ k f g x -> k f (g x))
+  , comb "C'" (\ k f g x -> k (f x) g)
+  , comb "A" (\ _x y -> y)
+  , comb "U" (\ x y -> y x)
+  , comb "Y" (\ f -> let r = f r in r)
+  , comb "Z" (\ f g _x -> f g)
   , comb "P" (\ x y f -> f x y)
+  , comb "R" (\ x y f -> y f x)
   , comb "O" (\ x y _g f -> f x y)
+  , comb "K2" (\ x _y _z -> x)
+  , comb "K3" (\ x _y _z _w -> x)
+  , comb "K4" (\ x _y _z _w _v -> x)
 
   , arith "+" (+)
   , arith "-" (-)
@@ -33,59 +48,210 @@
   , arith "quot" quot
   , arith "rem" rem
   , arith "subtract" subtract
-  , farith "fadd" (+)
-  , farith "fsub" (-)
-  , farith "fmul" (*)
-  , cmp "feq" (==)
-  , cmp "fne" (/=)
-  , cmp "flt" (<)
-  , cmp "fle" (<=)
-  , cmp "fgt" (>)
-  , cmp "fge" (>=)
-  , comb "fshow" (show :: Double -> String)
+  , arithu "neg" negate
+  , arithu "inv" complement
+  , arithw "uquot" quot
+  , arithw "urem" rem
+  , arithw "and" (.&.)
+  , arithw "or" (.|.)
+  , arithw "xor" xor
+  , arithwi "shl" shiftL
+  , arithwi "shr" shiftR
+  , arith "ashr" shiftR
   , cmp "==" (==)
   , cmp "/=" (/=)
   , cmp "<"  (<)
   , cmp "<=" (<=)
   , cmp ">"  (>)
   , cmp ">=" (>=)
-  , cmp "error" err
+  , cmpw "u<"  (<)
+  , cmpw "u<=" (<=)
+  , cmpw "u>"  (>)
+  , cmpw "u>=" (>=)
+  , comb "icmp" (\ x y -> fromOrdering (compare (x::Int) y))
+
+  , comb "scmp" (\ x y -> fromOrdering (compare (toString x) (toString y)))
+  , comb "sequal" (\ x y -> fromBool (toString x == toString y))
+
+  , comb "p==" (\ x y -> fromBool ((x :: Ptr ()) == y))
+  , comb "pnull" nullPtr
+  , comb "pcast" castPtr
+  , comb "p+" plusPtr
+  , comb "p-" minusPtr
+
+  , farith "f+" (+)
+  , farith "f-" (-)
+  , farith "f*" (*)
+  , farith "f/" (/)
+  , farithu "fneg" negate
+  , fcmp "f==" (==)
+  , fcmp "f/=" (/=)
+  , fcmp "f<" (<)
+  , fcmp "f<=" (<=)
+  , fcmp "f>" (>)
+  , fcmp "f>=" (>=)
+  , comb "fshow" (fromString . (show :: Double -> String))
+  , comb "fread" ((read :: String -> Double) . toString)
+  , comb "itof" (fromIntegral :: Int -> Double)
+
+  , comb "seq" seq
+  , comb "rnf" rnf
+  , comb "error" err
   , comb "ord" ord
   , comb "chr" chr
+
+  , comb "IO.performIO" unsafePerformIO
+  , comb "IO.catch" (\ io hdl -> catch (io :: IO Any) (\ (exn :: SomeException) -> hdl (fromString $ takeWhile (/= '\n') $ show exn) :: IO Any))
   , comb "IO.>>=" iobind
   , comb "IO.>>" iothen
   , comb "IO.return" ioret
---  , comb "IO.getChar" getc
-  , comb "IO.putChar" putc
-  , comb "IO.stdin" stdin
-  , comb "IO.stdout" stdout
-  , comb "IO.stderr" stderr
+  , comb "IO.print" ioprint
+  , comb "IO.performio" unsafePerformIO
+  , comb "IO.serialize" ioserialize
+  , comb "IO.deserialize" iodeserialize
+  , comb "newCAStringLen" (fmap fromPair . newCAStringLen . toString)
+  , comb "IO.getArgs" iogetargs
+
+  , comb0 "IO.stdin" stdin
+  , comb0 "IO.stdout" stdout
+  , comb0 "IO.stderr" stderr
+
+  , comb "noMatch" (\ (s::Any) (l::Int) (c::Int) -> error ("no match at " ++ toString s ++ " line " ++ show l ++ ", col " ++ show c))
+  , comb "noDefault" (\ (s::Any) -> error ("no default for " ++ toString s))
+
   ]
   where
+    comb0 n f = (n, unsafeCoerce f)
     comb n f = (n, unsafeCoerce f)
+--    comb n f = (n, unsafeCoerce (\ x -> trace (seq x n) (f x)))
     arith :: String -> (Int -> Int -> Int) -> (String, Any)
     arith = comb
+    arithw :: String -> (Word -> Word -> Word) -> (String, Any)
+    arithw = comb
+    arithwi :: String -> (Word -> Int -> Word) -> (String, Any)
+    arithwi = comb
+    arithu :: String -> (Int -> Int) -> (String, Any)
+    arithu = comb
     farith :: String -> (Double -> Double -> Double) -> (String, Any)
     farith = comb
+    farithu :: String -> (Double -> Double) -> (String, Any)
+    farithu = comb
     cmp :: String -> (Int -> Int -> Bool) -> (String, Any)
-    cmp n f = comb n (\ x y -> if f x y then cTrue else cFalse)
-    cTrue _x y = y
-    cFalse x _y = x
-    iobind :: DIO a -> (a -> DIO b) -> DIO b
-    iobind a k = DIO (unDIO a >>= \ x -> unDIO (k x))
-    iothen :: DIO a -> DIO b -> DIO b
-    iothen a b = DIO (unDIO a >> unDIO b)
-    ioret :: a -> DIO a
-    ioret a = DIO (return a)
---    getc h = undefined -- fromEnum <$> hGetChar h  -- XXX
-    putc :: Handle -> Int -> DIO ()
-    putc h c = DIO $ do
---      let h = unsafeCoerce hh :: Handle
---          c = unsafeCoerce cc :: Int
---      print (h, c)
-      hPutChar h (toEnum c)
---    open = undefined
---    close = undefined
---    isnull = undefined
+    cmp n f = comb n (\ x y -> fromBool (f x y))
+    cmpw :: String -> (Word -> Word -> Bool) -> (String, Any)
+    cmpw n f = comb n (\ x y -> fromBool (f x y))
+    fcmp :: String -> (Double -> Double -> Bool) -> (String, Any)
+    fcmp n f = comb n (\ x y -> fromBool (f x y))
 
-    err _ = error "ERROR"
+    err s = error $ "error: " ++ toString s
+
+    iobind :: IO a -> (a -> IO b) -> IO b
+    iobind = (>>=)
+    iothen :: IO a -> IO b -> IO b
+    iothen = (>>)
+    ioret :: a -> IO a
+    ioret = return
+    -- Can't implement this
+    ioprint :: Handle -> a -> IO ()
+    ioprint h _ = hPutStrLn h "no IO.print"
+    ioserialize :: Handle -> a -> IO ()
+    ioserialize h _ = hPutStrLn h "no IO.serialize"
+    iodeserialize :: Handle -> IO a
+    iodeserialize _ = error "iodeserialize"
+
+    iogetargs :: IO Any
+    iogetargs = do
+      args <- getArgs
+      return $ fromList $ map fromString args
+
+    -- Can't implement this
+    rnf :: a -> ()
+    rnf x = seq x ()
+
+fromBool :: Bool -> Any
+fromBool False = unsafeCoerce $ \ x _y -> x
+fromBool True  = unsafeCoerce $ \ _x y -> y
+
+fromOrdering :: Ordering -> (Any -> Any -> Any -> Any)
+fromOrdering LT = \ x _y _z -> x
+fromOrdering EQ = \ _x y _z -> y
+fromOrdering GT = \ _x _y z -> z
+
+fromPair :: (a, b) -> Any
+fromPair (x, y) = unsafeCoerce $ \ pair -> pair x y
+
+fromString :: String -> Any
+fromString = fromList . map (unsafeCoerce . ord)
+
+fromList :: [Any] -> Any
+fromList [] = unsafeCoerce $ \ nil _cons -> nil
+fromList (x:xs) = unsafeCoerce $ \ _nil cons -> cons (unsafeCoerce x) (fromList xs)
+
+toList :: Any -> [Int]
+toList a = (unsafeCoerce a) [] (\ i is -> i : toList is)
+
+toString :: Any -> String
+toString = map chr . toList
+
+dynsym :: Any -> Any
+dynsym acfun =
+  let s = toString acfun
+  in
+--      trace ("dynsym: " ++ show s) $
+      fromMaybe (error $ "cops: " ++ s) $ lookup s cops
+
+cops :: [(String, Any)]
+cops =
+  [ comb "fputc" fputc
+  , comb "getTimeMilli" getTimeMilli
+  , comb "fgetc" fgetc
+  , comb "fopen" fopen
+  , comb "fclose" fclose
+  , comb "free"  free
+  , comb "exp"   (fio exp)
+  , comb "log"   (fio log)
+  , comb "sqrt"   (fio sqrt)
+  , comb "sin"   (fio sin)
+  , comb "cos"   (fio cos)
+  , comb "tan"   (fio tan)
+  , comb "asin"   (fio asin)
+  , comb "acos"   (fio acos)
+  , comb "atan"   (fio atan)
+  , comb "sinh"   (fio sinh)
+  , comb "cosh"   (fio cosh)
+  , comb "tanh"   (fio tanh)
+  , comb "asinh"   (fio asinh)
+  , comb "acosh"   (fio acosh)
+  , comb "atanh"   (fio atanh)
+  , comb "atan2"   (fio2 atan2)
+  ]
+  where
+    comb n f = (n, unsafeCoerce f)
+
+    fio :: (Double -> Double) -> (Double -> IO Double)
+    fio f = return . f
+
+    fio2 :: (Double -> Double -> Double) -> (Double -> Double -> IO Double)
+    fio2 f = \ x y -> return (f x y)
+
+    fputc :: Int -> Handle -> IO Int
+    fputc c h = hPutChar h (chr c) >> return 0
+
+    fgetc :: Handle -> IO Int
+    fgetc h = handle (\ (_ :: SomeException) -> return (-1)) (do c <- hGetChar h; return (ord c))
+
+    fopen :: Ptr CChar -> Ptr CChar -> IO Handle
+    fopen name mode = do
+      sname <- peekCAString name
+      smode <- peekCAString mode
+      let hmode =
+            case smode of
+              "r" -> ReadMode
+              "w" -> WriteMode
+              "a" -> AppendMode
+              "w+" -> ReadWriteMode
+              _ -> error "fopen"
+      openFile sname hmode
+
+    fclose :: Handle -> IO Int
+    fclose h = do hClose h; return 0
diff --git a/ghc/System/Console/SimpleReadline.hs b/ghc/System/Console/SimpleReadline.hs
--- a/ghc/System/Console/SimpleReadline.hs
+++ b/ghc/System/Console/SimpleReadline.hs
@@ -2,9 +2,13 @@
   getInputLine,
   getInputLineHist
   ) where
+import qualified System.Console.Haskeline as H
 
 getInputLine :: String -> IO (Maybe String)
-getInputLine _ = error "No getInputLine for ghc"
+getInputLine prompt =
+  H.runInputT H.defaultSettings (H.getInputLine prompt)
 
 getInputLineHist :: FilePath -> String -> IO (Maybe String)
-getInputLineHist _ _ = error "No getInputLineHist for ghc"
+getInputLineHist hist prompt =
+  H.runInputT settings (H.getInputLine prompt)
+  where settings = H.defaultSettings { H.historyFile = Just hist }
diff --git a/lib/AllOfLib.hs b/lib/AllOfLib.hs
--- a/lib/AllOfLib.hs
+++ b/lib/AllOfLib.hs
@@ -7,6 +7,7 @@
 import Control.Error
 import Control.Exception
 import Control.Monad
+import Control.Monad.ST
 import Control.Monad.State.Strict
 import Data.Bits
 import Data.Bool
@@ -25,6 +26,8 @@
 import Data.Function
 import Data.Functor
 import Data.Functor.Identity
+import Data.IOArray
+import Data.IORef
 import Data.Int
 import Data.IntMap
 import Data.IntSet
@@ -46,12 +49,17 @@
 import Data.Real
 import Data.RealFloat
 import Data.Semigroup
+import Data.STRef
 import Data.Tuple
+import Data.TypeLits
 import Data.Void
 import Data.Word
+import Data.Word8
 import Debug.Trace
 import Foreign.C.String
 import Foreign.Marshal.Alloc
+import Foreign.Marshal.Array
+import Foreign.Marshal.Utils
 import Foreign.Ptr
 import Foreign.Storable
 import GHC.Stack
diff --git a/lib/Control/Applicative.hs b/lib/Control/Applicative.hs
--- a/lib/Control/Applicative.hs
+++ b/lib/Control/Applicative.hs
@@ -14,3 +14,9 @@
   (<*)  :: forall a b . f a -> f b -> f a
   a1 *> a2 = (id <$ a1) <*> a2
   a1 <* a2 = (const <$> a1) <*> a2
+
+liftA2 :: forall (f :: Type -> Type) a b c . Applicative f => (a -> b -> c) -> f a -> f b -> f c
+liftA2 f a b = f <$> a <*> b
+
+liftA3 :: forall (f :: Type -> Type) a b c d . Applicative f => (a -> b -> c -> d) -> f a -> f b -> f c -> f d
+liftA3 f a b c = f <$> a <*> b <*> c
diff --git a/lib/Control/Monad.hs b/lib/Control/Monad.hs
--- a/lib/Control/Monad.hs
+++ b/lib/Control/Monad.hs
@@ -61,6 +61,9 @@
 sequence :: forall (m :: Type -> Type) a . Monad m => [m a] -> m [a]
 sequence = mapM id
 
+sequence_ :: forall (m :: Type -> Type) a . Monad m => [m a] -> m ()
+sequence_ = mapM_ id
+
 (=<<) :: forall (m :: Type -> Type) a b . Monad m => (a -> m b) -> m a -> m b
 (=<<) = flip (>>=)
 
@@ -112,3 +115,7 @@
   Nothing >>= _ = Nothing
   Just a  >>= f = f a
 -}
+
+class (Monad m) => MonadPlus (m :: Type -> Type) where
+  mzero :: forall a . m a
+  mplus :: forall a . m a -> m a -> m a
diff --git a/lib/Control/Monad/ST.hs b/lib/Control/Monad/ST.hs
new file mode 100644
--- /dev/null
+++ b/lib/Control/Monad/ST.hs
@@ -0,0 +1,20 @@
+module Control.Monad.ST(
+  ST,
+  runST,
+  ) where
+import Prelude
+import Primitives(primPerformIO)
+import Control.Monad.ST_Type
+
+runST :: forall a . (forall s . ST s a) -> a
+runST (ST ioa) = primPerformIO ioa
+
+instance forall s . Functor (ST s) where
+  fmap f (ST x) = ST (fmap f x)
+
+instance forall s . Applicative (ST s) where
+  pure x = ST (pure x)
+  ST x <*> ST y = ST (x <*> y)
+
+instance forall s . Monad (ST s) where
+  ST x >>= f = ST (x >>= (unST . f))
diff --git a/lib/Control/Monad/ST_Type.hs b/lib/Control/Monad/ST_Type.hs
new file mode 100644
--- /dev/null
+++ b/lib/Control/Monad/ST_Type.hs
@@ -0,0 +1,10 @@
+-- This module should not be imported!
+module Control.Monad.ST_Type(
+  ST(..), unST,
+  ) where
+import Primitives(IO)
+
+-- The ST monad is implemented with the IO monad.
+newtype ST s a = ST (IO a)
+unST :: forall s a . ST s a -> IO a
+unST (ST io) = io
diff --git a/lib/Data/Bits.hs b/lib/Data/Bits.hs
--- a/lib/Data/Bits.hs
+++ b/lib/Data/Bits.hs
@@ -36,12 +36,12 @@
   bitSizeMaybe      :: a -> Maybe Int
   bitSize           :: a -> Int
 
-  x `shift`   i | i<0       = x `shiftR` (negate i)
+  x `shift`   i | i<0       = x `shiftR` (- i)
                 | i>0       = x `shiftL` i
                 | otherwise = x
 
 
-  x `rotate`  i | i<0       = x `rotateR` (negate i)
+  x `rotate`  i | i<0       = x `rotateR` (- i)
                 | i>0       = x `rotateL` i
                 | otherwise = x
 
@@ -63,12 +63,12 @@
 
   x `shiftL`  i       = x `shift`  i
   x `unsafeShiftL` i  = x `shiftL` i
-  x `shiftR`  i       = x `shift`  (negate i)
+  x `shiftR`  i       = x `shift`  (- i)
   x `unsafeShiftR` i  = x `shiftR` i
 
   x `rotateL` i       = x `rotate` i
 
-  x `rotateR` i       = x `rotate` (negate i)
+  x `rotateR` i       = x `rotate` (- i)
 
 
 class Bits b => FiniteBits b where
diff --git a/lib/Data/Char.hs b/lib/Data/Char.hs
--- a/lib/Data/Char.hs
+++ b/lib/Data/Char.hs
@@ -22,7 +22,7 @@
   (/=) = primCharNE
 
 instance Ord Char where
-  compare = primCompare
+  compare = primCharCompare
   (<)  = primCharLT
   (<=) = primCharLE
   (>)  = primCharGT
@@ -32,11 +32,11 @@
   (==) = primStringEQ
 
 instance Ord String where
-  compare = primCompare
-  x <  y  =  primCompare x y == LT
-  x <= y  =  primCompare x y /= GT
-  x >  y  =  primCompare x y == GT
-  x >= y  =  primCompare x y /= LT
+  compare = primStringCompare
+  x <  y  =  primStringCompare x y == LT
+  x <= y  =  primStringCompare x y /= GT
+  x >  y  =  primStringCompare x y == GT
+  x >= y  =  primStringCompare x y /= LT
 
 -- ASCII only for now
 instance Bounded Char where
diff --git a/lib/Data/Complex.hs b/lib/Data/Complex.hs
--- a/lib/Data/Complex.hs
+++ b/lib/Data/Complex.hs
@@ -6,7 +6,7 @@
 data Complex a = !a :+ !a
 
 instance forall a . Eq a => Eq (Complex a) where
-  (:+) x y == (:+) x' y'  =  x == x' && y == y'   -- parser bug
+  (x :+ y) == (x' :+ y')  =  x == x' && y == y'   -- parser bug
 
 instance forall a . Show a => Show (Complex a) where
   show (x :+ y) = show x ++ " :+ " ++ show y
@@ -18,7 +18,7 @@
 imagPart (_ :+ y) =  y
 
 conjugate        :: forall a . Num a => Complex a -> Complex a
-conjugate (x:+y) =  x :+ (negate y)
+conjugate (x:+y) =  x :+ (- y)
 
 mkPolar          :: forall a . Floating a => a -> a -> Complex a
 mkPolar r theta  =  r * cos theta :+ r * sin theta
@@ -60,7 +60,7 @@
     (x:+y) / (x':+y')   =  (x*x''+y*y'') / d :+ (y*x''-x*y'') / d
                            where x'' = scaleFloat k x'
                                  y'' = scaleFloat k y'
-                                 k   = negate $ max (exponent x') (exponent y')
+                                 k   = - max (exponent x') (exponent y')
                                  d   = x'*x'' + y'*y''
 
     fromRational a      =  fromRational a :+ 0
@@ -90,14 +90,14 @@
         nan = 0/0
 -}
     sqrt z@(x:+y) | x==0 && y==0 = 0
-                  | otherwise    =  u :+ (if y < 0 then negate v else v)
+                  | otherwise    =  u :+ (if y < 0 then - v else v)
                       where (u,v) = if x < 0 then (v',u') else (u',v')
                             v'    = abs y / (u'*2)
                             u'    = sqrt ((magnitude z + abs x) / 2)
 
     sin (x:+y)     =  sin x * cosh y :+ cos x * sinh y
-    cos (x:+y)     =  cos x * cosh y :+ (negate (sin x) * sinh y)
-    tan (x:+y)     =  (sinx*coshy:+cosx*sinhy)/(cosx*coshy:+(negate sinx*sinhy))
+    cos (x:+y)     =  cos x * cosh y :+ (- (sin x) * sinh y)
+    tan (x:+y)     =  (sinx*coshy:+cosx*sinhy)/(cosx*coshy:+(- sinx*sinhy))
                       where sinx  = sin x
                             cosx  = cos x
                             sinhy = sinh y
@@ -111,12 +111,12 @@
                             sinhx = sinh x
                             coshx = cosh x
 
-    asin z@(x:+y)  =  y':+(negate x')
-                      where  (x':+y') = log (((negate y):+x) + sqrt (1 - z*z))
-    acos z         =  y'':+(negate x'')
-                      where (x'':+y'') = log (z + ((negate y'):+x'))
+    asin z@(x:+y)  =  y':+(- x')
+                      where  (x':+y') = log (((- y):+x) + sqrt (1 - z*z))
+    acos z         =  y'':+(- x'')
+                      where (x'':+y'') = log (z + ((- y'):+x'))
                             (x':+y')   = sqrt (1 - z*z)
-    atan z@(x:+y)  =  y':+(negate x')
+    atan z@(x:+y)  =  y':+(- x')
                       where (x':+y') = log (((1 - y):+x) / sqrt (1+z*z))
 
     asinh z        =  log (z + sqrt (1+z*z))
diff --git a/lib/Data/Double.hs b/lib/Data/Double.hs
--- a/lib/Data/Double.hs
+++ b/lib/Data/Double.hs
@@ -27,7 +27,7 @@
   (-)  = primDoubleSub
   (*)  = primDoubleMul
   negate = primDoubleNeg
-  abs x = if x < 0.0 then negate x else x
+  abs x = if x < 0.0 then - x else x
   signum x =
     case compare x 0.0 of
       LT -> -1.0
diff --git a/lib/Data/Either.hs b/lib/Data/Either.hs
--- a/lib/Data/Either.hs
+++ b/lib/Data/Either.hs
@@ -5,6 +5,7 @@
 import Data.Bool
 import Data.Eq
 import Data.Function
+import Data.Functor
 import Data.Int
 import Data.Ord
 import Text.Show
@@ -20,6 +21,18 @@
 either f _ (Left  a) = f a
 either _ f (Right b) = f b
 
+isLeft :: forall a b . Either a b -> Bool
+isLeft (Left  _) = True
+isLeft (Right _) = False
+
+isRight :: forall a b . Either a b -> Bool
+isRight (Left  _) = False
+isRight (Right _) = True
+
 instance forall a b . (Show a, Show b) => Show (Either a b) where
   showsPrec p (Left  a) = showParen (p>=appPrec1) (showString "Left "  . showsPrec appPrec1 a)
   showsPrec p (Right b) = showParen (p>=appPrec1) (showString "Right " . showsPrec appPrec1 b)
+
+instance forall a . Functor (Either a) where
+  fmap _ (Left a) = Left a
+  fmap f (Right b) = Right (f b)
diff --git a/lib/Data/Enum.hs b/lib/Data/Enum.hs
--- a/lib/Data/Enum.hs
+++ b/lib/Data/Enum.hs
@@ -61,9 +61,9 @@
 instance Enum Bool where
   fromEnum False = 0
   fromEnum True  = 1
-  toEnum 0 = False
-  toEnum 1 = True
-  toEnum _ = error "Enum.Bool.toEnum: bad arg"
+  toEnum i = if primIntEQ i (0::Int) then False else
+             if primIntEQ i (1::Int) then True  else
+             error "Enum.Bool.toEnum: bad arg"
 
 instance Enum Char where
   fromEnum = primOrd
diff --git a/lib/Data/Floating.hs b/lib/Data/Floating.hs
--- a/lib/Data/Floating.hs
+++ b/lib/Data/Floating.hs
@@ -33,8 +33,8 @@
   logBase x y         = log y / log x
   sqrt x              = x ** (1/2)
   tan  x              = sin  x / cos  x
-  sinh x              = (exp x - exp (negate x)) / 2
-  cosh x              = (exp x + exp (negate x)) / 2
+  sinh x              = (exp x - exp (- x)) / 2
+  cosh x              = (exp x + exp (- x)) / 2
   tanh x              = sinh x / cosh x
   asinh x             = log (x + sqrt (x*x + 1))
   acosh x             = log (x + sqrt (x*x - 1))
@@ -42,4 +42,4 @@
   log1p x             = log (1 + x)
   expm1 x             = exp x - 1
   log1pexp x          = log1p (exp x)
-  log1mexp x          = log1p (negate (exp x))
+  log1mexp x          = log1p (- (exp x))
diff --git a/lib/Data/Foldable.hs b/lib/Data/Foldable.hs
new file mode 100644
--- /dev/null
+++ b/lib/Data/Foldable.hs
@@ -0,0 +1,471 @@
+-----------------------------------------------------------------------------
+-- |
+-- Module      :  Data.Foldable
+-- Copyright   :  Ross Paterson 2005
+-- License     :  BSD-style (see the LICENSE file in the distribution)
+--
+-- Maintainer  :  libraries@haskell.org
+-- Stability   :  stable
+-- Portability :  portable
+--
+-- Class of data structures that can be folded to a summary value.
+--
+-----------------------------------------------------------------------------
+
+module Data.Foldable (
+    Foldable(..),
+    -- * Special biased folds
+    foldrM,
+    foldlM,
+    -- * Folding actions
+    -- ** Applicative actions
+    traverse_,
+    for_,
+    sequenceA_,
+    asum,
+    -- ** Monadic actions
+    mapM_,
+    forM_,
+    sequence_,
+    msum,
+    -- * Specialized folds
+    concat,
+    concatMap,
+    and,
+    or,
+    any,
+    all,
+    maximumBy,
+    minimumBy,
+    -- * Searches
+    notElem,
+    find
+    ) where
+import Primitives
+import Control.Alternative
+import Control.Applicative
+import Control.Error
+import Control.Monad
+import Data.Bool
+import Data.Either
+import Data.Eq
+import Data.Function
+import Data.List_Type
+import qualified Data.List as List
+import Data.Maybe
+import Data.Monoid
+import Data.Num
+import Data.Ord
+import Data.Proxy
+import Data.Semigroup
+import System.IO(seq)
+
+newtype MMax a = MMax (Maybe a)
+getMMax :: forall a . MMax a -> Maybe a
+getMMax (MMax ma) = ma
+
+newtype MMin a = MMin (Maybe a)
+getMMin :: forall a . MMin a -> Maybe a
+getMMin (MMin ma) = ma
+
+instance forall a . Ord a => Semigroup (MMax a) where
+    m <> MMax Nothing = m
+    MMax Nothing <> n = n
+    (MMax m@(Just x)) <> (MMax n@(Just y))
+      | x >= y    = MMax m
+      | otherwise = MMax n
+
+instance forall a . Ord a => Monoid (MMax a) where
+    mempty = MMax Nothing
+    mconcat = List.foldl' (<>) mempty
+
+instance forall a . Ord a => Semigroup (MMin a) where
+    m <> MMin Nothing = m
+    MMin Nothing <> n = n
+    (MMin m@(Just x)) <> (MMin n@(Just y))
+      | x <= y    = MMin m
+      | otherwise = MMin n
+
+instance forall a . Ord a => Monoid (MMin a) where
+    mempty = MMin Nothing
+    mconcat = List.foldl' (<>) mempty
+
+-------------------------------
+
+infix  4 `elem`, `notElem`
+
+class Foldable (t :: Type -> Type) where
+    {-# MINIMAL foldMap | foldr #-}
+
+    fold :: forall m . Monoid m => t m -> m
+    fold = foldMap id
+
+    foldMap :: forall m a . Monoid m => (a -> m) -> t a -> m
+    foldMap f = foldr (mappend . f) mempty
+
+    foldMap' :: forall m a . Monoid m => (a -> m) -> t a -> m
+    foldMap' f = foldl' (\ acc a -> acc <> f a) mempty
+
+    foldr :: forall a b . (a -> b -> b) -> b -> t a -> b
+    foldr f z t = appEndo (foldMap (Endo . f) t) z
+
+    foldr' :: forall a b . (a -> b -> b) -> b -> t a -> b
+    foldr' f z0 = \ xs ->
+        foldl (\ k x -> {-oneShot-} (\ z -> z `seq` k (f x z)))
+              id xs z0
+
+    foldl :: forall a b . (b -> a -> b) -> b -> t a -> b
+    foldl f z t = appEndo (getDual (foldMap (Dual . Endo . flip f) t)) z
+
+    foldl' :: forall a b . (b -> a -> b) -> b -> t a -> b
+    foldl' f z0 = \ xs ->
+        foldr (\ x k -> {-oneShot-} (\ z -> z `seq` k (f z x)))
+              id xs z0
+
+    foldr1 :: forall a . (a -> a -> a) -> t a -> a
+    foldr1 f xs = fromMaybe (error "foldr1: empty structure")
+                    (foldr mf Nothing xs)
+      where
+        mf x m = Just (case m of
+                         Nothing -> x
+                         Just y  -> f x y
+                      )
+
+    foldl1 :: forall a . (a -> a -> a) -> t a -> a
+    foldl1 f xs = fromMaybe (error "foldl1: empty structure")
+                    (foldl mf Nothing xs)
+      where
+        mf m y = Just (case m of
+                         Nothing -> y
+                         Just x  -> f x y
+                      )
+
+    toList :: forall a . t a -> [a]
+    toList t = foldr (:) [] t
+
+    null :: forall a . t a -> Bool
+    null = foldr (\_ _ -> False) True
+
+    length :: forall a . t a -> Int
+    length = foldl' (\c _ -> c+1) 0
+
+    elem :: forall a . Eq a => a -> t a -> Bool
+    elem = any . (==)
+
+    maximum :: forall a . Ord a => t a -> a
+    maximum = fromMaybe (error "maximum: empty structure") .
+       getMMax . foldMap' (MMax . Just)
+
+    minimum :: forall a . Ord a => t a -> a
+    minimum = fromMaybe (error "minimum: empty structure") .
+       getMMin . foldMap' (MMin . Just)
+
+    sum :: forall a . Num a => t a -> a
+    sum = getSum . foldMap' Sum
+
+    product :: forall a . Num a => t a -> a
+    product = getProduct . foldMap' Product
+
+instance Foldable Maybe where
+    foldMap = maybe mempty
+
+    foldr _ z Nothing = z
+    foldr f z (Just x) = f x z
+
+    foldl _ z Nothing = z
+    foldl f z (Just x) = f z x
+
+instance Foldable [] where
+    elem    = List.elem
+    foldl   = List.foldl
+    foldl'  = List.foldl'
+    foldl1  = List.foldl1
+    foldr   = List.foldr
+    foldr'  = List.foldr'
+    foldr1  = List.foldr1
+    foldMap = (mconcat .) . List.map
+    fold    = mconcat
+    length  = List.length
+    maximum = List.maximum
+    minimum = List.minimum
+    null    = List.null
+    product = List.product
+    sum     = List.sum
+    toList  = id
+  
+instance forall a . Foldable (Either a) where
+    foldMap _ (Left _) = mempty
+    foldMap f (Right y) = f y
+
+    foldr _ z (Left _) = z
+    foldr f z (Right y) = f y z
+
+    length (Left _)  = 0
+    length (Right _) = 1
+
+    null             = isLeft
+
+{-
+-- | @since 4.15
+deriving instance Foldable Solo
+
+-- | @since 4.7.0.0
+instance Foldable ((,) a) where
+    foldMap f (_, y) = f y
+
+    foldr f z (_, y) = f y z
+    length _  = 1
+    null _ = False
+
+-- | @since 4.8.0.0
+instance Foldable (Array i) where
+    foldr = foldrElems
+    foldl = foldlElems
+    foldl' = foldlElems'
+    foldr' = foldrElems'
+    foldl1 = foldl1Elems
+    foldr1 = foldr1Elems
+    toList = elems
+    length = numElements
+    null a = numElements a == 0
+
+-- | @since 4.7.0.0
+instance Foldable Proxy where
+    foldMap _ _ = mempty
+    {-# INLINE foldMap #-}
+    fold _ = mempty
+    {-# INLINE fold #-}
+    foldr _ z _ = z
+    {-# INLINE foldr #-}
+    foldl _ z _ = z
+    {-# INLINE foldl #-}
+    foldl1 _ _ = error "foldl1: Proxy"
+    foldr1 _ _ = error "foldr1: Proxy"
+    length _   = 0
+    null _     = True
+    elem _ _   = False
+    sum _      = 0
+    product _  = 1
+
+-- | @since 4.8.0.0
+instance Foldable Dual where
+    foldMap            = coerce
+
+    elem               = (. getDual) . (==)
+    foldl              = coerce
+    foldl'             = coerce
+    foldl1 _           = getDual
+    foldr f z (Dual x) = f x z
+    foldr'             = foldr
+    foldr1 _           = getDual
+    length _           = 1
+    maximum            = getDual
+    minimum            = getDual
+    null _             = False
+    product            = getDual
+    sum                = getDual
+    toList (Dual x)    = [x]
+
+-- | @since 4.8.0.0
+instance Foldable Sum where
+    foldMap            = coerce
+
+    elem               = (. getSum) . (==)
+    foldl              = coerce
+    foldl'             = coerce
+    foldl1 _           = getSum
+    foldr f z (Sum x)  = f x z
+    foldr'             = foldr
+    foldr1 _           = getSum
+    length _           = 1
+    maximum            = getSum
+    minimum            = getSum
+    null _             = False
+    product            = getSum
+    sum                = getSum
+    toList (Sum x)     = [x]
+
+-- | @since 4.8.0.0
+instance Foldable Product where
+    foldMap               = coerce
+
+    elem                  = (. getProduct) . (==)
+    foldl                 = coerce
+    foldl'                = coerce
+    foldl1 _              = getProduct
+    foldr f z (Product x) = f x z
+    foldr'                = foldr
+    foldr1 _              = getProduct
+    length _              = 1
+    maximum               = getProduct
+    minimum               = getProduct
+    null _                = False
+    product               = getProduct
+    sum                   = getProduct
+    toList (Product x)    = [x]
+
+-- | @since 4.8.0.0
+instance Foldable First where
+    foldMap f = foldMap f . getFirst
+
+-- | @since 4.8.0.0
+instance Foldable Last where
+    foldMap f = foldMap f . getLast
+
+-- | @since 4.12.0.0
+instance (Foldable f) => Foldable (Alt f) where
+    foldMap f = foldMap f . getAlt
+
+-- | @since 4.12.0.0
+instance (Foldable f) => Foldable (Ap f) where
+    foldMap f = foldMap f . getAp
+
+-- Instances for GHC.Generics
+-- | @since 4.9.0.0
+instance Foldable U1 where
+    foldMap _ _ = mempty
+    {-# INLINE foldMap #-}
+    fold _ = mempty
+    {-# INLINE fold #-}
+    foldr _ z _ = z
+    {-# INLINE foldr #-}
+    foldl _ z _ = z
+    {-# INLINE foldl #-}
+    foldl1 _ _ = error "foldl1: U1"
+    foldr1 _ _ = error "foldr1: U1"
+    length _   = 0
+    null _     = True
+    elem _ _   = False
+    sum _      = 0
+    product _  = 1
+
+-- | @since 4.9.0.0
+deriving instance Foldable V1
+
+-- | @since 4.9.0.0
+deriving instance Foldable Par1
+
+-- | @since 4.9.0.0
+deriving instance Foldable f => Foldable (Rec1 f)
+
+-- | @since 4.9.0.0
+deriving instance Foldable (K1 i c)
+
+-- | @since 4.9.0.0
+deriving instance Foldable f => Foldable (M1 i c f)
+
+-- | @since 4.9.0.0
+deriving instance (Foldable f, Foldable g) => Foldable (f :+: g)
+
+-- | @since 4.9.0.0
+deriving instance (Foldable f, Foldable g) => Foldable (f :*: g)
+
+-- | @since 4.9.0.0
+deriving instance (Foldable f, Foldable g) => Foldable (f :.: g)
+
+-- | @since 4.9.0.0
+deriving instance Foldable UAddr
+
+-- | @since 4.9.0.0
+deriving instance Foldable UChar
+
+-- | @since 4.9.0.0
+deriving instance Foldable UDouble
+
+-- | @since 4.9.0.0
+deriving instance Foldable UFloat
+
+-- | @since 4.9.0.0
+deriving instance Foldable UInt
+
+-- | @since 4.9.0.0
+deriving instance Foldable UWord
+
+-- Instances for Data.Ord
+-- | @since 4.12.0.0
+deriving instance Foldable Down
+-}
+
+foldrM :: forall (t :: Type -> Type) (m :: Type -> Type) a b . (Foldable t, Monad m) => (a -> b -> m b) -> b -> t a -> m b
+foldrM f z0 xs = foldl c return xs z0
+  where c k x z = f x z >>= k
+
+foldlM :: forall (t :: Type -> Type) (m :: Type -> Type) a b . (Foldable t, Monad m) => (b -> a -> m b) -> b -> t a -> m b
+foldlM f z0 xs = foldr c return xs z0
+  where c x k z = f z x >>= k
+
+traverse_ :: forall (t :: Type -> Type) (f :: Type -> Type) a b . (Foldable t, Applicative f) => (a -> f b) -> t a -> f ()
+traverse_ f = foldr c (pure ())
+  where c x k = f x *> k
+        {-# INLINE c #-}
+
+for_ :: forall (t :: Type -> Type) (f :: Type -> Type) a b . (Foldable t, Applicative f) => t a -> (a -> f b) -> f ()
+for_ = flip traverse_
+
+mapM_ :: forall (t :: Type -> Type) (m :: Type -> Type) a b . (Foldable t, Monad m) => (a -> m b) -> t a -> m ()
+mapM_ f = foldr c (return ())
+  where c x k = f x >> k
+        {-# INLINE c #-}
+
+forM_ :: forall (t :: Type -> Type) (m :: Type -> Type) a b . (Foldable t, Monad m) => t a -> (a -> m b) -> m ()
+forM_ = flip mapM_
+
+sequenceA_ :: forall (t :: Type -> Type) (f :: Type -> Type) a . (Foldable t, Applicative f) => t (f a) -> f ()
+sequenceA_ = foldr c (pure ())
+  where c m k = m *> k
+        {-# INLINE c #-}
+
+sequence_ :: forall (t :: Type -> Type) (m :: Type -> Type) a . (Foldable t, Monad m) => t (m a) -> m ()
+sequence_ = foldr c (return ())
+  where c m k = m >> k
+        {-# INLINE c #-}
+
+asum :: forall (t :: Type -> Type) (f :: Type -> Type) a . (Foldable t, Alternative f) => t (f a) -> f a
+asum = foldr (<|>) empty
+
+msum :: forall (t :: Type -> Type) (m :: Type -> Type) a . (Foldable t, Alternative m, MonadPlus m) => t (m a) -> m a
+msum = asum
+
+concat :: forall (t :: Type -> Type) a . Foldable t => t [a] -> [a]
+concat xs = foldr (\x y -> foldr (:) y x) [] xs
+
+concatMap :: forall (t :: Type -> Type) a b . Foldable t => (a -> [b]) -> t a -> [b]
+concatMap f xs = foldr (\x b -> foldr (:) b (f x)) [] xs
+
+and :: forall (t :: Type -> Type) . Foldable t => t Bool -> Bool
+and = getAll . foldMap All
+
+or :: forall (t :: Type -> Type) . Foldable t => t Bool -> Bool
+or = getAny . foldMap Any
+
+any :: forall (t :: Type -> Type) a . Foldable t => (a -> Bool) -> t a -> Bool
+any p = getAny . foldMap (Any . p)
+
+all :: forall (t :: Type -> Type) a . Foldable t => (a -> Bool) -> t a -> Bool
+all p = getAll . foldMap (All . p)
+
+maximumBy :: forall (t :: Type -> Type) a . Foldable t => (a -> a -> Ordering) -> t a -> a
+maximumBy cmp = fromMaybe (error "maximumBy: empty structure")
+  . foldl' max' Nothing
+  where
+    max' mx y = Just $! case mx of
+      Nothing -> y
+      Just x -> case cmp x y of
+        GT -> x
+        _ -> y
+
+minimumBy :: forall (t :: Type -> Type)  a . Foldable t => (a -> a -> Ordering) -> t a -> a
+minimumBy cmp = fromMaybe (error "minimumBy: empty structure")
+  . foldl' min' Nothing
+  where
+    min' mx y = Just $! case mx of
+      Nothing -> y
+      Just x -> case cmp x y of
+        GT -> y
+        _ -> x
+
+notElem :: forall (t :: Type -> Type)  a . (Foldable t, Eq a) => a -> t a -> Bool
+notElem x = not . elem x
+
+find :: forall (t :: Type -> Type) a . Foldable t => (a -> Bool) -> t a -> Maybe a
+find p = getFirst . foldMap (\ x -> First (if p x then Just x else Nothing))
diff --git a/lib/Data/Fractional.hs b/lib/Data/Fractional.hs
--- a/lib/Data/Fractional.hs
+++ b/lib/Data/Fractional.hs
@@ -16,4 +16,4 @@
 
 infixr 8 ^^
 (^^) :: forall a b . (Fractional a, Integral b, Ord b) => a -> b -> a
-x ^^ n = if n >= 0 then x^n else recip (x^(negate n))
+x ^^ n = if n >= 0 then x^n else recip (x^(- n))
diff --git a/lib/Data/Function.hs b/lib/Data/Function.hs
--- a/lib/Data/Function.hs
+++ b/lib/Data/Function.hs
@@ -37,3 +37,6 @@
 
 asTypeOf :: forall a . a -> a -> a
 asTypeOf = const
+
+seq :: forall a b . a -> b -> b
+seq = primSeq
diff --git a/lib/Data/IOArray.hs b/lib/Data/IOArray.hs
new file mode 100644
--- /dev/null
+++ b/lib/Data/IOArray.hs
@@ -0,0 +1,16 @@
+module Data.IOArray(module Data.IOArray, IOArray) where
+import Primitives
+
+-- data IOArray
+
+newIOArray :: forall a . Int -> a -> IO (IOArray a)
+newIOArray = primArrAlloc
+
+sizeIOArray :: forall a . IOArray a -> IO Int
+sizeIOArray = primArrSize
+
+readIOArray :: forall a . IOArray a -> Int -> IO a
+readIOArray = primArrRead
+
+writeIOArray :: forall a . IOArray a -> Int -> a -> IO ()
+writeIOArray = primArrWrite
diff --git a/lib/Data/IORef.hs b/lib/Data/IORef.hs
new file mode 100644
--- /dev/null
+++ b/lib/Data/IORef.hs
@@ -0,0 +1,21 @@
+module Data.IORef(module Data.IORef) where
+import Primitives
+import Data.Eq
+
+-- An IORef is represented as an IOArray with a single element.
+newtype IORef a = R (IOArray a)
+
+instance forall a . Eq (IORef a) where
+  R x == R y  =  primArrEQ x y
+
+newIORef :: forall a . a -> IO (IORef a)
+newIORef a = primArrAlloc 1 a `primBind` \ p -> primReturn (R p)
+
+readIORef :: forall a . IORef a -> IO a
+readIORef (R p) = primArrRead p 0
+
+writeIORef :: forall a . IORef a -> a -> IO ()
+writeIORef (R p) a = primArrWrite p 0 a
+
+modifyIORef :: forall a . IORef a -> (a -> a) -> IO ()
+modifyIORef (R p) f = primArrRead p 0 `primBind` \ a -> primArrWrite p 0 (f a)
diff --git a/lib/Data/Int.hs b/lib/Data/Int.hs
--- a/lib/Data/Int.hs
+++ b/lib/Data/Int.hs
@@ -20,7 +20,7 @@
   (-)  = primIntSub
   (*)  = primIntMul
   negate x = primIntNeg x
-  abs x = if x < 0 then negate x else x
+  abs x = if x < 0 then - x else x
   signum x =
     case compare x 0 of
       LT -> -1
@@ -34,8 +34,8 @@
   toInteger = _intToInteger
 
 instance Bounded Int where
-  minBound = primWordToInt ((-1::Word) `primWordQuot` 2) + 1
-  maxBound = primWordToInt ((-1::Word) `primWordQuot` 2)
+  minBound = primWordToInt (primWordInv (0::Word) `primWordQuot` 2) + 1
+  maxBound = primWordToInt (primWordInv (0::Word) `primWordQuot` 2)
 
 instance Real Int where
   toRational i = _integerToRational (_intToInteger i)
@@ -47,7 +47,7 @@
   (/=) = primIntNE
 
 instance Ord Int where
-  compare = primCompare
+  compare = primIntCompare
   (<)  = primIntLT
   (<=) = primIntLE
   (>)  = primIntGT
@@ -64,7 +64,7 @@
   if n < 0 then
     '-' : _showUnsignedNegInt n
   else
-    _showUnsignedNegInt (negate n)
+    _showUnsignedNegInt (- n)
 
 -- Some trickery to show minBound correctly.
 -- To print the number n, pass -n.
diff --git a/lib/Data/Integer.hs b/lib/Data/Integer.hs
--- a/lib/Data/Integer.hs
+++ b/lib/Data/Integer.hs
@@ -339,8 +339,7 @@
 _integerToIntList (I Minus ds) = (-1::Int) : ds
 
 _intListToInteger :: [Int] -> Integer
-_intListToInteger (-1 : ds) = I Minus ds
-_intListToInteger ds        = I Plus  ds
+_intListToInteger ads@(x : ds) = if x == -1 then I Minus ds else I Plus ads
 
 ---------------------------------
 {-
diff --git a/lib/Data/Integer_Type.hs b/lib/Data/Integer_Type.hs
--- a/lib/Data/Integer_Type.hs
+++ b/lib/Data/Integer_Type.hs
@@ -27,8 +27,7 @@
   where
     ni = (0::Int) `primIntSub` i
     f :: Int -> [Int]
-    f 0 = []
-    f x = primIntRem x maxD : f (primIntQuot x maxD)
+    f x = if primIntEQ x (0::Int) then [] else primIntRem x maxD : f (primIntQuot x maxD)
 
 _integerToInt :: Integer -> Int
 _integerToInt (I sign ds) = s `primIntMul` i
diff --git a/lib/Data/List.hs b/lib/Data/List.hs
--- a/lib/Data/List.hs
+++ b/lib/Data/List.hs
@@ -86,6 +86,12 @@
     rec (x : xs) = f x (rec xs)
   in rec
 
+foldr' :: forall a b . (a -> b -> b) -> b -> [a] -> b
+foldr' f z [] = z
+foldr' f z (x:xs) =
+  let y = foldr f z xs
+  in  y `seq` f x y
+
 foldr1 :: forall a . (a -> a -> a) -> [a] -> a
 foldr1 _ [] = error "foldr1"
 foldr1 f (x : xs) = foldr f x xs
@@ -94,6 +100,12 @@
 foldl _ z [] = z
 foldl f z (x : xs) = foldl f (f z x) xs
 
+foldl' :: forall a b . (b -> a -> b) -> b -> [a] -> b
+foldl' _ z [] = z
+foldl' f z (x : xs) =
+  let y = f z x
+  in  y `seq` foldl f y xs
+
 foldl1 :: forall a . (a -> a -> a) -> [a] -> a
 foldl1 _ [] = error "foldl1"
 foldl1 f (x : xs) = foldl f x xs
@@ -350,6 +362,9 @@
 
 sort :: forall a . Ord a => [a] -> [a]
 sort = sortLE (<=)
+
+sortBy :: forall a . (a -> a -> Ordering) -> [a] -> [a]
+sortBy f = sortLE (\ x y -> f x y /= GT)
 
 -- A simple "quicksort" for now.
 sortLE :: forall a . (a -> a -> Bool) -> [a] -> [a]
diff --git a/lib/Data/Maybe.hs b/lib/Data/Maybe.hs
--- a/lib/Data/Maybe.hs
+++ b/lib/Data/Maybe.hs
@@ -23,6 +23,12 @@
   Just x  == Just x'  =  x == x'
   _       == _        =  False
 
+instance forall a . Ord a => Ord (Maybe a) where
+  Nothing `compare` Nothing = EQ
+  Nothing `compare` Just _  = LT
+  Just _  `compare` Nothing = GT
+  Just x  `compare` Just y  = x `compare` y
+
 instance forall a . (Show a) => Show (Maybe a) where
   showsPrec _ Nothing  = showString "Nothing"
   showsPrec p (Just a) = showParen (p >= 11) (showString "Just " . showsPrec 11 a)
diff --git a/lib/Data/Monoid.hs b/lib/Data/Monoid.hs
--- a/lib/Data/Monoid.hs
+++ b/lib/Data/Monoid.hs
@@ -1,6 +1,15 @@
-module Data.Monoid(module Data.Monoid) where
+module Data.Monoid(module Data.Monoid, module Data.Semigroup) where
 import Primitives
+import Control.Applicative
+import Control.Monad
+import Data.Bool
+import Data.Bounded
+import Data.Function
+import Data.Functor
 import Data.List_Type
+import Data.Ord
+import Data.Maybe_Type
+import Data.Num
 import Data.Semigroup
 
 class Semigroup a => Monoid a where
@@ -10,3 +19,135 @@
   mconcat :: [a] -> a
   mconcat [] = mempty
   mconcat (a:as) = a <> mconcat as
+
+---------------------
+
+newtype Endo a = Endo (a -> a)
+appEndo :: forall a . Endo a -> (a -> a)
+appEndo (Endo f) = f
+
+instance forall a . Semigroup (Endo a) where
+  Endo f <> Endo g = Endo (f . g)
+
+instance forall a . Monoid (Endo a) where
+  mempty = Endo id
+
+---------------------
+
+newtype Dual a = Dual a
+getDual :: forall a . Dual a -> a
+getDual (Dual a) = a
+
+instance forall a . Semigroup a => Semigroup (Dual a) where
+  Dual a <> Dual b = Dual (b <> a)
+
+instance forall a . Monoid a => Monoid (Dual a) where
+  mempty = Dual mempty
+
+instance Functor Dual where
+  fmap f (Dual a) = Dual (f a)
+
+instance Applicative Dual where
+  pure = Dual
+  Dual f <*> Dual b = Dual (f b)
+
+instance Monad Dual where
+  m >>= k = k (getDual m)
+
+---------------------
+
+newtype Max a = Max a
+getMax :: forall a . Max a -> a
+getMax (Max a) = a
+
+instance forall a . Ord a => Semigroup (Max a) where
+  Max a <> Max b = Max (a `max` b)
+
+instance forall a . (Ord a, Bounded a) => Monoid (Max a) where
+  mempty = Max minBound
+
+---------------------
+
+newtype Min a = Min a
+getMin :: forall a . Min a -> a
+getMin (Min a) = a
+
+instance forall a . Ord a => Semigroup (Min a) where
+  Min a <> Min b = Min (a `min` b)
+
+instance forall a . (Ord a, Bounded a) => Monoid (Min a) where
+  mempty = Min maxBound
+
+---------------------
+
+newtype Sum a = Sum a
+getSum :: forall a . Sum a -> a
+getSum (Sum a) = a
+
+instance forall a . Num a => Semigroup (Sum a) where
+  Sum a <> Sum b = Sum (a + b)
+
+instance forall a . (Num a) => Monoid (Sum a) where
+  mempty = Sum 0
+
+---------------------
+
+newtype Product a = Product a
+getProduct :: forall a . Product a -> a
+getProduct (Product a) = a
+
+instance forall a . Num a => Semigroup (Product a) where
+  Product a <> Product b = Product (a * b)
+
+instance forall a . (Num a) => Monoid (Product a) where
+  mempty = Product 1
+
+---------------------
+
+newtype All = All Bool
+getAll :: All -> Bool
+getAll (All a) = a
+
+instance Semigroup All where
+  All a <> All b = All (a && b)
+
+instance Monoid All where
+  mempty = All True
+
+---------------------
+
+newtype Any = Any Bool
+getAny :: Any -> Bool
+getAny (Any a) = a
+
+instance Semigroup Any where
+  Any a <> Any b = Any (a || b)
+
+instance Monoid Any where
+  mempty = Any False
+
+---------------------
+
+newtype First a = First (Maybe a)
+getFirst :: forall a . First a -> Maybe a
+getFirst (First a) = a
+
+instance forall a . Semigroup (First a) where
+  a@(First (Just _)) <> _ = a
+  First Nothing      <> a = a
+
+instance forall a . Monoid (First a) where
+  mempty = First Nothing
+
+---------------------
+
+newtype Last a = Last (Maybe a)
+getLast :: forall a . Last a -> Maybe a
+getLast (Last a) = a
+
+instance forall a . Semigroup (Last a) where
+  _ <> a@(Last (Just _)) = a
+  a <>    Last Nothing   = a
+
+instance forall a . Monoid (Last a) where
+  mempty = Last Nothing
diff --git a/lib/Data/RealFloat.hs b/lib/Data/RealFloat.hs
--- a/lib/Data/RealFloat.hs
+++ b/lib/Data/RealFloat.hs
@@ -30,7 +30,7 @@
   exponent x          =  if m == 0 then 0 else n + floatDigits x
                          where (m,n) = decodeFloat x
 
-  significand x       =  encodeFloat m (negate (floatDigits x))
+  significand x       =  encodeFloat m (- (floatDigits x))
                          where (m,_) = decodeFloat x
 
   scaleFloat 0 x      =  x
@@ -58,11 +58,11 @@
     |(x <= 0 && y < 0)            ||
      (x <  0 && isNegativeZero y) ||
      (isNegativeZero x && isNegativeZero y)
-                       = negate (atan2 (negate y) x)
+                       = - (atan2 (- y) x)
     | y == 0 && (x < 0 || isNegativeZero x)
                         =  pi    -- must be after the previous test on zero y
     | x==0 && y==0      =  y     -- must be after the other double zero tests
     | otherwise         =  x + y -- x or y is a NaN, return a NaN (via +)
 
 clamp :: Int -> Int -> Int
-clamp bd k = max (negate bd) (min bd k)
+clamp bd k = max (- bd) (min bd k)
diff --git a/lib/Data/STRef.hs b/lib/Data/STRef.hs
new file mode 100644
--- /dev/null
+++ b/lib/Data/STRef.hs
@@ -0,0 +1,21 @@
+module Data.STRef(
+  STRef,
+  newSTRef, readSTRef, writeSTRef, modifySTRef,
+  ) where
+import Prelude
+import Control.Monad.ST_Type
+import Data.IORef
+
+newtype STRef s a = R (IORef a)
+
+newSTRef :: forall s a . a -> ST s (STRef s a)
+newSTRef a = ST (R <$> newIORef a)
+
+readSTRef :: forall s a . STRef s a -> ST s a
+readSTRef (R p) = ST (readIORef p)
+
+writeSTRef :: forall s a . STRef s a -> a -> ST s ()
+writeSTRef (R p) a = ST (writeIORef p a)
+
+modifySTRef :: forall s a . STRef s a -> (a -> a) -> ST s ()
+modifySTRef (R p) f = ST (modifyIORef p f)
diff --git a/lib/Data/Traversable.hs b/lib/Data/Traversable.hs
new file mode 100644
--- /dev/null
+++ b/lib/Data/Traversable.hs
@@ -0,0 +1,235 @@
+-----------------------------------------------------------------------------
+-- |
+-- Module      :  Data.Traversable
+-- Copyright   :  Conor McBride and Ross Paterson 2005
+-- License     :  BSD-style (see the LICENSE file in the distribution)
+--
+-- Maintainer  :  libraries@haskell.org
+-- Stability   :  stable
+-- Portability :  portable
+--
+-- Class of data structures that can be traversed from left to right,
+-- performing an action on each element.  Instances are expected to satisfy
+-- the listed [laws](#laws).
+-----------------------------------------------------------------------------
+
+module Data.Traversable (
+    -- * The 'Traversable' class
+    Traversable(..),
+    -- * Utility functions
+    for,
+    forM,
+{-
+    forAccumM,
+    mapAccumL,
+    mapAccumR,
+    mapAccumM,
+    -- * General definitions for superclass methods
+    fmapDefault,
+    foldMapDefault,
+-}
+    ) where
+import Primitives
+import Control.Applicative
+import Control.Monad
+--import Data.Coerce
+import Data.Either
+import Data.Foldable
+import Data.Function
+import Data.Functor
+--import Data.Functor.Identity ( Identity(..) )
+--import Data.Functor.Utils ( StateL(..), StateR(..), StateT(..), (#.) )
+import Data.List_Type
+import qualified Data.List as List
+import Data.Maybe
+import Data.Monoid
+--import Data.Ord ( Down(..) )
+--import Data.Proxy ( Proxy(..) )
+
+class (Functor t, Foldable t) => Traversable (t :: Type -> Type) where
+    {-# MINIMAL traverse | sequenceA #-}
+
+    traverse :: forall (f :: Type -> Type) a b . Applicative f => (a -> f b) -> t a -> f (t b)
+    traverse f = sequenceA . fmap f
+
+    sequenceA :: forall (f :: Type -> Type) a . Applicative f => t (f a) -> f (t a)
+    sequenceA = traverse id
+
+    mapM :: forall (m :: Type -> Type) a b . Monad m => (a -> m b) -> t a -> m (t b)
+    mapM = traverse
+
+    sequence :: forall (m :: Type -> Type) a . Monad m => t (m a) -> m (t a)
+    sequence = sequenceA
+
+instance Traversable Maybe where
+    traverse _ Nothing = pure Nothing
+    traverse f (Just x) = Just <$> f x
+
+instance Traversable [] where
+    traverse f = List.foldr cons_f (pure [])
+      where cons_f x ys = liftA2 (:) (f x) ys
+
+instance forall a . Traversable (Either a) where
+    traverse _ (Left x) = pure (Left x)
+    traverse f (Right y) = Right <$> f y
+
+{-
+-- | @since 4.15
+deriving instance Traversable Solo
+
+-- | @since 4.7.0.0
+instance Traversable ((,) a) where
+    traverse f (x, y) = (,) x <$> f y
+
+-- | @since 2.01
+instance Ix i => Traversable (Array i) where
+    traverse f arr = listArray (bounds arr) `fmap` traverse f (elems arr)
+
+-- | @since 4.7.0.0
+instance Traversable Proxy where
+    traverse _ _ = pure Proxy
+    {-# INLINE traverse #-}
+    sequenceA _ = pure Proxy
+    {-# INLINE sequenceA #-}
+    mapM _ _ = pure Proxy
+    {-# INLINE mapM #-}
+    sequence _ = pure Proxy
+    {-# INLINE sequence #-}
+
+-- | @since 4.7.0.0
+instance Traversable (Const m) where
+    traverse _ (Const m) = pure $ Const m
+
+-- | @since 4.8.0.0
+instance Traversable Dual where
+    traverse f (Dual x) = Dual <$> f x
+
+-- | @since 4.8.0.0
+instance Traversable Sum where
+    traverse f (Sum x) = Sum <$> f x
+
+-- | @since 4.8.0.0
+instance Traversable Product where
+    traverse f (Product x) = Product <$> f x
+
+-- | @since 4.8.0.0
+instance Traversable First where
+    traverse f (First x) = First <$> traverse f x
+
+-- | @since 4.8.0.0
+instance Traversable Last where
+    traverse f (Last x) = Last <$> traverse f x
+
+-- | @since 4.12.0.0
+instance (Traversable f) => Traversable (Alt f) where
+    traverse f (Alt x) = Alt <$> traverse f x
+
+-- | @since 4.12.0.0
+instance (Traversable f) => Traversable (Ap f) where
+    traverse f (Ap x) = Ap <$> traverse f x
+
+-- | @since 4.9.0.0
+instance Traversable ZipList where
+    traverse f (ZipList x) = ZipList <$> traverse f x
+
+-- | @since 4.9.0.0
+deriving instance Traversable Identity
+
+
+-- Instances for GHC.Generics
+-- | @since 4.9.0.0
+instance Traversable U1 where
+    traverse _ _ = pure U1
+    {-# INLINE traverse #-}
+    sequenceA _ = pure U1
+    {-# INLINE sequenceA #-}
+    mapM _ _ = pure U1
+    {-# INLINE mapM #-}
+    sequence _ = pure U1
+    {-# INLINE sequence #-}
+
+-- | @since 4.9.0.0
+deriving instance Traversable V1
+
+-- | @since 4.9.0.0
+deriving instance Traversable Par1
+
+-- | @since 4.9.0.0
+deriving instance Traversable f => Traversable (Rec1 f)
+
+-- | @since 4.9.0.0
+deriving instance Traversable (K1 i c)
+
+-- | @since 4.9.0.0
+deriving instance Traversable f => Traversable (M1 i c f)
+
+-- | @since 4.9.0.0
+deriving instance (Traversable f, Traversable g) => Traversable (f :+: g)
+
+-- | @since 4.9.0.0
+deriving instance (Traversable f, Traversable g) => Traversable (f :*: g)
+
+-- | @since 4.9.0.0
+deriving instance (Traversable f, Traversable g) => Traversable (f :.: g)
+
+-- | @since 4.9.0.0
+deriving instance Traversable UAddr
+
+-- | @since 4.9.0.0
+deriving instance Traversable UChar
+
+-- | @since 4.9.0.0
+deriving instance Traversable UDouble
+
+-- | @since 4.9.0.0
+deriving instance Traversable UFloat
+
+-- | @since 4.9.0.0
+deriving instance Traversable UInt
+
+-- | @since 4.9.0.0
+deriving instance Traversable UWord
+
+-- Instance for Data.Ord
+-- | @since 4.12.0.0
+deriving instance Traversable Down
+-}
+-- general functions
+
+-- | 'for' is 'traverse' with its arguments flipped. For a version
+-- that ignores the results see 'Data.Foldable.for_'.
+for :: forall (t :: Type -> Type) (f :: Type -> Type) a b . (Traversable t, Applicative f) => t a -> (a -> f b) -> f (t b)
+for = flip traverse
+
+forM :: forall (t :: Type -> Type) (m :: Type -> Type) a b . (Traversable t, Monad m) => t a -> (a -> m b) -> m (t b)
+forM = flip mapM
+
+{-
+mapAccumL :: forall t s a b. Traversable t
+          => (s -> a -> (s, b)) -> s -> t a -> (s, t b)
+mapAccumL f s t = coerce (traverse @t @(StateL s) @a @b) (flip f) t s
+
+mapAccumR :: forall t s a b. Traversable t
+          => (s -> a -> (s, b)) -> s -> t a -> (s, t b)
+mapAccumR f s t = coerce (traverse @t @(StateR s) @a @b) (flip f) t s
+
+mapAccumM
+  :: forall m t s a b. (Monad m, Traversable t)
+  => (s -> a -> m (s, b))
+  -> s -> t a -> m (s, t b)
+mapAccumM f s t = coerce (mapM @t @(StateT s m) @a @b) (StateT #. flip f) t s
+
+forAccumM
+  :: (Monad m, Traversable t)
+  => s -> t a -> (s -> a -> m (s, b)) -> m (s, t b)
+forAccumM s t f = mapAccumM f s t
+
+fmapDefault :: forall t a b . Traversable t
+            => (a -> b) -> t a -> t b
+fmapDefault = coerce (traverse @t @Identity @a @b)
+
+foldMapDefault :: forall t m a . (Traversable t, Monoid m)
+               => (a -> m) -> t a -> m
+foldMapDefault = coerce (traverse @t @(Const m) @a @())
+
+-}
diff --git a/lib/Data/TypeLits.hs b/lib/Data/TypeLits.hs
new file mode 100644
--- /dev/null
+++ b/lib/Data/TypeLits.hs
@@ -0,0 +1,14 @@
+module Data.TypeLits(
+  Symbol,
+  Nat,
+  KnownNat(..),
+  KnownSymbol(..),
+  ) where
+import Primitives
+import Prelude
+
+class KnownNat (n :: Nat) where
+  natVal :: forall (proxy :: Nat -> Type) . proxy n -> Integer
+
+class KnownSymbol (s :: Symbol) where
+  symbolVal :: forall (proxy :: Symbol -> Type) . proxy s -> String
diff --git a/lib/Data/Word.hs b/lib/Data/Word.hs
--- a/lib/Data/Word.hs
+++ b/lib/Data/Word.hs
@@ -33,7 +33,7 @@
 
 instance Bounded Word where
   minBound = 0::Word
-  maxBound = (-1::Word)
+  maxBound = primWordInv (0::Word)
 
 instance Real Word where
   toRational i = _integerToRational (_wordToInteger i)
@@ -67,10 +67,6 @@
   (<=) = primWordLE
   (>)  = primWordGT
   (>=) = primWordGE
-
-instance Enum Word where
-  toEnum = primIntToWord
-  fromEnum = primWordToInt
 
 --------------------------------
 
diff --git a/lib/Data/Word8.hs b/lib/Data/Word8.hs
new file mode 100644
--- /dev/null
+++ b/lib/Data/Word8.hs
@@ -0,0 +1,109 @@
+-- Copyright 2023 Lennart Augustsson
+-- See LICENSE file for full license.
+module Data.Word8(module Data.Word8) where
+import Primitives
+import Data.Bits
+import Data.Bool_Type
+import Data.Bounded
+import Data.Char
+import Data.Enum
+import Data.Eq
+import Data.Function
+import Data.Int()  -- instances only
+import Data.Integer
+import Data.Integral
+import Data.List
+import Data.Maybe_Type
+import Data.Num
+import Data.Ord
+import Data.Real
+import Data.Word
+import Text.Show
+
+newtype Word8 = W8 Word
+unW8 :: Word8 -> Word
+unW8 (W8 x) = x
+
+w8 :: Word -> Word8
+w8 w = W8 (w .&. 0xff)
+
+bin8 :: (Word -> Word -> Word) -> (Word8 -> Word8 -> Word8)
+bin8 op (W8 x) (W8 y) = w8 (x `op` y)
+
+bini8 :: (Word -> Int -> Word) -> (Word8 -> Int -> Word8)
+bini8 op (W8 x) y = w8 (x `op` y)
+
+cmp8 :: (Word -> Word -> Bool) -> (Word8 -> Word8 -> Bool)
+cmp8 op (W8 x) (W8 y) = x `op` y
+
+una8 :: (Word -> Word) -> (Word8 -> Word8)
+una8 op (W8 x) = w8 (op x)
+
+instance Num Word8 where
+  (+)  = bin8 primWordAdd
+  (-)  = bin8 primWordSub
+  (*)  = bin8 primWordMul
+  abs x = x
+  signum x = if x == 0 then 0 else 1
+  fromInteger i = w8 (primIntToWord (_integerToInt i))
+
+instance Integral Word8 where
+  quot = bin8 primWordQuot
+  rem  = bin8 primWordRem
+  toInteger = _wordToInteger . unW8
+
+instance Bounded Word8 where
+  minBound = W8 0
+  maxBound = W8 0xff
+
+instance Real Word8 where
+  toRational = _integerToRational . _wordToInteger . unW8
+
+--------------------------------
+
+instance Enum Word8 where
+  succ x = x + 1
+  pred x = x - 1
+  toEnum = w8 . primIntToWord
+  fromEnum = primWordToInt . unW8
+  enumFrom n = n : enumFrom (n+1)
+  enumFromThen n m = from n
+    where d = m - n
+          from i = i : from (i+d)
+  enumFromTo l h = takeWhile (<= h) (enumFrom l)
+  enumFromThenTo l m h =
+    if m > l then
+      takeWhile (<= h) (enumFromThen l m)
+    else
+      takeWhile (>= h) (enumFromThen l m)
+
+--------------------------------
+
+instance Eq Word8 where
+  (==) = cmp8 primWordEQ
+  (/=) = cmp8 primWordNE
+
+instance Ord Word8 where
+  (<)  = cmp8 primWordLT
+  (<=) = cmp8 primWordLE
+  (>)  = cmp8 primWordGT
+  (>=) = cmp8 primWordGE
+
+--------------------------------
+
+instance Bits Word8 where
+  (.&.) = bin8 primWordAnd
+  (.|.) = bin8 primWordOr
+  xor   = bin8 primWordXor
+  complement = una8 primWordInv
+  shiftL = bini8 primWordShl
+  shiftR = bini8 primWordShr
+  bitSizeMaybe _ = Just 8
+  bitSize _ = 8
+  bit n = w8 (primWordShl 1 n)
+  zeroBits = 0
+
+--------------------------------
+
+instance Show Word8 where
+  show = show . unW8
diff --git a/lib/Foreign/Marshal/Alloc.hs b/lib/Foreign/Marshal/Alloc.hs
--- a/lib/Foreign/Marshal/Alloc.hs
+++ b/lib/Foreign/Marshal/Alloc.hs
@@ -1,5 +1,5 @@
 module Foreign.Marshal.Alloc(
-  malloc, calloc,
+  malloc, calloc, alloca,
   free,
   mallocBytes, callocBytes,
   ) where
diff --git a/lib/Foreign/Marshal/Array.hs b/lib/Foreign/Marshal/Array.hs
new file mode 100644
--- /dev/null
+++ b/lib/Foreign/Marshal/Array.hs
@@ -0,0 +1,52 @@
+module Foreign.Marshal.Array(module Foreign.Marshal.Array) where
+import Prelude
+import Foreign.Ptr
+import Foreign.Storable
+import Foreign.Marshal.Alloc
+
+mallocArray :: forall a . Storable a => Int -> IO (Ptr a)
+mallocArray size = mallocBytes (size * sizeOf (undefined :: a))
+
+mallocArray0 :: forall a . Storable a => Int -> IO (Ptr a)
+mallocArray0 size  = mallocArray (size + 1)
+
+callocArray :: forall a . Storable a => Int -> IO (Ptr a)
+callocArray size = callocBytes (size * sizeOf (undefined :: a))
+
+callocArray0 :: forall a . Storable a => Int -> IO (Ptr a)
+callocArray0 size  = callocArray (size + 1)
+
+peekArray :: forall a . Storable a => Int -> Ptr a -> IO [a]
+peekArray size ptr | size <= 0 = return []
+                   | otherwise = f (size-1) []
+  where
+    f 0 acc = do e <- peekElemOff ptr 0; return (e:acc)
+    f n acc = do e <- peekElemOff ptr n; f (n-1) (e:acc)
+
+peekArray0 :: forall a . (Storable a, Eq a) => a -> Ptr a -> IO [a]
+peekArray0 marker ptr  = do
+  size <- lengthArray0 marker ptr
+  peekArray size ptr
+
+pokeArray :: forall a . Storable a => Ptr a -> [a] -> IO ()
+pokeArray ptr vals0 = go vals0 0
+  where go [] _         = return ()
+        go (val:vals) n = do { pokeElemOff ptr n val; go vals (n + 1) }
+
+pokeArray0 :: forall a . Storable a => a -> Ptr a -> [a] -> IO ()
+pokeArray0 marker ptr vals0 = go vals0 0
+  where go []         n = pokeElemOff ptr n marker
+        go (val:vals) n = do { pokeElemOff ptr n val; go vals (n + 1) }
+
+newArray0 :: forall a . Storable a => a -> [a] -> IO (Ptr a)
+newArray0 marker vals  = do
+  ptr <- mallocArray0 (length vals)
+  pokeArray0 marker ptr vals
+  return ptr
+
+lengthArray0 :: forall a . (Storable a, Eq a) => a -> Ptr a -> IO Int
+lengthArray0 marker ptr = loop 0
+  where
+    loop i = do
+        val <- peekElemOff ptr i
+        if val == marker then return i else loop (i+1)
diff --git a/lib/Foreign/Marshal/Utils.hs b/lib/Foreign/Marshal/Utils.hs
new file mode 100644
--- /dev/null
+++ b/lib/Foreign/Marshal/Utils.hs
@@ -0,0 +1,57 @@
+module Foreign.Marshal.Utils(module Foreign.Marshal.Utils) where
+import Prelude
+import Foreign.Marshal.Alloc
+import Foreign.Ptr
+import Foreign.Storable
+
+new :: forall a . Storable a => a -> IO (Ptr a)
+new val = do
+  ptr <- malloc
+  poke ptr val
+  return ptr
+
+with :: forall a b . Storable a => a -> (Ptr a -> IO b) -> IO b
+with val f  =
+  alloca $ \ ptr -> do
+    poke ptr val
+    f ptr
+
+fromBool :: forall a . Num a => Bool -> a
+fromBool False = 0
+fromBool True  = 1
+
+toBool :: forall a . (Eq a, Num a) => a -> Bool
+toBool = (/= 0)
+
+maybeNew :: forall a b .
+            (      a -> IO (Ptr b))
+         -> (Maybe a -> IO (Ptr b))
+maybeNew  = maybe (return nullPtr)
+
+maybeWith :: forall a b c .
+             (      a -> (Ptr b -> IO c) -> IO c)
+          -> (Maybe a -> (Ptr b -> IO c) -> IO c)
+maybeWith  = maybe ($ nullPtr)
+
+maybePeek :: forall a b . (Ptr a -> IO b) -> Ptr a -> IO (Maybe b)
+maybePeek peek ptr | ptr == nullPtr  = return Nothing
+                   | otherwise       = do { a <- peek ptr; return (Just a) }
+
+withMany :: forall a b res .
+            (a -> (b -> res) -> res)
+         -> [a]
+         -> ([b] -> res)
+         -> res
+withMany _   []       f = f []
+withMany wth (x : xs) f =
+  wth x $ \ x' ->
+    withMany wth xs (\ xs' -> f (x' : xs'))
+
+foreign import ccall "memcpy"  c_memcpy  :: forall a b . Ptr a -> Ptr a -> Int -> IO ()
+foreign import ccall "memmove" c_memmove :: forall a b . Ptr a -> Ptr a -> Int -> IO ()
+
+copyBytes :: forall a b . Ptr a -> Ptr a -> Int -> IO ()
+copyBytes = c_memcpy
+
+moveBytes :: forall a b . Ptr a -> Ptr a -> Int -> IO ()
+moveBytes = c_memmove
diff --git a/lib/Foreign/Ptr.hs b/lib/Foreign/Ptr.hs
--- a/lib/Foreign/Ptr.hs
+++ b/lib/Foreign/Ptr.hs
@@ -6,19 +6,19 @@
 import Text.Show
 
 instance forall a . Eq (Ptr a) where
-  p == q  =  primPtrToWord p == primPtrToWord q
+  p == q  =  primPtrEQ p q
 
 instance forall a . Show (Ptr a) where
   showsPrec _ p = showString "PTR#" . showsPrec 0 (primPtrToWord p)
 
 nullPtr :: forall a . Ptr a
-nullPtr = primWordToPtr 0
+nullPtr = primPtrNull
 
 castPtr :: forall a b . Ptr a -> Ptr b
-castPtr = primUnsafeCoerce
+castPtr = primPtrCast
 
 plusPtr :: forall a b . Ptr a -> Int -> Ptr b
-plusPtr p i = primIntToPtr (primPtrToInt p `primIntAdd` i)
+plusPtr = primPtrAdd
 
 minusPtr :: forall a b . Ptr a -> Ptr b -> Int
-minusPtr p q = primPtrToInt p `primIntSub` primPtrToInt q
+minusPtr = primPtrSub
diff --git a/lib/Foreign/Storable.hs b/lib/Foreign/Storable.hs
--- a/lib/Foreign/Storable.hs
+++ b/lib/Foreign/Storable.hs
@@ -2,6 +2,7 @@
 import Primitives
 import Control.Error(undefined)
 import Foreign.Ptr
+import Data.Word8
 
 class Storable a where
    sizeOf      :: a -> Int
@@ -22,11 +23,29 @@
    peek ptr = peekElemOff ptr 0
    poke ptr = pokeElemOff ptr 0
 
-foreign import ccall "wordPeek" c_wordPeek :: Ptr Word -> IO Word
-foreign import ccall "wordPoke" c_wordPoke :: Ptr Word -> Word -> IO ()
+foreign import ccall "peekWord" c_peekWord :: Ptr Word -> IO Word
+foreign import ccall "pokeWord" c_pokeWord :: Ptr Word -> Word -> IO ()
 
 instance Storable Word where
   sizeOf    _ = _wordSize
   alignment _ = _wordSize
-  peek p      = c_wordPeek p
-  poke p w    = c_wordPoke p w
+  peek p      = c_peekWord p
+  poke p w    = c_pokeWord p w
+
+foreign import ccall "peekPtr" c_peekPtr :: forall a . Ptr (Ptr a) -> IO (Ptr a)
+foreign import ccall "pokePtr" c_pokePtr :: forall a . Ptr (Ptr a) -> Ptr a -> IO ()
+
+instance forall a . Storable (Ptr a) where
+  sizeOf    _ = _wordSize
+  alignment _ = _wordSize
+  peek p      = c_peekPtr p
+  poke p w    = c_pokePtr p w
+
+foreign import ccall "peekByte" c_peekByte :: Ptr Word8 -> IO Word8
+foreign import ccall "pokeByte" c_pokeByte :: Ptr Word8 -> Word8 -> IO ()
+
+instance Storable Word8 where
+  sizeOf    _ = 8
+  alignment _ = 8
+  peek p      = c_peekByte p
+  poke p w    = c_pokeByte p w
diff --git a/lib/Primitives.hs b/lib/Primitives.hs
--- a/lib/Primitives.hs
+++ b/lib/Primitives.hs
@@ -5,10 +5,24 @@
 --import Data.List_Type
 import Data.Ordering_Type
 
-infixr -1 ->
-infixr -2 =>
+-- These fixities are hardwired
+-- infixr -1 ->
+-- infixr -2 =>
 infix   4 ~
 
+-- Kinds
+data Constraint
+data Nat
+data Symbol
+data Type
+
+-- Classes
+-- Type equality as a constraint.
+class a ~ b | a -> b, b -> a
+-- class KnownNat in Data.TypeLits
+-- class KnownSymbol in Data.TypeLits
+
+-- Types
 data Any
 data Char
 data Handle
@@ -17,9 +31,7 @@
 data IO a
 data Word
 data Ptr a
-
--- Type equality as a constraint.
-class a ~ b {-x | a -> b, b -> a-}
+data IOArray a
 
 data () = ()   -- Parser hacks allows () to be used
 
@@ -38,28 +50,42 @@
 primIntNeg :: Int -> Int
 primIntNeg = primitive "neg"
 
+primIntEQ   :: Int -> Int -> Bool
+primIntEQ   = primitive "=="
+primIntNE   :: Int -> Int -> Bool
+primIntNE   = primitive "/="
+primIntLT   :: Int -> Int -> Bool
+primIntLT   = primitive "<"
+primIntLE   :: Int -> Int -> Bool
+primIntLE   = primitive "<="
+primIntGT   :: Int -> Int -> Bool
+primIntGT   = primitive ">"
+primIntGE   :: Int -> Int -> Bool
+primIntGE   = primitive ">="
+
 primDoubleAdd :: Double -> Double -> Double
-primDoubleAdd  = primitive "fadd"
+primDoubleAdd  = primitive "f+"
 primDoubleSub :: Double -> Double -> Double
-primDoubleSub  = primitive "fsub"
+primDoubleSub  = primitive "f-"
 primDoubleMul :: Double -> Double -> Double
-primDoubleMul  = primitive "fmul"
+primDoubleMul  = primitive "f*"
 primDoubleDiv :: Double -> Double -> Double
-primDoubleDiv = primitive "fdiv"
+primDoubleDiv = primitive "f/"
 primDoubleNeg :: Double -> Double
 primDoubleNeg = primitive "fneg"
+
 primDoubleEQ :: Double -> Double -> Bool
-primDoubleEQ = primitive "feq"
+primDoubleEQ = primitive "f=="
 primDoubleNE :: Double -> Double -> Bool
-primDoubleNE = primitive "fne"
+primDoubleNE = primitive "f/="
 primDoubleLT :: Double -> Double -> Bool
-primDoubleLT = primitive "flt"
+primDoubleLT = primitive "f<"
 primDoubleLE :: Double -> Double -> Bool
-primDoubleLE = primitive "fle"
+primDoubleLE = primitive "f<="
 primDoubleGT :: Double -> Double -> Bool
-primDoubleGT = primitive "fgt"
+primDoubleGT = primitive "f>"
 primDoubleGE :: Double -> Double -> Bool
-primDoubleGE = primitive "fge"
+primDoubleGE = primitive "f>="
 primDoubleShow :: Double -> [Char]
 primDoubleShow = primitive "fshow"
 primDoubleRead :: [Char] -> Double
@@ -96,19 +122,6 @@
 primWordFromDoubleRaw :: Double -> Word
 primWordFromDoubleRaw = primitive "toInt"
 
-primIntEQ   :: Int -> Int -> Bool
-primIntEQ   = primitive "=="
-primIntNE   :: Int -> Int -> Bool
-primIntNE   = primitive "/="
-primIntLT   :: Int -> Int -> Bool
-primIntLT   = primitive "<"
-primIntLE   :: Int -> Int -> Bool
-primIntLE   = primitive "<="
-primIntGT   :: Int -> Int -> Bool
-primIntGT   = primitive ">"
-primIntGE   :: Int -> Int -> Bool
-primIntGE   = primitive ">="
-
 primWordEQ  :: Word -> Word -> Bool
 primWordEQ  = primitive "=="
 primWordNE  :: Word -> Word -> Bool
@@ -116,17 +129,18 @@
 primWordLT  :: Word -> Word -> Bool
 primWordLT  = primitive "u<"
 primWordLE   :: Word -> Word -> Bool
-primWordLE   = primitive "<="
+primWordLE   = primitive "u<="
 primWordGT   :: Word -> Word -> Bool
-primWordGT   = primitive ">"
+primWordGT   = primitive "u>"
 primWordGE   :: Word -> Word -> Bool
-primWordGE   = primitive ">="
+primWordGE   = primitive "u>="
 
 primWordToInt :: Word -> Int
 primWordToInt = primitive "I"
 primIntToWord :: Int -> Word
 primIntToWord = primitive "I"
 
+-- Char is represented by Int
 primCharEQ :: Char -> Char -> Bool
 primCharEQ  = primitive "=="
 primCharNE :: Char -> Char -> Bool
@@ -153,16 +167,20 @@
 --primEqual  = primitive "equal"
 
 -- Works for Int, Char, String
-primCompare :: forall a . a -> a -> Ordering
-primCompare  = primitive "compare"
+primStringCompare :: forall a . [Char] -> [Char] -> Ordering
+primStringCompare  = primitive "scmp"
+primIntCompare :: forall a . Int -> Int -> Ordering
+primIntCompare  = primitive "icmp"
+primCharCompare :: forall a . Char -> Char -> Ordering
+primCharCompare  = primitive "icmp"
 
 primStringEQ  :: [Char] -> [Char] -> Bool
-primStringEQ  = primitive "equal"
+primStringEQ  = primitive "sequal"
 
 primChr :: Int -> Char
-primChr = primitive "I"
+primChr = primitive "chr"
 primOrd :: Char -> Int
-primOrd = primitive "I"
+primOrd = primitive "ord"
 
 primUnsafeCoerce :: forall a b . a -> b
 primUnsafeCoerce = primitive "I"
@@ -175,14 +193,9 @@
 primReturn        = primitive "IO.return"
 primGetArgs      :: IO [[Char]]
 primGetArgs       = primitive "IO.getArgs"
-primDropArgs     :: Int -> IO ()
-primDropArgs      = primitive "IO.dropArgs"
 primPerformIO    :: forall a . IO a -> a
 primPerformIO     = primitive "IO.performIO"
 
-primWithDropArgs :: forall a . Int -> IO a -> IO a
-primWithDropArgs i ioa = primThen (primDropArgs i) ioa
-
 -- Use string for the exception until we can do better.
 primCatch        :: forall a . IO a -> ([Char] -> IO a) -> IO a
 primCatch         = primitive "IO.catch"
@@ -226,3 +239,33 @@
 foreign import ccall "iswindows" c_iswindows :: IO Int
 _isWindows :: Bool
 _isWindows = primPerformIO c_iswindows `primIntEQ` 1
+
+primPtrEQ   :: forall a b . Ptr a -> Ptr b -> Bool
+primPtrEQ   = primitive "p=="
+
+primPtrNull :: forall a . Ptr a
+primPtrNull = primitive "pnull"
+
+primPtrCast :: forall a b . Ptr a -> Ptr b
+primPtrCast = primitive "pcast"
+
+primPtrAdd :: forall a b . Ptr a -> Int -> Ptr b
+primPtrAdd = primitive "p+"
+
+primPtrSub :: forall a b . Ptr a -> Ptr b -> Int
+primPtrSub = primitive "p-"
+
+primArrAlloc :: forall a . Int -> a -> IO (IOArray a)
+primArrAlloc = primitive "A.alloc"
+
+primArrSize :: forall a . IOArray a -> IO Int
+primArrSize = primitive "A.size"
+
+primArrRead :: forall a . IOArray a -> Int -> IO a
+primArrRead = primitive "A.read"
+
+primArrWrite :: forall a . IOArray a -> Int -> a -> IO ()
+primArrWrite = primitive "A.write"
+
+primArrEQ :: forall a . IOArray a -> IOArray a -> Bool
+primArrEQ = primitive "A.=="
diff --git a/lib/System/Environment.hs b/lib/System/Environment.hs
--- a/lib/System/Environment.hs
+++ b/lib/System/Environment.hs
@@ -1,16 +1,31 @@
 -- Copyright 2023 Lennart Augustsson
 -- See LICENSE file for full license.
-module System.Environment(module System.Environment) where
+module System.Environment(
+  getArgs,
+  withArgs,
+  lookupEnv,
+  ) where
 import Prelude
-import Primitives
+import Primitives(primPerformIO, primGetArgs)
+import Data.IORef
 import Foreign.C.String
 import Foreign.Ptr
 
+progArgs :: IORef [String]
+progArgs = primPerformIO $ do
+  args <- primGetArgs
+  newIORef args
+
 getArgs :: IO [String]
-getArgs = primGetArgs
+getArgs = readIORef progArgs
 
-withDropArgs :: forall a . Int -> IO a -> IO a
-withDropArgs = primWithDropArgs
+withArgs :: forall a . [String] -> IO a -> IO a
+withArgs as ioa = do
+  old <- readIORef progArgs
+  writeIORef progArgs as
+  a <- ioa
+  writeIORef progArgs old
+  return a
 
 foreign import ccall "getenv" c_getenv :: CString -> IO CString
 
diff --git a/lib/System/IO.hs b/lib/System/IO.hs
--- a/lib/System/IO.hs
+++ b/lib/System/IO.hs
@@ -209,9 +209,6 @@
 unsafeInterleaveIO :: forall a . IO a -> IO a
 unsafeInterleaveIO ioa = return (primPerformIO ioa)
 
-seq :: forall a b . a -> b -> b
-seq = primSeq
-
 -- MicroHs is always in binary mode
 hSetBinaryMode :: Handle -> Bool -> IO ()
 hSetBinaryMode _ _ = return ()
diff --git a/src/MicroHs/Abstract.hs b/src/MicroHs/Abstract.hs
--- a/src/MicroHs/Abstract.hs
+++ b/src/MicroHs/Abstract.hs
@@ -270,8 +270,8 @@
                   if isY ff && isK ck then
                     e
                   else
-                    App ff aa
-                NotApp -> App ff aa
+                    kApp ff aa
+                NotApp -> kApp ff aa
           in
             def
 {-
@@ -284,6 +284,14 @@
               NotApp -> def
 -}
             
+
+kApp :: Exp -> Exp -> Exp
+kApp (Lit (LPrim "K")) (App (Lit (LPrim ('K':s))) x)
+  | s == ""  = App (Lit (LPrim "K2")) x
+  | s == "2" = App (Lit (LPrim "K3")) x
+  | s == "3" = App (Lit (LPrim "K4")) x
+kApp f a = App f a
+
 {-
 -- K I      -->  A
 -- C I      -->  T
@@ -300,3 +308,40 @@
 improveT e = e
 -}
 
+--------
+-- Possible additions
+--
+-- Added:
+--  R = C C
+--  R x y z = (C C x y) z = C y x z = y z x
+--
+--  Q = C I
+--  Q x y z = (C I x y) z = I y x z = y x z
+--
+-- Added:
+--  Z = B K
+--  Z x y z = B K x y z = K (x y) z = x y
+--
+--  ZK = Z K
+--  ZK x y z = Z K x y z = (K x) z = x
+--
+--  C'B = C' B
+--  C'B x y z w = C' B x y z w = B (x z) y w = x z (y w)
+
+--  B (B e) x y z = B e (x y) z = e (x y z)
+--
+--  B' :: (a -> b -> c) -> a -> (d -> b) -> d -> c
+--  B' k f g x = k f (g x)
+--
+-- Common:
+--  817: C' B
+--  616: B Z
+--  531: C' C
+--  352: Z K
+--  305: C' S
+--
+--  BZ = B Z
+--  BZ x y z w = B Z x y z w = Z (x y) z w = x y z
+--
+--  C'C = C' C
+--  C'C x y z w = C' C x y z w = C (x z) y w = x z w y
diff --git a/src/MicroHs/Desugar.hs b/src/MicroHs/Desugar.hs
--- a/src/MicroHs/Desugar.hs
+++ b/src/MicroHs/Desugar.hs
@@ -17,6 +17,7 @@
 import Compat
 import GHC.Stack
 
+import MicroHs.EncodeData
 import MicroHs.Expr
 import MicroHs.Exp
 import MicroHs.Graph
@@ -36,17 +37,12 @@
   case adef of
     Data _ cs ->
       let
-        f i = mkIdent ("$f" ++ show i)
-        fs = [f i | (i, _) <- zip [0::Int ..] cs]
+        n = length cs
         dsConstr i (Constr _ ctx c ets) =
           let
             ss = (if null ctx then [] else [False]) ++
                  map fst (either id (map snd) ets)   -- strict flags
-            xs = [mkIdent ("$x" ++ show j) | (j, _) <- zip [0::Int ..] ss]
-            strict (False:ys) (_:is) e = strict ys is e
-            strict (True:ys)  (x:is) e = App (App (Lit (LPrim "seq")) (Var x)) (strict ys is e)
-            strict _ _ e = e
-          in (qualIdent mn c, lams xs $ strict ss xs $ lams fs $ apps (Var (f i)) (map Var xs))
+          in (qualIdent mn c, encConstr i n ss)
       in  zipWith dsConstr [0::Int ..] cs
     Newtype _ (Constr _ _ c _) -> [ (qualIdent mn c, Lit (LPrim "I")) ]
     Type _ _ -> []
@@ -64,7 +60,7 @@
           xs = [ mkIdent ("$x" ++ show j) | j <- [ 1 .. length ctx + length meths ] ]
       in  (qualIdent mn $ mkClassConstructor c, lams xs $ Lam f $ apps (Var f) (map Var xs)) :
           zipWith (\ i x -> (i, Lam f $ App (Var f) (lams xs $ Var x))) (supers ++ meths) xs
-    Instance _ _ _ _ -> []
+    Instance _ _ -> []
     Default _ -> []
 
 oneAlt :: Expr -> EAlts
@@ -90,23 +86,11 @@
         xs = take (length aps) $ newVars "$q" vs
         mkArm (Eqn ps alts) =
           let ps' = map dsPat ps
-          in  (ps', dsAlts alts, hasGuards alts || any hasLit ps')
+          in  (ps', dsAlts alts)
         ex = runS loc (vs ++ xs) (map Var xs) (map mkArm eqns)
       in foldr Lam ex xs
     _ -> impossible
 
-hasGuards :: EAlts -> Bool
-hasGuards (EAlts [([], _)] _) = False
-hasGuards _ = True
-
-hasLit :: EPat -> Bool
-hasLit (ELit _ _) = True
-hasLit (EVar _) = False
-hasLit (ECon _) = False
-hasLit (EApp f a) = hasLit f || hasLit a
-hasLit (EAt _ p) = hasLit p
-hasLit _ = impossible
-
 dsAlts :: EAlts -> (Exp -> Exp)
 dsAlts (EAlts alts bs) = dsBinds bs . dsAltsL alts
 
@@ -183,7 +167,7 @@
   App (Var (mkIdent "Data.Integer_Type._intToInteger")) (Lit (LInt (_integerToInt i)))
                 | otherwise =
 --  trace ("*** large integer " ++ show i) $
-  App (Var (mkIdent "Data.Integer._intListToInteger")) (encodeList (map (Lit . LInt) (_integerToIntList i)))
+  App (Var (mkIdent "Data.Integer._intListToInteger")) (encList (map (Lit . LInt) (_integerToIntList i)))
 
 encodeRational :: Rational -> Exp
 encodeRational r =
@@ -202,9 +186,8 @@
     ECase e as -> dsCase (getSLoc aexpr) e as
     ELet ads e -> dsBinds ads (dsExpr e)
     ETuple es -> Lam (mkIdent "$f") $ foldl App (Var $ mkIdent "$f") $ map dsExpr es
-    EIf e1 e2 e3 ->
-      app2 (dsExpr e1) (dsExpr e3) (dsExpr e2)
-    EListish (LList es) -> encodeList $ map dsExpr es
+    EIf e1 e2 e3 -> encIf (dsExpr e1) (dsExpr e2) (dsExpr e3)
+    EListish (LList es) -> encList $ map dsExpr es
     EListish (LCompr e astmts) ->
       case astmts of
         [] -> dsExpr (EListish (LList [e]))
@@ -246,16 +229,18 @@
 -- Handle special syntax for lists and tuples
 dsPat :: HasCallStack =>
          EPat -> EPat
-dsPat ap =
-  case ap of
-    EVar _ -> ap
-    ECon _ -> ap
+dsPat apat =
+  case apat of
+    EVar _ -> apat
+    ECon _ -> apat
     EApp f a -> EApp (dsPat f) (dsPat a)
     EListish (LList ps) -> dsPat $ foldr (\ x xs -> EApp (EApp consCon x) xs) nilCon ps
-    ETuple ps -> dsPat $ foldl EApp (tupleCon (getSLoc ap) (length ps)) ps
+    ETuple ps -> dsPat $ foldl EApp (tupleCon (getSLoc apat) (length ps)) ps
     EAt i p -> EAt i (dsPat p)
     ELit loc (LStr cs) | length cs < 2 -> dsPat (EListish (LList (map (ELit loc . LChar) cs)))
-    ELit _ _ -> ap
+    ELit _ _ -> apat
+    ENegApp _ -> apat
+    EViewPat _ _ -> apat
     _ -> impossible
 
 iNil :: Ident
@@ -276,12 +261,6 @@
     c = tupleConstr loc n
   in ECon $ ConData [(c, n)] c
 
-lams :: [Ident] -> Exp -> Exp
-lams xs e = foldr Lam e xs
-
-apps :: Exp -> [Exp] -> Exp
-apps f = foldl App f
-
 newVars :: String -> [Ident] -> [Ident]
 newVars s is = deleteAllsBy (==) [ mkIdent (s ++ show i) | i <- [1::Int ..] ] is
 
@@ -304,12 +283,12 @@
   where
     mkArm (p, alts) =
       let p' = dsPat p
-      in  ([p'], dsAlts alts, hasGuards alts || hasLit p')
+      in  ([p'], dsAlts alts)
 
 type MState = [Ident]  -- supply of unused variables.
 
 type M a = State MState a
-type Arm = ([EPat], Exp -> Exp, Bool)  -- boolean indicates that the arm has guards
+type Arm = ([EPat], Exp -> Exp)  -- boolean indicates that the arm has guards, i.e., it uses the default
 type Matrix = [Arm]
 
 --showArm :: Arm -> String
@@ -337,9 +316,6 @@
         e:es -> letBind (return e) $ \ x -> ds (x:xs) es
   in evalState (ds [] ss) supply
 
-data SPat = SPat Con [Ident]    -- simple pattern
-  deriving(Show, Eq)
-
 -- Desugar a pattern matrix.
 -- The input is a (usually identifier) vector e1, ..., en
 -- and patterns matrix p11, ..., p1n   -> e1
@@ -348,45 +324,97 @@
 -- Note that the RHSs are of type Exp.
 dsMatrix :: HasCallStack =>
             Exp -> [Exp] -> Matrix -> M Exp
-dsMatrix dflt iis aarms =
- if null aarms then
-   return dflt
- else
- case iis of
- [] -> let { (_, f, _) : _ = aarms } in return $ f dflt
- i:is -> do
-  let
-    (arms, darms, rarms) = splitArms aarms
-    ndarms = map (\ (EVar x : ps, ed, g) -> (ps, substAlpha x i . ed, g) ) darms
---  traceM ("split " ++ show (arms, darms, rarms))
-  letBind (dsMatrix dflt iis rarms) $ \ drest ->
-    letBind (dsMatrix drest is ndarms) $ \ ndflt ->
-     if null arms then
-       return ndflt
-     else do
+--dsMatrix dflt is aarms | trace (show (dflt, is)) False = undefined
+dsMatrix dflt _ [] = return dflt
+dsMatrix dflt []         aarms =
+  -- We can have several arms of there are guards.
+  -- Combind them in order.
+  return $ foldr (\ (_, rhs) -> rhs) dflt aarms
+dsMatrix dflt iis@(i:is) aarms@(aarm : aarms') =
+  case leftMost aarm of
+    EVar _ -> do
+      -- Find all variables, substitute with i, and proceed
+      let (vars, nvars) = span (isPVar . leftMost) aarms
+          vars' = map (sub . unAt i) vars
+          sub (EVar x : ps, rhs) = (ps, substAlpha x i . rhs)
+          sub _ = impossible
+      letBind (dsMatrix dflt iis nvars) $ \ drest ->
+        dsMatrix drest is vars'
+    -- Collect identical transformations, do the transformation and proceed.
+    EViewPat e _ -> do
+      let (views, nviews) = span (isPView e . leftMost) aarms'
+      letBind (dsMatrix dflt iis nviews) $ \ drest ->
+        letBind (return $ App (dsExpr e) i) $ \ vi -> do
+        let views' = map (unview . unAt i) (aarm : views)
+            unview (EViewPat _ p:ps, rhs) = (p:ps, rhs)
+            unview _ = impossible
+        dsMatrix drest (vi:is) views'
+    -- Collect all constructors, group identical ones.
+    _ -> do             -- must be ECon/EApp
       let
-        idOf (p:_, _, _) = pConOf p
-        idOf _ = impossible
-        grps = groupEq (on (==) idOf) arms
-        oneGroup grp = do
-          let
-            (pat:_, _, _) : _ = grp
-            con = pConOf pat
-          xs <- newIdents (conArity con)
-          let
-            one arg =
-              case arg of
-                (p : ps, e, g) ->
-                  case p of
-                    EAt a pp -> one (pp:ps, substAlpha a i . e, g)
-                    _        -> (pArgs p ++ ps, e, g)
-                _ -> impossible
-          cexp <- dsMatrix ndflt (map Var xs ++ is) (map one grp)
-          return (SPat con xs, cexp)
---      traceM $ "grps " ++ show grps
-      narms <- mapM oneGroup grps
-      return $ mkCase i narms ndflt
+        (cons, ncons) = span (isPCon . leftMost) aarms
+      letBind (dsMatrix dflt iis ncons) $ \ drest -> do
+        let
+          idOf (p:_, _) = pConOf p
+          idOf _ = impossible
+          grps = groupEq (on (==) idOf) $ map (unAt i) cons
+          oneGroup grp = do
+            let
+              con = pConOf $ leftMost $ head grp
+            xs <- newIdents (conArity con)
+            let
+              one (p : ps, e) = (pArgs p ++ ps, e)
+              one _ = impossible
+            cexp <- dsMatrix drest (map Var xs ++ is) (map one grp)
+            return (SPat con xs, cexp)
+        narms <- mapM oneGroup grps
+        return $ mkCase i narms drest
+  where
+    leftMost (p:_, _) = skipEAt p  -- pattern in first column
+    leftMost _ = impossible
+    skipEAt (EAt _ p) = skipEAt p
+    skipEAt p = p
+    isPCon (EVar _) = False
+    isPCon (EViewPat _ _) = False
+    isPCon _ = True
+    isPVar (EVar _) = True
+    isPVar _ = False
+    isPView e (EViewPat e' _) = eqExpr e e'
+    isPView _ _ = False
+    unAt ii (EAt x p : ps, rhs) = unAt i (p:ps, substAlpha x ii . rhs)
+    unAt _ arm = arm
+  
+mkCase :: Exp -> [(SPat, Exp)] -> Exp -> Exp
+mkCase var pes dflt =
+  --trace ("mkCase " ++ show pes) $
+  case pes of
+    [] -> dflt
+    [(SPat (ConNew _) [x], arhs)] -> eLet x var arhs
+{-
+     (SPat (ConView e p) _, arhs) : rpes -> 
+      let
+        cond =
+          case l of
+            LInt  _ -> app2 eEqInt  var (Lit l)
+            LChar c -> app2 eEqChar var (Lit (LInt (ord c)))
+            LStr  _ -> app2 eEqStr  var (Lit l)
+            _ -> undefined
+      in app2 cond (mkCase var rpes dflt) arhs
+         dsCase (app (dsExpr e) var) [(p, arhs), (_, mkCase var rpes dflt)]
+-}
+    _ -> encCase var pes dflt
 
+{-
+eEqInt :: Exp
+eEqInt = Lit (LPrim "==")
+
+eEqChar :: Exp
+eEqChar = Lit (LPrim "==")
+
+eEqStr :: Exp
+eEqStr = Lit (LPrim "equal")
+-}
+
 eMatchErr :: SLoc -> Exp
 eMatchErr (SLoc fn l c) =
   App (App (App (Lit (LPrim "noMatch")) (Lit (LStr fn))) (Lit (LInt l))) (Lit (LInt c))
@@ -410,61 +438,36 @@
     Lit _ -> True
     _ -> False
 
-eEqInt :: Exp
-eEqInt = Lit (LPrim "==")
-
-eEqChar :: Exp
-eEqChar = Lit (LPrim "==")
-
-eEqStr :: Exp
-eEqStr = Lit (LPrim "equal")
-
-mkCase :: Exp -> [(SPat, Exp)] -> Exp -> Exp
-mkCase var pes dflt =
-  --trace ("mkCase " ++ show pes) $
-  case pes of
-    [] -> dflt
-    [(SPat (ConNew _) [x], arhs)] -> eLet x var arhs
-    (SPat (ConLit _ l) _,   arhs) : rpes -> 
-      let
-        cond =
-          case l of
-            LInt  _ -> app2 eEqInt  var (Lit l)
-            LChar c -> app2 eEqChar var (Lit (LInt (ord c)))
-            LStr  _ -> app2 eEqStr  var (Lit l)
-            _ -> impossible
-      in app2 cond (mkCase var rpes dflt) arhs
-    (SPat (ConData cs _) _, _) : _ ->
-      let
-        arm ck =
-          let
-            (c, k) = ck
-            (vs, rhs) = head $ [ (xs, e) | (SPat (ConData _ i) xs, e) <- pes, c == i ] ++
-                               [ (replicate k dummyIdent, dflt) ]
-          in (SPat (ConData cs c) vs, rhs)
-      in  eCase var (map arm cs)
-    _ -> impossible
-
-eCase :: Exp -> [(SPat, Exp)] -> Exp
-eCase e as =
---  trace ("eCase " ++ show e ++ "\n" ++
---         unlines [ unwords (map showIdent (conIdent c : xs)) ++ " -> " ++ show r | (SPat c xs, r) <- as ]) $
-  apps e [lams xs r | (SPat _ xs, r) <- as ]
+eLet :: Ident -> Exp -> Exp -> Exp
+eLet i e b =
+  if i == dummyIdent then
+    b
+  else
+    case b of
+      Var j | i == j -> e
+      _ ->
+        case filter (== i) (freeVars b) of
+          []  -> b                -- no occurences, no need to bind
+          -- The single use substitution is essential for performance.
+          [_] -> substExp i e b   -- single occurrence, substitute  XXX could be worse if under lambda
+          _   -> App (Lam i b) e  -- just use a beta redex
 
+{-
 -- Split the matrix into segments so each first column has initially patterns -- followed by variables, followed by the rest.
 splitArms :: Matrix -> (Matrix, Matrix, Matrix)
 splitArms am =
   let
-    isConPat (p:_, _, _) = not (isPVar p)
+    isConPat (p:_, _, _) = isPCon p
     isConPat _ = impossible
     (ps, nps) = span isConPat am
-    loop xs [] = (reverse xs, [])
-    loop xs pps@(pg@(p:_, _, g) : rps) | not (isPVar p) = (reverse xs, pps)
-                                       | otherwise = if g then (reverse (pg:xs), rps)
+    loop xs [] = (xs, [])
+    loop xs pps@(pg@(p:_, _, g) : rps) | not (isPVar p) = (xs, pps)
+                                       | otherwise = if g then (pg:xs, rps)
                                                           else loop (pg:xs) rps
     loop _ _ = impossible
     (ds, rs)  = loop [] nps
-  in (ps, ds, rs)
+  in (ps, reverse ds, rs)
+-}
 
 -- Change from x to y inside e.
 substAlpha :: Ident -> Exp -> Exp -> Exp
@@ -474,33 +477,18 @@
   else
     substExp x y e
 
-eLet :: Ident -> Exp -> Exp -> Exp
-eLet i e b =
-  if i == dummyIdent then
-    b
-  else
-    case b of
-      Var j | i == j -> e
-      _ ->
-        case filter (== i) (freeVars b) of
-          []  -> b                -- no occurences, no need to bind
-          [_] -> substExp i e b   -- single occurrence, substitute  XXX could be worse if under lambda
-          _   -> App (Lam i b) e  -- just use a beta redex
-
 pConOf :: HasCallStack =>
           EPat -> Con
-pConOf ap =
-  case ap of
+pConOf apat =
+  case apat of
     ECon c -> c
     EAt _ p -> pConOf p
     EApp p _ -> pConOf p
-    ELit loc l -> ConLit loc l
-    EVar _ -> undefined
-    _ -> impossibleShow ap
+    _ -> impossibleShow apat
 
 pArgs :: EPat -> [EPat]
-pArgs ap =
-  case ap of
+pArgs apat =
+  case apat of
     ECon _ -> []
     EApp f a -> pArgs f ++ [a]
     ELit _ _ -> []
diff --git a/src/MicroHs/EncodeData.hs b/src/MicroHs/EncodeData.hs
new file mode 100644
--- /dev/null
+++ b/src/MicroHs/EncodeData.hs
@@ -0,0 +1,160 @@
+{-# OPTIONS_GHC -Wno-incomplete-uni-patterns #-}
+module MicroHs.EncodeData(
+  SPat(..),
+  encConstr,
+  encCase,
+  encIf,
+  encList,
+  ) where
+import Prelude
+import MicroHs.Exp
+import MicroHs.Expr(Con(..), Lit(..))
+import MicroHs.Ident
+import Compat
+
+--
+-- Encoding of constructors and case
+--
+
+data SPat = SPat Con [Ident]    -- simple pattern
+  deriving(Show, Eq)
+
+encCase :: Exp -> [(SPat, Exp)] -> Exp -> Exp
+encCase var pes dflt | n <= scottLimit = encCaseScott var pes dflt
+                     | otherwise = encCaseNo var pes dflt
+  where n = numConstr pes
+
+encConstr :: Int -> Int -> [Bool] -> Exp
+encConstr i n ss | n /= n = undefined  -- XXX without this, everything slows down.  Why?
+                 | n <= scottLimit = encConstrScott i n ss
+                 | otherwise       = encConstrNo i n ss
+
+encIf :: Exp -> Exp -> Exp -> Exp
+encIf = encIfScott
+
+-- Lowest value that works is 3.
+-- The runtime system knows the encoding of some types:
+-- Bool, [], Ordering
+scottLimit :: Int
+scottLimit = 5
+
+-------------------------------------------
+
+-- Scott encoding
+--   C_i e1 ... en
+-- encodes as, assuming k constructors
+--   \ x1 ... xn -> \ f1 ... fi ... fk -> fi x1 ... xn
+
+-- Encode a case expression:
+--  case var of p1->e1; p2->e2; ...; _->dflt
+encCaseScott :: Exp -> [(SPat, Exp)] -> Exp -> Exp
+encCaseScott var pes dflt =
+  --trace ("mkCase " ++ show pes) $
+  case pes of
+    (SPat (ConData cs _) _, _) : _ ->
+      let
+        arm (c, k) =
+          let
+            (vs, rhs) = head $ [ (xs, e) | (SPat (ConData _ i) xs, e) <- pes, c == i ] ++
+                               [ (replicate k dummyIdent, dflt) ]
+          in lams vs rhs
+      in  apps var (map arm cs)
+    _ -> undefined
+
+-- Encode a constructor with strictness flags ss.
+-- The constructor arity is given by ss, and the constructor number is i out of n.
+encConstrScott :: Int -> Int -> [Bool] -> Exp
+encConstrScott i n ss =
+  let
+    f = mkIdent "$f"
+    fs = map (\ k -> if k == i then f else dummyIdent) [0::Int .. n-1]
+    xs = [mkIdent ("$x" ++ show j) | (j, _) <- zip [0::Int ..] ss]
+    strict (False:ys) (_:is) e = strict ys is e
+    strict (True:ys)  (x:is) e = App (App (Lit (LPrim "seq")) (Var x)) (strict ys is e)
+    strict _ _ e = e
+  in lams xs $ strict ss xs $ lams fs $ apps (Var f) (map Var xs)  
+
+encIfScott :: Exp -> Exp -> Exp -> Exp
+encIfScott c t e = app2 c e t
+
+encList :: [Exp] -> Exp
+encList = foldr (app2 cCons) cNil
+
+-- XXX could use encConstr
+cCons :: Exp
+cCons = Lit (LPrim "O")
+
+-- XXX could use encConstr
+cNil :: Exp
+cNil = Lit (LPrim "K")
+
+-------------------------------------------
+
+-- Explicit constructor number encoding
+--   C_i e1 e2 ... en
+-- encodes as
+--   (i, (e1, e2, ..., en))
+-- with the tuples being Scott encoded.
+
+-- Could be improved by a new node type holding
+-- both the constructor number and a pointer to the tuple.
+-- Also, could use a "jump table" case combinator instead
+-- of a decision tree.
+
+encConstrNo :: Int -> Int -> [Bool] -> Exp
+encConstrNo i _n ss =
+  let
+    xs = [mkIdent ("$x" ++ show j) | (j, _) <- zip [0::Int ..] ss]
+    strict (False:ys) (_:is) e = strict ys is e
+    strict (True:ys)  (x:is) e = App (App (Lit (LPrim "seq")) (Var x)) (strict ys is e)
+    strict _ _ e = e
+  in lams xs $ strict ss xs $ tuple [Lit (LInt i), tuple (map Var xs)]
+
+tuple :: [Exp] -> Exp
+tuple es = Lam f $ apps (Var f) es
+  where f = -- newIdent "$t" es --
+            mkIdent "$t"
+  
+encCaseNo :: Exp -> [(SPat, Exp)] -> Exp -> Exp
+encCaseNo var pes dflt =
+  App var (Lam n $ Lam t $ caseTree (Var n) (Var t) 0 (numConstr pes) pes' dflt)
+  where n = -- newIdent "$n" es --
+            mkIdent "$n"
+        t = -- newIdent "$tt" es --
+            mkIdent "$tt"
+        --es = var : dflt : map snd pes
+        pes' = sortLE (\ (x, _, _) (y, _, _) -> x <= y)
+                      [(conNo c, xs, e) | (SPat c xs, e) <- pes]
+
+caseTree :: Exp -> Exp -> Int -> Int -> [(Int, [Ident], Exp)] -> Exp -> Exp
+caseTree n tup lo hi pes dflt =
+  case pes of
+    [] -> dflt
+    [(i, xs, e)] | hi - lo == 1 -> match tup xs e
+                 | otherwise    -> encIf (eqInt n i) (match tup xs e) dflt
+    _ ->
+      let (pesl, pesh@((i, _, _):_)) = splitAt (length pes `quot` 2) pes
+      in  encIf (ltInt n i) (caseTree n tup lo i pesl dflt) (caseTree n tup i hi pesh dflt)
+ where
+   eqInt :: Exp -> Int -> Exp
+   eqInt x i = app2 (Lit (LPrim "==")) x (Lit (LInt i))
+   ltInt :: Exp -> Int -> Exp
+   ltInt x i = app2 (Lit (LPrim "<")) x (Lit (LInt i))
+   match :: Exp -> [Ident] -> Exp -> Exp
+   match e is rhs = App e $ lams is rhs
+
+conNo :: Con -> Int
+conNo (ConData cks i) = length $ takeWhile ((/= i) . fst) cks
+conNo _ = undefined
+
+{-
+newIdent :: String -> [Exp] -> Ident
+newIdent a es =
+  let is = concatMap allVarsExp es
+  in  head $ [ i | s <- "" : map show [1::Int ..], let { i = mkIdent (a ++ s) }, i `notElem` is ]
+-}
+
+numConstr :: [(SPat, Exp)] -> Int
+numConstr ((SPat (ConData cs _) _, _):_) = length cs
+numConstr _ = undefined
+
diff --git a/src/MicroHs/Exp.hs b/src/MicroHs/Exp.hs
--- a/src/MicroHs/Exp.hs
+++ b/src/MicroHs/Exp.hs
@@ -3,13 +3,12 @@
 -- Copyright 2023 Lennart Augustsson
 -- See LICENSE file for full license.
 module MicroHs.Exp(
-  Exp(..), toStringP,
+  Exp(..),
   PrimOp,
   substExp,
-  encodeString,
-  app2, app3, cCons, cNil, cFlip,
+  app2, app3, cFlip,
   allVarsExp, freeVars,
-  encodeList,
+  lams, apps,
   ) where
 import Prelude hiding((<>))
 import Data.Char
@@ -42,52 +41,12 @@
 app3 :: Exp -> Exp -> Exp -> Exp -> Exp
 app3 f a1 a2 a3 = App (app2 f a1 a2) a3
 
-cCons :: Exp
-cCons = Lit (LPrim "O")
-
-cNil :: Exp
-cNil = Lit (LPrim "K")
-
 cFlip :: Exp
 cFlip = Lit (LPrim "C")
 
 --cR :: Exp
 --cR = Lit (LPrim "R")
 
--- Avoid quadratic concatenation by using difference lists,
--- turning concatenation into function composition.
-toStringP :: Exp -> (String -> String)
-toStringP ae =
-  case ae of
-    Var x   -> (showIdent x ++)
-    Lit (LStr s) ->
-      -- Encode very short string directly as combinators.
-      if length s > 1 then
-        (quoteString s ++)
-      else
-        toStringP (encodeString s)
-    Lit (LInteger _) -> undefined
-    Lit (LRat _) -> undefined
-    Lit l   -> (showLit l ++)
-    Lam x e -> (("(\\" ++ showIdent x ++ " ") ++) . toStringP e . (")" ++)
-    App f a -> ("(" ++) . toStringP f . (" " ++) . toStringP a . (")" ++)
-
-quoteString :: String -> String
-quoteString s =
-  let
-    achar c =
-      if c == '"' || c == '\\' || c < ' ' || c > '~' then
-        '\\' : show (ord c) ++ ['&']
-      else
-        [c]
-  in '"' : concatMap achar s ++ ['"']
-
-encodeString :: String -> Exp
-encodeString = encodeList . map (Lit . LInt . ord)
-
-encodeList :: [Exp] -> Exp
-encodeList = foldr (app2 cCons) cNil
-
 instance Show Exp where
   show = render . ppExp
 
@@ -135,113 +94,9 @@
     Lam i e -> i : allVarsExp e
     Lit _ -> []
 
---------
--- Possible additions
---
--- Added:
---  R = C C
---  R x y z = (C C x y) z = C y x z = y z x
---
---  Q = C I
---  Q x y z = (C I x y) z = I y x z = y x z
---
--- Added:
---  Z = B K
---  Z x y z = B K x y z = K (x y) z = x y
---
---  ZK = Z K
---  ZK x y z = Z K x y z = (K x) z = x
---
---  C'B = C' B
---  C'B x y z w = C' B x y z w = B (x z) y w = x z (y w)
-
---  B (B e) x y z = B e (x y) z = e (x y z)
---
---  B' :: (a -> b -> c) -> a -> (d -> b) -> d -> c
---  B' k f g x = k f (g x)
---
--- Common:
---  817: C' B
---  616: B Z
---  531: C' C
---  352: Z K
---  305: C' S
---
---  BZ = B Z
---  BZ x y z w = B Z x y z w = Z (x y) z w = x y z
---
---  C'C = C' C
---  C'C x y z w = C' C x y z w = C (x z) y w = x z w y
-
-
----------------------------------------------------------------
-
-{-
--- Oleg's abstraction algorithm
-
-data Peano = S Peano | Z
-  deriving (Show)
-data DB = N Peano | L DB | A DB DB | Free Ident | K Lit
-  deriving (Show)
-
-index :: Ident -> [Ident] -> Maybe Peano
-index x xs = lookupBy eqIdent x $ zip xs $ iterate S Z
-
-deBruijn :: Exp -> DB
-deBruijn = go [] where
-  go binds e =
-    case e of
-      Var x -> maybe (Free x) N $ index x binds
-      App t u -> A (go binds t) (go binds u)
-      Lam x t -> L $ go (x:binds) t
-      Lit l -> K l
-
-type CL = Exp
-type BCL = ([Bool], CL)
-
-com :: String -> Exp
-com s = Lit (LPrim s)
-(@@) :: Exp -> Exp -> Exp
-(@@) f a = App f a
-
-convertBool :: (BCL -> BCL -> CL) -> DB -> BCL
-convertBool (#) ee =
-  case ee of
-    N Z -> (True:[], com "I")
-    N (S e) -> (False:g, d) where (g, d) = rec $ N e
-    L e -> case rec e of
-             ([], d) -> ([], com "K" @@ d)
-             (False:g, d) -> (g, ([], com "K") # (g, d))
-             (True:g, d) -> (g, d)
-    A e1 e2 -> (zipWithDefault False (||) g1 g2, t1 # t2) where
-      t1@(g1, _) = rec e1
-      t2@(g2, _) = rec e2
-    Free s -> ([], Var s)
-    K l -> ([], Lit l)
-  where rec = convertBool (#)
-
-optEta :: DB -> BCL
-optEta = convertBool (#) where
-  (#) ([], d1)           {- # -} ([],       d2)      = d1 @@ d2
-  (#) ([], d1)           {- # -} (True:[],  Lit (LPrim "I")) = d1
-  (#) ([], d1)           {- # -} (True:g2,  d2)      = ([], com "B" @@ d1) # (g2, d2)
-  (#) ([], d1)           {- # -} (False:g2, d2)      = ([], d1) # (g2, d2)
-  (#) (True:[], Lit (LPrim "I")) {- # -} ([],       d2)      = com "U" @@ d2
-  (#) (True:[], Lit (LPrim "I")) {- # -} (False:g2, d2)      = ([], com "U") # (g2, d2)
-  (#) (True:g1, d1)      {- # -} ([],       d2)      = ([], com "R" @@ d2) # (g1, d1)
-  (#) (True:g1, d1)      {- # -} (True:g2,  d2)      = (g1, ([], com "S") # (g1, d1)) # (g2, d2)
-  (#) (True:g1, d1)      {- # -} (False:g2, d2)      = (g1, ([], com "C") # (g1, d1)) # (g2, d2)
-  (#) (False:g1, d1)     {- # -} ([],       d2)      = (g1, d1) # ([], d2)
-  (#) (False:_g1, d1)    {- # -} (True:[],  Lit (LPrim "I")) = d1
-  (#) (False:g1, d1)     {- # -} (True:g2,  d2)      = (g1, ([], com "B") # (g1, d1)) # (g2, d2)
-  (#) (False:g1, d1)     {- # -} (False:g2, d2)      = (g1, d1) # (g2, d2)
-
-zipWithDefault :: forall a b . a -> (a -> a -> b) -> [a] -> [a] -> [b]
-zipWithDefault d f     []     ys = map (f d) ys
-zipWithDefault d f     xs     [] = map (flip f d) xs
-zipWithDefault d f (x:xt) (y:yt) = f x y : zipWithDefault d f xt yt
+lams :: [Ident] -> Exp -> Exp
+lams xs e = foldr Lam e xs
 
-compileOptX :: Exp -> Exp
-compileOptX = snd . optEta . deBruijn
--}
+apps :: Exp -> [Exp] -> Exp
+apps f = foldl App f
 
diff --git a/src/MicroHs/ExpPrint.hs b/src/MicroHs/ExpPrint.hs
new file mode 100644
--- /dev/null
+++ b/src/MicroHs/ExpPrint.hs
@@ -0,0 +1,39 @@
+module MicroHs.ExpPrint(toStringP, encodeString) where
+import Prelude
+import Data.Char(ord)
+import MicroHs.EncodeData(encList)
+import MicroHs.Exp
+import MicroHs.Expr(Lit(..), showLit)
+import MicroHs.Ident(showIdent)
+
+-- Avoid quadratic concatenation by using difference lists,
+-- turning concatenation into function composition.
+toStringP :: Exp -> (String -> String)
+toStringP ae =
+  case ae of
+    Var x   -> (showIdent x ++)
+    Lit (LStr s) ->
+      -- Encode very short string directly as combinators.
+      if length s > 1 then
+        (quoteString s ++)
+      else
+        toStringP (encodeString s)
+    Lit (LInteger _) -> undefined
+    Lit (LRat _) -> undefined
+    Lit l   -> (showLit l ++)
+    Lam x e -> (("(\\" ++ showIdent x ++ " ") ++) . toStringP e . (")" ++)
+    App f a -> ("(" ++) . toStringP f . (" " ++) . toStringP a . (")" ++)
+
+quoteString :: String -> String
+quoteString s =
+  let
+    achar c =
+      if c == '"' || c == '\\' || c < ' ' || c > '~' then
+        '\\' : show (ord c) ++ ['&']
+      else
+        [c]
+  in '"' : concatMap achar s ++ ['"']
+
+encodeString :: String -> Exp
+encodeString = encList . map (Lit . LInt . ord)
+
diff --git a/src/MicroHs/Expr.hs b/src/MicroHs/Expr.hs
--- a/src/MicroHs/Expr.hs
+++ b/src/MicroHs/Expr.hs
@@ -17,7 +17,7 @@
   FunDep,
   EType, showEType, eqEType,
   EConstraint,
-  EPat, patVars, isPVar, isPConApp,
+  EPat, patVars, isPConApp,
   EKind, kType, kConstraint,
   IdKind(..), idKindIdent,
   LHS,
@@ -27,7 +27,7 @@
   tupleConstr, getTupleConstr,
   mkTupleSel,
   subst,
-  allVarsExpr, allVarsBind, allVarsEqn,
+  allVarsExpr, allVarsBind,
   setSLocExpr,
   errorMessage,
   Assoc(..), Fixity,
@@ -64,7 +64,7 @@
   | ForImp String Ident EType
   | Infix Fixity [Ident]
   | Class [EConstraint] LHS [FunDep] [EBind]  -- XXX will probable need initial forall with FD
-  | Instance [IdKind] [EConstraint] EConstraint [EBind]  -- no deriving yet
+  | Instance EConstraint [EBind]  -- no deriving yet
   | Default [EType]
   deriving (Show)
 
@@ -89,10 +89,14 @@
   | EListish Listish
   | EDo (Maybe Ident) [EStmt]
   | ESectL Expr Ident
+  -- NOTE: (- e) is not a section, it's a negation.  So we reuse ESect to mean negation in this case.
   | ESectR Ident Expr
   | EIf Expr Expr Expr
   | ESign Expr EType
-  | EAt Ident Expr  -- only in patterns
+  | ENegApp Expr
+  -- only in patterns
+  | EAt Ident Expr
+  | EViewPat Expr EPat
   -- Only while type checking
   | EUVar Int
   -- Constructors after type checking
@@ -111,7 +115,6 @@
 data Con
   = ConData ConTyInfo Ident
   | ConNew Ident
-  | ConLit SLoc Lit
   deriving(Show)
 
 data Listish
@@ -127,17 +130,14 @@
             Con -> Ident
 conIdent (ConData _ i) = i
 conIdent (ConNew i) = i
-conIdent _ = error "conIdent"
 
 conArity :: Con -> Int
 conArity (ConData cs i) = fromMaybe (error "conArity") $ lookup i cs
 conArity (ConNew _) = 1
-conArity (ConLit _ _) = 0
 
 instance Eq Con where
   (==) (ConData _ i) (ConData _ j) = i == j
   (==) (ConNew    i) (ConNew    j) = i == j
-  (==) (ConLit _  l) (ConLit _  k) = l == k
   (==) _             _             = False
 
 data Lit
@@ -182,18 +182,30 @@
 
 type EPat = Expr
 
-isPVar :: EPat -> Bool
-isPVar (EVar i) = not (isConIdent i)
-isPVar _ = False    
-
 isPConApp :: EPat -> Bool
 isPConApp (EVar i) = isConIdent i
 isPConApp (EApp f _) = isPConApp f
+isPConApp (EAt _ p) = isPConApp p
 isPConApp _ = True
 
+-- Variables bound in a pattern.
+-- Could use difference lists, but it seems a little slower.
 patVars :: EPat -> [Ident]
-patVars = filter isVar . allVarsExpr
-  where isVar v = not (isConIdent v) && not (isDummyIdent v)
+patVars apat =
+  case apat of
+    EVar i -> add i []
+    EApp p1 p2 -> patVars p1 ++ patVars p2
+    EOper p1 ips -> patVars p1 ++ concatMap (\ (i, p2) -> i `add` patVars p2) ips
+    ELit _ _ -> []
+    ETuple ps -> concatMap patVars ps
+    EListish (LList ps) -> concatMap patVars ps
+    ESign p _ -> patVars p
+    EAt i p -> i `add` patVars p
+    EViewPat _ p -> patVars p
+    ECon _ -> []
+    _ -> error $ "patVars " ++ showExpr apat
+  where add i is | isConIdent i || isDummyIdent i = is
+                 | otherwise = i : is
 
 type LHS = (Ident, [IdKind])
 
@@ -271,7 +283,9 @@
   getSLoc (ESectR i _) = getSLoc i
   getSLoc (EIf e _ _) = getSLoc e
   getSLoc (ESign e _) = getSLoc e
+  getSLoc (ENegApp e) = getSLoc e
   getSLoc (EAt i _) = getSLoc i
+  getSLoc (EViewPat e _) = getSLoc e
   getSLoc (EUVar _) = error "getSLoc EUVar"
   getSLoc (ECon c) = getSLoc c
   getSLoc (EForall [] e) = getSLoc e
@@ -287,7 +301,6 @@
 instance HasLoc Con where
   getSLoc (ConData _ i) = getSLoc i
   getSLoc (ConNew i) = getSLoc i
-  getSLoc (ConLit l _) = l
 
 instance HasLoc Listish where
   getSLoc (LList es) = getSLoc es
@@ -370,67 +383,81 @@
 
 ---------------------------------
 
+type DList a = [a] -> [a]
+
+composeMap :: forall a b . (a -> DList b) -> [a] -> DList b
+composeMap _ [] = id
+composeMap f (x:xs) = f x . composeMap f xs
+
 allVarsBind :: EBind -> [Ident]
-allVarsBind abind =
+allVarsBind b = allVarsBind' b []
+
+allVarsBind' :: EBind -> DList Ident
+allVarsBind' abind =
   case abind of
-    BFcn i eqns -> i : concatMap allVarsEqn eqns
-    BPat p e -> allVarsPat p ++ allVarsExpr e
-    BSign i _ -> [i]
+    BFcn i eqns -> (i:) . composeMap allVarsEqn eqns
+    BPat p e -> allVarsPat p . allVarsExpr' e
+    BSign i _ -> (i:)
 
-allVarsEqn :: Eqn -> [Ident]
+allVarsEqn :: Eqn -> DList Ident
 allVarsEqn eqn =
   case eqn of
-    Eqn ps alts -> concatMap allVarsPat ps ++ allVarsAlts alts
+    Eqn ps alts -> composeMap allVarsPat ps . allVarsAlts alts
 
-allVarsAlts :: EAlts -> [Ident]
-allVarsAlts (EAlts alts bs) = concatMap allVarsAlt alts ++ concatMap allVarsBind bs
+allVarsAlts :: EAlts -> DList Ident
+allVarsAlts (EAlts alts bs) = composeMap allVarsAlt alts . composeMap allVarsBind' bs
 
-allVarsAlt :: EAlt -> [Ident]
-allVarsAlt (ss, e) = concatMap allVarsStmt ss ++ allVarsExpr e
+allVarsAlt :: EAlt -> DList Ident
+allVarsAlt (ss, e) = composeMap allVarsStmt ss . allVarsExpr' e
 
-allVarsPat :: EPat -> [Ident]
-allVarsPat = allVarsExpr
+allVarsPat :: EPat -> DList Ident
+allVarsPat = allVarsExpr'
 
 allVarsExpr :: Expr -> [Ident]
-allVarsExpr aexpr =
+allVarsExpr e = allVarsExpr' e []
+
+allVarsExpr' :: Expr -> DList Ident
+allVarsExpr' aexpr =
   case aexpr of
-    EVar i -> [i]
-    EApp e1 e2 -> allVarsExpr e1 ++ allVarsExpr e2
-    EOper e1 ies -> allVarsExpr e1 ++ concatMap (\ (i,e2) -> i : allVarsExpr e2) ies
-    ELam qs -> concatMap allVarsEqn qs
-    ELit _ _ -> []
-    ECase e as -> allVarsExpr e ++ concatMap allVarsCaseArm as
-    ELet bs e -> concatMap allVarsBind bs ++ allVarsExpr e
-    ETuple es -> concatMap allVarsExpr es
-    EListish (LList es) -> concatMap allVarsExpr es
-    EDo mi ss -> maybe [] (:[]) mi ++ concatMap allVarsStmt ss
-    ESectL e i -> i : allVarsExpr e
-    ESectR i e -> i : allVarsExpr e
-    EIf e1 e2 e3 -> allVarsExpr e1 ++ allVarsExpr e2 ++ allVarsExpr e3
+    EVar i -> (i:)
+    EApp e1 e2 -> allVarsExpr' e1 . allVarsExpr' e2
+    EOper e1 ies -> allVarsExpr' e1 . composeMap (\ (i,e2) -> (i :) . allVarsExpr' e2) ies
+    ELam qs -> composeMap allVarsEqn qs
+    ELit _ _ -> id
+    ECase e as -> allVarsExpr' e . composeMap allVarsCaseArm as
+    ELet bs e -> composeMap allVarsBind' bs . allVarsExpr' e
+    ETuple es -> composeMap allVarsExpr' es
+    EListish (LList es) -> composeMap allVarsExpr' es
+    EDo mi ss -> maybe id (:) mi . composeMap allVarsStmt ss
+    ESectL e i -> (i :) . allVarsExpr' e
+    ESectR i e -> (i :) . allVarsExpr' e
+    EIf e1 e2 e3 -> allVarsExpr' e1 . allVarsExpr' e2 . allVarsExpr' e3
     EListish l -> allVarsListish l
-    ESign e _ -> allVarsExpr e
-    EAt i e -> i : allVarsExpr e
-    EUVar _ -> []
-    ECon c -> [conIdent c]
-    EForall iks e -> map (\ (IdKind i _) -> i) iks ++ allVarsExpr e
+    ESign e _ -> allVarsExpr' e
+    ENegApp e -> allVarsExpr' e
+    EAt i e -> (i :) . allVarsExpr' e
+    EViewPat e p -> allVarsExpr' e . allVarsExpr' p
+    EUVar _ -> id
+    ECon c -> (conIdent c :)
+    EForall iks e -> (map (\ (IdKind i _) -> i) iks ++) . allVarsExpr' e
 
-allVarsListish :: Listish -> [Ident]
-allVarsListish (LList es) = concatMap allVarsExpr es
-allVarsListish (LCompr e ss) = allVarsExpr e ++ concatMap allVarsStmt ss
-allVarsListish (LFrom e) = allVarsExpr e
-allVarsListish (LFromTo e1 e2) = allVarsExpr e1 ++ allVarsExpr e2
-allVarsListish (LFromThen e1 e2) = allVarsExpr e1 ++ allVarsExpr e2
-allVarsListish (LFromThenTo e1 e2 e3) = allVarsExpr e1 ++ allVarsExpr e2 ++ allVarsExpr e3
+allVarsListish :: Listish -> DList Ident
+allVarsListish (LList es) = composeMap allVarsExpr' es
+allVarsListish (LCompr e ss) = allVarsExpr' e . composeMap allVarsStmt ss
+allVarsListish (LFrom e) = allVarsExpr' e
+allVarsListish (LFromTo e1 e2) = allVarsExpr' e1 . allVarsExpr' e2
+allVarsListish (LFromThen e1 e2) = allVarsExpr' e1 . allVarsExpr' e2
+allVarsListish (LFromThenTo e1 e2 e3) = allVarsExpr' e1 . allVarsExpr' e2 . allVarsExpr' e3
 
-allVarsCaseArm :: ECaseArm -> [Ident]
-allVarsCaseArm (p, alts) = allVarsPat p ++ allVarsAlts alts
+allVarsCaseArm :: ECaseArm -> DList Ident
+allVarsCaseArm (p, alts) = allVarsPat p . allVarsAlts alts
 
-allVarsStmt :: EStmt -> [Ident]
+allVarsStmt :: EStmt -> DList Ident
 allVarsStmt astmt =
   case astmt of
-    SBind p e -> allVarsPat p ++ allVarsExpr e
-    SThen e -> allVarsExpr e
-    SLet bs -> concatMap allVarsBind bs
+    SBind p e -> allVarsPat p . allVarsExpr' e
+    SThen e -> allVarsExpr' e
+    SLet bs -> composeMap allVarsBind' bs
 
 -----------------------------
 
@@ -443,7 +470,6 @@
 setSLocCon :: SLoc -> Con -> Con
 setSLocCon l (ConData ti i) = ConData ti (setSLocIdent l i)
 setSLocCon l (ConNew i) = ConNew (setSLocIdent l i)
-setSLocCon _ c = c
 
 errorMessage :: forall a .
                 HasCallStack =>
@@ -500,7 +526,7 @@
     Infix (a, p) is -> text ("infix" ++ f a) <+> text (show p) <+> hsep (punctuate (text ", ") (map ppIdent is))
       where f AssocLeft = "l"; f AssocRight = "r"; f AssocNone = ""
     Class sup lhs fds bs -> ppWhere (text "class" <+> ppCtx sup <+> ppLHS lhs <+> ppFunDeps fds) bs
-    Instance vs ct ty bs -> ppWhere (text "instance" <+> ppForall vs <+> ppCtx ct <+> ppEType ty) bs
+    Instance ct bs -> ppWhere (text "instance" <+> ppEType ct) bs
     Default ts -> text "default" <+> parens (hsep (punctuate (text ", ") (map ppEType ts)))
 
 ppCtx :: [EConstraint] -> Doc
@@ -573,7 +599,9 @@
     EIf e1 e2 e3 -> parens $ sep [text "if" <+> ppExpr e1, text "then" <+> ppExpr e2, text "else" <+> ppExpr e3]
     EListish l -> ppListish l
     ESign e t -> ppExpr e <+> text "::" <+> ppEType t
+    ENegApp e -> text "-" <+> ppExpr e
     EAt i e -> ppIdent i <> text "@" <> ppExpr e
+    EViewPat e p -> parens $ ppExpr e <+> text "->" <+> ppExpr p
     EUVar i -> text ("a" ++ show i)
     ECon c -> ppCon c
     EForall iks e -> ppForall iks <+> ppEType e
@@ -598,7 +626,6 @@
 ppCon :: Con -> Doc
 ppCon (ConData _ s) = ppIdent s
 ppCon (ConNew s) = ppIdent s
-ppCon (ConLit _ l) = text (showLit l)
 
 -- Literals are tagged the way they appear in the combinator file:
 --  #   Int
diff --git a/src/MicroHs/Fixity.hs b/src/MicroHs/Fixity.hs
new file mode 100644
--- /dev/null
+++ b/src/MicroHs/Fixity.hs
@@ -0,0 +1,81 @@
+module MicroHs.Fixity(resolveFixity) where
+import Prelude
+import MicroHs.Expr
+import MicroHs.Ident
+
+-- Operators resolution
+--  Input:  A sequence of binary infix operators, prefix operators, and operands
+--   b - infix op
+--   p - prefix op
+--   o - any op
+--   e - operand
+--  Three inputs: stack of operand, stack of operators, input sequence
+--    [e          ] [       ] [           ]
+--         ->  done
+--    [e2, e1, ...] [by, ...] [bx, ...]
+--         ->  ambig,                                     if prec bx == prec by && (assoc bx /= assoc by || assoc bx == None)
+--         ->  [e1 `by` e2, ...] [        ...] [bx, ...], if prec bx < prec by || prec bx == prec by && assoc bx == Left
+--         ->  [e2, e1,     ...] [bx, by, ...] [    ...], otherwise
+--    [...]         []        [bx, e, ...]
+--         ->  [e, ...         ] [bx         ] [        ...]
+--    [...]         [...]     [e, ...]
+--         ->  [e, ...         ] [        ...] [        ...]
+--
+--
+--    [e2, e1, ...] [py, ...] [bx, ...]
+--         ->  error,                                    if prec bx == prec py && assoc bx /= assoc py
+--         ->  [py e2, e1, ...] [...        ] [bx, ...], if prec bx < prec py || prec bx == prec py
+--         ->  [   e2, e1, ...] [bx, py, ...] [    ...], otherwise
+--
+--    [e2, e1, ...] [by, ...] [px,  ...]
+--         ->  error                                     if prec px <= prec by
+--         ->  [   e2, e1, ...] [px, by, ...] [    ...], otherwise
+--    [e2, e1, ...] [py, ...] [px,  ...]
+--         ->  [   e2, e1, ...] [px, py, ...] [    ...], otherwise
+
+data Fix = FixIn | FixPre
+  deriving (Show)
+
+data FixInput = Rator Fix Expr Fixity | Rand Expr
+  deriving (Show)
+
+eNeg :: SLoc -> Expr
+eNeg loc = EVar (mkIdentSLoc loc "negate")
+
+negFixity :: Fixity
+negFixity = (AssocLeft, 6)
+
+resolveFixity :: Expr -> [((Expr, Fixity), Expr)] -> Either (SLoc, String) Expr
+resolveFixity ae oes =
+  let inps = expr ae ++ concatMap opexpr oes
+      expr (ENegApp e) = Rator FixPre (eNeg (getSLoc e)) negFixity : expr e
+      expr e = [Rand e]
+      opexpr ((f, fx), e) = Rator FixIn f fx : expr e
+
+      oper (Rator FixPre f _) (e:es) = EApp f e : es
+      oper (Rator FixIn  f _) (e2:e1:es) = EApp (EApp f e1) e2 : es
+      oper _ _ = undefined
+
+      prec (Rator _ _ (_, p)) = p
+      prec _ = undefined
+      assoc (Rator _ _ (a, _)) = a
+      assoc _ = undefined
+
+      resolve [e] []             [] = Right e
+      resolve _   []             [] = undefined
+      resolve es  []             (ox@(Rator _    _    _) : is) = resolve          es  [ox] is
+      resolve es     (oy:os)     []                            = resolve (oper oy es)  os  []
+      resolve es aos             (    Rand e             : is) = resolve       (e:es) aos  is
+      resolve es aos@(oy:os) ais@(ox@(Rator FixIn func _) : is)
+        | prec ox == prec oy && (assoc ox /= assoc oy || assoc ox == AssocNone) =
+          Left (getSLoc func, "ambiguous operator expression")
+        | prec ox <  prec oy || prec ox == prec oy && assoc oy == AssocLeft =
+          resolve (oper oy es) os ais
+        | otherwise =
+          resolve es (ox:aos) is
+      resolve es aos@(oy:_)      (ox@(Rator FixPre func _) : is)
+        | prec ox <= prec oy =
+          Left (getSLoc func, "bad prefix expression")
+        | otherwise =
+          resolve es (ox:aos) is
+  in  resolve [] [] inps
diff --git a/src/MicroHs/Interactive.hs b/src/MicroHs/Interactive.hs
--- a/src/MicroHs/Interactive.hs
+++ b/src/MicroHs/Interactive.hs
@@ -18,8 +18,8 @@
 
 mainInteractive :: Flags -> IO ()
 mainInteractive (Flags a b c d _ f) = do
-  when (not usingMhs) $
-    error "Interactive mhs not available when compiled with ghc"
+--  when (not usingMhs) $
+--    error "Interactive mhs not available when compiled with ghc"
   putStrLn "Welcome to interactive MicroHs!"
   let flags' = Flags a b c d True f
   cash <- getCached flags'
diff --git a/src/MicroHs/Lex.hs b/src/MicroHs/Lex.hs
--- a/src/MicroHs/Lex.hs
+++ b/src/MicroHs/Lex.hs
@@ -88,8 +88,7 @@
     (ds, rs) -> tIdent loc [] (d:ds) (lex (addCol loc $ 1 + length ds) rs)
 lex loc cs@(d:_) | isUpper d = upperIdent loc loc [] cs
 lex loc ('0':x:cs) | toLower x == 'x' = hexNumber loc cs
-lex loc ('-':cs@(d:_)) | isDigit d = number loc "-" cs
-lex loc      cs@(d:_)  | isDigit d = number loc ""  cs
+lex loc cs@(d:_) | isDigit d = number loc cs
 lex loc (d:cs) | isOperChar d  =
   case span isOperChar cs of
     (ds, rs) -> TIdent loc [] (d:ds) : lex (addCol loc $ 1 + length ds) rs
@@ -110,17 +109,16 @@
   case span isHexDigit cs of
     (ds, rs) -> TInt loc (readHex ds) : lex (addCol loc $ length ds + 2) rs
 
-number :: Loc -> String -> String -> [Token]   -- neg="-" means negative, neg=0 means positive
-number loc sign cs =
+number :: Loc -> String -> [Token]
+number loc cs =
   case span isDigit cs of
     (ds, rs) | null rs || not (head rs == '.') || (take 2 rs) == ".." ->
-               let s = sign ++ ds
-                   i = readInteger s
-               in  TInt loc i : lex (addCol loc $ length s) rs
+               let i = readInteger ds
+               in  TInt loc i : lex (addCol loc $ length ds) rs
              | otherwise ->
                case span isDigit (tail rs) of
                  (ns, rs') ->
-                   let s = sign ++ ds ++ '.':ns
+                   let s = ds ++ '.':ns
                        mkD x r = TRat loc (readRational x) : lex (addCol loc $ length x) r
                    in  case expo rs' of
                          Nothing -> mkD s rs'
diff --git a/src/MicroHs/Main.hs b/src/MicroHs/Main.hs
--- a/src/MicroHs/Main.hs
+++ b/src/MicroHs/Main.hs
@@ -10,6 +10,7 @@
 import System.Environment
 import MicroHs.Compile
 import MicroHs.Exp
+import MicroHs.ExpPrint
 import MicroHs.Ident
 import qualified MicroHs.IdentMap as M
 import MicroHs.Translate
@@ -24,10 +25,10 @@
 -- Version number of combinator file.
 -- Must match version in eval.c.
 combVersion :: String
-combVersion = "v5.1\n"
+combVersion = "v6.0\n"
 
 mhsVersion :: String
-mhsVersion = "0.8.4.0"
+mhsVersion = "0.9.1.0"
 
 main :: IO ()
 main = do
@@ -42,14 +43,14 @@
                   ("." : (dir ++ "/lib") : catMaybes (map (stripPrefix "-i") args))
                   (head $ catMaybes (map (stripPrefix "-o") args) ++ ["out.comb"])
                   (elem "-l" args)
-                  (elem "-c" args && usingMhs)
+                  (elem "-C" args && usingMhs)
   if "--version" `elem` args then
     putStrLn $ "MicroHs, version " ++ mhsVersion ++ ", combinator file version " ++ combVersion
    else
     case ss of
       []  -> mainInteractive flags
       [s] -> mainCompile dir flags (mkIdentSLoc (SLoc "command-line" 0 0) s)
-      _   -> error "Usage: mhs [-v] [-l] [-r] [-c] [-iPATH] [-oFILE] [ModuleName]"
+      _   -> error "Usage: mhs [-v] [-l] [-r] [-C] [-iPATH] [-oFILE] [ModuleName]"
 
 mainCompile :: FilePath -> Flags -> Ident -> IO ()
 mainCompile mhsdir flags mn = do
diff --git a/src/MicroHs/Parse.hs b/src/MicroHs/Parse.hs
--- a/src/MicroHs/Parse.hs
+++ b/src/MicroHs/Parse.hs
@@ -10,6 +10,7 @@
 import MicroHs.Expr
 import MicroHs.Ident
 import Compat
+--import Debug.Trace
 
 type P a = Prsr FilePath Token a
 
@@ -138,6 +139,9 @@
 pOper :: P Ident
 pOper = pQSymOper <|< (pSpec '`' *> pQIdent <* pSpec '`')
 
+pUOper :: P Ident
+pUOper = pUQSymOper <|< (pSpec '`' *> pUQIdent <* pSpec '`')
+
 pQSymOper :: P Ident
 pQSymOper = do
   fn <- getFileName
@@ -220,6 +224,12 @@
     is _ = Nothing
   satisfyM "literal" is
 
+pNumLit :: P Expr
+pNumLit = do
+  e <- pLit
+  guard $ case e of { ELit _ (LInteger _) -> True; ELit _ (LRat _) -> True; _ -> False }
+  return e
+
 pString :: P String
 pString = satisfyM "string" is
   where
@@ -261,11 +271,11 @@
   <|< ForImp      <$> (pKeyword "foreign" *> pKeyword "import" *> pKeyword "ccall" *> pString) <*> pLIdent <*> (pSymbol "::" *> pType)
   <|< Infix       <$> ((,) <$> pAssoc <*> pPrec) <*> esepBy1 pTypeOper (pSpec ',')
   <|< Class       <$> (pKeyword "class"    *> pContext) <*> pLHS <*> pFunDeps     <*> pWhere pClsBind
-  <|< Instance    <$> (pKeyword "instance" *> pForall)  <*> pContext <*> pTypeApp <*> pWhere pClsBind
+  <|< Instance    <$> (pKeyword "instance" *> pType) <*> pWhere pClsBind
   <|< Default     <$> (pKeyword "default"  *> pParens (esepBy pType (pSpec ',')))
   where
     pAssoc = (AssocLeft <$ pKeyword "infixl") <|< (AssocRight <$ pKeyword "infixr") <|< (AssocNone <$ pKeyword "infix")
-    dig (TInt _ ii) | -2 <= i && i <= 9 = Just i  where i = _integerToInt ii
+    dig (TInt _ ii) | 0 <= i && i <= 9 = Just i  where i = _integerToInt ii
     dig _ = Nothing
     pPrec = satisfyM "digit" dig
 
@@ -386,15 +396,16 @@
   <|< pLit
   <|< (eTuple <$> (pSpec '(' *> esepBy1 pPat (pSpec ',') <* pSpec ')'))
   <|< (EListish . LList <$> (pSpec '[' *> esepBy1 pPat (pSpec ',') <* pSpec ']'))
+  <|< (EViewPat <$> (pSpec '(' *> pAExpr) <*> (pSymbol "->" *> pAPat <* pSpec ')'))
 
 pPat :: P EPat
 pPat = pPatOp
 
 pPatOp :: P EPat
-pPatOp = pOperators pOper pPatArg
+pPatOp = pOperators pUOper pPatArg
 
 pPatArg :: P EPat
-pPatArg = pPatApp
+pPatArg = (pSymbol "-" *> (ENegApp <$> pNumLit)) <|< pPatApp
 
 pPatApp :: P EPat
 pPatApp = do
@@ -406,7 +417,7 @@
 pPatNotVar :: P EPat
 pPatNotVar = do
   p <- pPat
-  guard (not (isPVar p))
+  guard (isPConApp p)
   pure p
 
 -------------
@@ -517,6 +528,13 @@
   where
     pComma = mkIdentLoc <$> getFileName <*> getLoc <*> ("," <$ pSpec ',')
 
+-- No right section for '-'.
+pOperCommaNoMinus :: P Ident
+pOperCommaNoMinus = do
+  i <- pOperComma
+  guard (i /= mkIdent "-")
+  pure i
+
 pAExpr :: P Expr
 pAExpr = (
       (EVar   <$> pLQIdentSym)
@@ -525,7 +543,7 @@
   <|< (eTuple <$> (pSpec '(' *> esepBy1 pExpr (pSpec ',') <* pSpec ')'))
   <|< EListish <$> (pSpec '[' *> pListish <* pSpec ']')
   <|< (ESectL <$> (pSpec '(' *> pExprArg) <*> (pOperComma <* pSpec ')'))
-  <|< (ESectR <$> (pSpec '(' *> pOperComma) <*> (pExprArg <* pSpec ')'))
+  <|< (ESectR <$> (pSpec '(' *> pOperCommaNoMinus) <*> (pExprArg <* pSpec ')'))
   <|< (ELit noSLoc . LPrim <$> (pKeyword "primitive" *> pString))
   )
   -- This weirdly slows down parsing
@@ -548,12 +566,17 @@
    <|< pure (LList [e1])
 
 pExprOp :: P Expr
-pExprOp = pOperators pOper pExprArg
+pExprOp = pOperators pOper pExprArgNeg
 
+pExprArgNeg :: P Expr
+pExprArgNeg = (pSymbol "-" *> (ENegApp <$> pExprArg)) <|< pExprArg
+
 pOperators :: P Ident -> P Expr -> P Expr
 pOperators oper one = eOper <$> one <*> emany ((,) <$> oper <*> one)
-  where eOper e [] = e
+  where eOper e [] | notNeg e = e
         eOper e ies = EOper e ies
+        notNeg (ENegApp _) = False
+        notNeg _ = True
 
 -------------
 -- Bindings
diff --git a/src/MicroHs/Translate.hs b/src/MicroHs/Translate.hs
--- a/src/MicroHs/Translate.hs
+++ b/src/MicroHs/Translate.hs
@@ -9,12 +9,12 @@
 import System.Environment
 import Unsafe.Coerce
 import GHC.Types
-import Compat
 import PrimTable
 
 import MicroHs.Desugar(LDef, encodeInteger)
 import MicroHs.Expr
 import MicroHs.Exp
+import MicroHs.ExpPrint(encodeString)
 import MicroHs.Ident
 
 translateAndRun :: (Ident, [LDef]) -> IO ()
@@ -23,7 +23,8 @@
   -- Drop all argument up to '--'
   args <- getArgs
   let prog = unsafeCoerce $ translate defs
-  withDropArgs (length (takeWhile (/= "--") args) + 1)
+      nargs = drop 1 $ dropWhile (/= "--") args
+  withArgs nargs $
     prog
 
 translate :: (Ident, [LDef]) -> Any
@@ -66,6 +67,9 @@
   ("B'", primitive "B'"),
   ("Z", primitive "Z"),
   ("R", primitive "R"),
+  ("K2", primitive "K2"),
+  ("K3", primitive "K3"),
+  ("K4", primitive "K4"),
   ("+", primitive "+"),
   ("-", primitive "-"),
   ("*", primitive "*"),
@@ -92,24 +96,28 @@
   ("u<=", primitive "u<="),
   ("u>", primitive "u>"),
   ("u>=", primitive "u>="),
-  ("fadd", primitive "fadd"),
-  ("fsub", primitive "fsub"),
-  ("fmul", primitive "fmul"),
-  ("fdiv", primitive "fdiv"),
-  ("feq", primitive "feq"),
-  ("fne", primitive "fne"),
-  ("flt", primitive "flt"),
-  ("fle", primitive "fle"),
-  ("fgt", primitive "fgt"),
-  ("fge", primitive "fge"),
+  ("ord", primitive "ord"),
+  ("chr", primitive "chr"),
+  ("f+", primitive "f+"),
+  ("f-", primitive "f-"),
+  ("f*", primitive "f*"),
+  ("f/", primitive "f/"),
+  ("f==", primitive "f=="),
+  ("f/=", primitive "f/="),
+  ("f<", primitive "f<"),
+  ("f<=", primitive "f<="),
+  ("f>", primitive "f>"),
+  ("f>=", primitive "f>="),
   ("fneg", primitive "fneg"),
   ("fshow", primitive "fshow"),
   ("fread", primitive "fread"),
   ("itof", primitive "itof"),
   ("seq", primitive "seq"),
   ("error", primitive "error"),
+  ("sequal", primitive "sequal"),
   ("equal", primitive "equal"),
-  ("compare", primitive "compare"),
+  ("scmp", primitive "scmp"),
+  ("icmp", primitive "icmp"),
   ("rnf", primitive "rnf"),
   ("noMatch", primitive "noMatch"),
   ("noDefault", primitive "noDefault"),
@@ -123,7 +131,6 @@
   ("IO.stdout", primitive "IO.stdout"),
   ("IO.stderr", primitive "IO.stderr"),
   ("IO.getArgs", primitive "IO.getArgs"),
-  ("IO.dropArgs", primitive "IO.dropArgs"),
   ("IO.performIO", primitive "IO.performIO"),
   ("IO.catch", primitive "IO.catch"),
   ("dynsym", primitive "dynsym"),
@@ -132,5 +139,15 @@
   ("peekCAStringLen", primitive "peekCAStringLen"),
   ("toInt", primitive "toInt"),
   ("toPtr", primitive "toPtr"),
-  ("toDbl", primitive "toDbl")
+  ("toDbl", primitive "toDbl"),
+  ("p==", primitive "p=="),
+  ("pnull", primitive "pnull"),
+  ("pcast", primitive "pcast"),
+  ("p+", primitive "p+"),
+  ("p-", primitive "p-"),
+  ("A.alloc", primitive "A.alloc"),
+  ("A.size", primitive "A.size"),
+  ("A.read", primitive "A.read"),
+  ("A.write", primitive "A.write"),
+  ("A.==", primitive "A.==")
   ]
diff --git a/src/MicroHs/TypeCheck.hs b/src/MicroHs/TypeCheck.hs
--- a/src/MicroHs/TypeCheck.hs
+++ b/src/MicroHs/TypeCheck.hs
@@ -24,6 +24,7 @@
 import qualified MicroHs.IdentMap as M
 import MicroHs.Ident
 import MicroHs.Expr
+import MicroHs.Fixity
 import Compat
 import GHC.Stack
 import Debug.Trace
@@ -61,6 +62,24 @@
 nameSymbol :: String
 nameSymbol = "Primitives.Symbol"
 
+nameNat :: String
+nameNat = "Primitives.Nat"
+
+nameType :: String
+nameType = "Primitives.Type"
+
+nameConstraint :: String
+nameConstraint = "Primitives.Constraint"
+
+nameKnownNat :: String
+nameKnownNat = "Data.TypeLits.KnownNat"
+
+nameKnownSymbol :: String
+nameKnownSymbol = "Data.TypeLits.KnownSymbol"
+
+--primitiveKinds :: [String]
+--primitiveKinds = [nameType, nameConstraint, nameSymbol, nameNat]
+
 ----------------------
 
 data TModule a = TModule
@@ -250,11 +269,11 @@
 getAppCon (EApp f _) = getAppCon f
 getAppCon _ = error "getAppCon"
 
-getApp :: EType -> (Ident, [EType])
+getApp :: HasCallStack => EType -> (Ident, [EType])
 getApp = loop []
   where loop as (EVar i) = (i, as)
         loop as (EApp f a) = loop (a:as) f
-        loop _ _ = error "getApp"
+        loop _ t = impossibleShow t
 
 -- Construct a dummy TModule for the currently compiled module.
 -- It has all the relevant export tables.
@@ -547,8 +566,7 @@
 
     mkInstInfo :: InstDictC -> T (Ident, InstInfo)
     mkInstInfo (e, iks, ctx, ct, fds) = do
-      ct' <- expandSyn ct
-      case (iks, ctx, getApp ct') of
+      case (iks, ctx, getApp ct) of
         ([], [], (c, [EVar i])) -> return $ (c, InstInfo (M.singleton i e) [] fds)
         (_,  _,  (c, ts      )) -> return $ (c, InstInfo M.empty [(e, ctx', ts')] fds)
           where ctx' = map (subst s) ctx
@@ -595,7 +613,8 @@
 
 addInstDict :: HasCallStack => Ident -> EConstraint -> T ()
 addInstDict i c = do
-  ics <- expandDict (EVar i) c
+  c' <- expandSyn c
+  ics <- expandDict (EVar i) c'
   addInstTable ics
 
 addEqDict :: Ident -> EType -> EType -> T ()
@@ -615,8 +634,13 @@
   let
     xts = foldr (uncurry stInsertGlb) ts primTypes
     xvs = foldr (uncurry stInsertGlb) vs primValues
-  in TC mn 1 fs xts ss xvs as IM.empty TCExpr cs (is,[],[]) [] []
+  in TC mn 1 (addPrimFixs fs) xts ss xvs as IM.empty TCExpr cs (is,[],[]) [] []
 
+addPrimFixs :: FixTable -> FixTable
+addPrimFixs =
+  M.insert (mkIdent "Primitives.->") (AssocRight, -1) .
+  M.insert (mkIdent "Primitives.=>") (AssocRight, -2)
+
 kTypeS :: EType
 kTypeS = kType
 
@@ -627,8 +651,8 @@
 kTypeTypeTypeS = kArrow kType $ kArrow kType kType
 
 -- (=>) :: Constraint -> Type -> Type
-kConstraintTypeTypeS :: EType
-kConstraintTypeTypeS = kArrow kConstraint $ kArrow kType kType
+--kConstraintTypeTypeS :: EType
+--kConstraintTypeTypeS = kArrow kConstraint $ kArrow kType kType
 
 -- (~) :: Type -> Type -> Constraint
 kTypeTypeConstraintS :: EType
@@ -646,14 +670,16 @@
     entry i = Entry (EVar (mkIdentB i))
   in stFromList [
        -- The kinds are wired in (for now)
-       (mkIdentB "Primitives.Type",       [entry "Primitives.Type" kTypeS]),
-       (mkIdentB "Type",                  [entry "Primitives.Type" kTypeS]),
-       (mkIdentB "Constraint",            [entry "Primitives.Constraint" kTypeS]),
-       (mkIdentB "Primitives.Constraint", [entry "Primitives.Constraint" kTypeS]),
-       (mkIdentB "Primitives.Symbol",     [entry "Primitives.Symbol" kTypeS]),
-       (mkIdentB "Symbol",                [entry "Primitives.Symbol" kTypeS]),
-       (mkIdentB nameArrow,               [entry nameArrow   kTypeTypeTypeS]),
-       (mkIdentB "->",                    [entry nameArrow   kTypeTypeTypeS])
+       (mkIdentB nameType,       [entry nameType kTypeS]),
+       (mkIdentB "Type",         [entry nameType kTypeS]),
+       (mkIdentB nameConstraint, [entry nameConstraint kTypeS]),
+       (mkIdentB "Constraint",   [entry nameConstraint kTypeS]),
+       (mkIdentB nameSymbol,     [entry nameSymbol kTypeS]),
+       (mkIdentB "Symbol",       [entry nameSymbol kTypeS]),
+       (mkIdentB nameNat,        [entry nameNat kTypeS]),
+       (mkIdentB "Nat",          [entry nameNat kTypeS]),
+       (mkIdentB nameArrow,      [entry nameArrow kTypeTypeTypeS]),
+       (mkIdentB "->",           [entry nameArrow kTypeTypeTypeS])
        ]
 
 primTypes :: [(Ident, [Entry])]
@@ -667,12 +693,13 @@
       let
         i = tupleConstr builtinLoc n
       in  (i, [entry (unIdent i) $ EForall [kk] $ foldr kArrow kv (replicate n kv)])
+    kImplies = EForall [kk] $ kConstraint `kArrow`(kv `kArrow` kv)
   in
       [
        -- The function arrow et al are bothersome to define in Primitives, so keep them here.
        -- But the fixity is defined in Primitives.
        (mkIdentB "->",           [entry nameArrow    kTypeTypeTypeS]),
-       (mkIdentB "=>",           [entry nameImplies  kConstraintTypeTypeS]),
+       (mkIdentB "=>",           [entry nameImplies  kImplies]),
        (mkIdentB "~",            [entry nameTypeEq   kTypeTypeConstraintS]),
        -- Primitives.hs uses the type [], and it's annoying to fix that.
        -- XXX should not be needed
@@ -772,6 +799,7 @@
         ESign a _ -> expandSyn a   -- Throw away signatures, they don't affect unification
         EForall iks tt | null ts -> EForall iks <$> expandSyn tt
         ELit _ (LStr _) -> return t
+        ELit _ (LInteger _) -> return t
         _ -> impossible
   in syn [] at
 
@@ -794,6 +822,7 @@
     ESign t k -> flip ESign k <$> derefUVar t
     EForall iks t -> EForall iks <$> derefUVar t
     ELit _ (LStr _) -> return at
+    ELit _ (LInteger _) -> return at
     _ -> impossible
 
 tcErrorTK :: HasCallStack =>
@@ -875,7 +904,7 @@
 newIdent :: SLoc -> String -> T Ident
 newIdent loc s = do
   u <- newUniq
-  return $ mkIdentSLoc loc $ s ++ "$" ++ show u
+  return $ mkIdentSLoc loc $ s ++ uniqIdentSep ++ show u
 
 tLookup :: HasCallStack =>
            String -> Ident -> T (Expr, EType)
@@ -1002,11 +1031,13 @@
 
 tcDefs :: [EDef] -> T [EDef]
 tcDefs ds = do
+--  traceM ("tcDefs 1:\n" ++ showEDefs ds)
   mapM_ tcAddInfix ds
   dst <- tcDefsType ds
+--  traceM ("tcDefs 2:\n" ++ showEDefs dst)
   mapM_ addTypeSyn dst
   dst' <- tcExpand dst
---  traceM (showEDefs dst')
+--  traceM ("tcDefs 3:\n" ++ showEDefs dst')
   setDefault dst'
   tcDefsValue dst'
 
@@ -1046,7 +1077,6 @@
         ESign t k        -> withVks vks k     $ \ vvks kr -> return $ Type    (i, vvks) (ESign t kr)
         _                -> withVks vks kType $ \ vvks _  -> return $ Type    (i, vvks) at
     Class ctx (i, vks) fds ms-> withVks vks kConstraint $ \ vvks _ -> return $ Class ctx (i, vvks) fds ms
-    Instance vks ctx t d -> withVks vks kConstraint $ \ vvks _ -> return $ Instance vvks ctx t d
     _                    -> return adef
 
 -- Check&rename the given kinds, apply reconstruction at the end
@@ -1120,7 +1150,7 @@
     Sign         i          t   ->                Sign    i     <$> tCheckTypeT kType t
     ForImp  ie i            t   ->                ForImp ie i   <$> tCheckTypeT kType t
     Class   ctx lhs@(_, iks) fds ms -> withVars iks $ Class     <$> tcCtx ctx <*> return lhs <*> mapM tcFD fds <*> mapM tcMethod ms
-    Instance iks ctx c m        -> withVars iks $ Instance iks  <$> tcCtx ctx <*> tCheckTypeT kConstraint c <*> return m
+    Instance ct m               ->                Instance      <$> tCheckTypeT kConstraint ct <*> return m
     Default ts                  ->                Default       <$> mapM (tCheckTypeT kType) ts
     _                           -> return d
  where
@@ -1204,7 +1234,7 @@
       mdflts = [ (i, eqns) | BFcn i eqns <- ms ]
       tCtx = tApps (qualIdent mn iCls) (map (EVar . idKindIdent) vks)
       mkDflt (BSign methId t) = [ Sign iDflt $ EForall vks $ tCtx `tImplies` t, def $ lookup methId mdflts ]
-        where def Nothing = Fcn iDflt [Eqn [] $ EAlts [([], noDflt)] []]
+        where def Nothing = Fcn iDflt $ simpleEqn noDflt
               def (Just eqns) = Fcn iDflt eqns
               iDflt = mkDefaultMethodId methId
               -- XXX This isn't right, "Prelude._nodefault" might not be in scope
@@ -1215,6 +1245,9 @@
   return $ dcls : dDflts
 expandClass d = return [d]
 
+simpleEqn :: Expr -> [Eqn]
+simpleEqn e = [Eqn [] $ EAlts [([], e)] []]
+
 -- Keep the list empty if there are no fundeps
 mkIFunDeps :: [Ident] -> [FunDep] -> [IFunDep]
 --mkIFunDeps vs [] = [(map (const True) vs, map (const False) vs)]
@@ -1246,12 +1279,22 @@
 tupleConstraints [c] = c
 tupleConstraints cs  = tApps (tupleConstr noSLoc (length cs)) cs
 
+splitInst :: EConstraint -> ([IdKind], [EConstraint], EConstraint)
+splitInst (EForall iks t) =
+  case splitInst t of
+    (iks', ctx, ct) -> (iks ++ iks', ctx, ct)
+splitInst act | Just (ctx, ct) <- getImplies act =
+  case splitInst ct of
+    (iks, ctxs, ct') -> (iks, ctx : ctxs, ct')
+splitInst ct = ([], [], ct)
+
 expandInst :: EDef -> T [EDef]
-expandInst dinst@(Instance vks ctx cc bs) = do
-  let loc = getSLoc cc
+expandInst dinst@(Instance act bs) = do
+  (vks, ctx, cc) <- splitInst <$> expandSyn act
+  let loc = getSLoc act
       qiCls = getAppCon cc
   iInst <- newIdent loc "inst"
-  let sign = Sign iInst (eForall vks $ addConstraints ctx cc)
+  let sign = Sign iInst act
 --  (e, _) <- tLookupV iCls
   ct <- gets classTable
 --  let qiCls = getAppCon e
@@ -1262,7 +1305,7 @@
   -- XXX this ignores type signatures and other bindings
   -- XXX should tack on signatures with ESign
   let ies = [(i, ELam qs) | BFcn i qs <- bs]
-      meth i = fromMaybe (EVar $ setSLocIdent loc $ mkDefaultMethodId i) $ lookup i ies
+      meth i = fromMaybe (ELam $ simpleEqn $ EVar $ setSLocIdent loc $ mkDefaultMethodId i) $ lookup i ies
       meths = map meth mis
       sups = map (const (EVar $ mkIdentSLoc loc dictPrefixDollar)) supers
       args = sups ++ meths
@@ -1272,9 +1315,11 @@
   return [dinst, sign, bind]
 expandInst d = return [d]
 
+{-
 eForall :: [IdKind] -> EType -> EType
 eForall [] t = t
 eForall vs t = EForall vs t
+-}
 
 ---------------------
 
@@ -1501,6 +1546,7 @@
         TCType ->
           case l of
             LStr _ -> instSigma loc' (ELit loc' l) (tConI loc' nameSymbol) mt
+            LInteger _ -> instSigma loc' (ELit loc' l) (tConI loc' nameNat) mt
             _      -> impossible
         TCExpr -> do
           let getExpected (Infer _) = pure Nothing
@@ -1527,7 +1573,7 @@
             LRat r -> do
               mex <- getExpected mt
               case mex of
-                Just v | v == mkIdent nameDouble  -> tcLit  mt loc' (LDouble (fromRational r))
+                Just v | v == mkIdent nameDouble -> tcLit  mt loc' (LDouble (fromRational r))
                 _ -> do
                   (f, ft) <- tInferExpr (EVar (mkIdentSLoc loc' "fromRational"))  -- XXX should have this qualified somehow
                   (_at, rt) <- unArrow loc ft
@@ -1536,12 +1582,14 @@
             -- Not LInteger, LRat
             _ -> tcLit mt loc' l
     ECase a arms -> do
+      -- XXX should look more like EIf
       (ea, ta) <- tInferExpr a
       tt <- tGetExpType mt
       earms <- mapM (tcArm tt ta) arms
       return (ECase ea earms)
     ELet bs a -> tcBinds bs $ \ ebs -> do { ea <- tcExpr mt a; return (ELet ebs ea) }
     ETuple es -> do
+      -- XXX checking if mt is a tuple would give better inference
       let
         n = length es
       (ees, tes) <- fmap unzip (mapM tInferExpr es)
@@ -1560,12 +1608,16 @@
           case as of
             SBind p a -> do
               let
-                sbind = maybe (mkIdentSLoc loc ">>=") (\ mn -> qualIdent mn (mkIdentSLoc loc ">>=")) mmn
+                -- XXX this wrong, it should be >>= from Monad
+                ibind = mkIdentSLoc loc ">>="
+                sbind = maybe ibind (\ mn -> qualIdent mn ibind) mmn
+                x = eVarI loc "$b"
               tcExpr mt (EApp (EApp (EVar sbind) a)
-                              (eLam [eVarI loc "$x"] (ECase (eVarI loc "$x") [(p, EAlts [([], EDo mmn ss)] [])])))
+                              (eLam [x] (ECase x [(p, EAlts [([], EDo mmn ss)] [])])))
             SThen a -> do
               let
-                sthen = maybe (mkIdentSLoc loc ">>") (\ mn -> qualIdent mn (mkIdentSLoc loc ">>") ) mmn
+                ithen = mkIdentSLoc loc ">>"
+                sthen = maybe ithen (\ mn -> qualIdent mn ithen) mmn
               tcExpr mt (EApp (EApp (EVar sthen) a) (EDo mmn ss))
                 
             SLet bs ->
@@ -1573,8 +1625,8 @@
 
     ESectL e i -> tcExpr mt (EApp (EVar i) e)
     ESectR i e -> do
-      let x = eVarI loc "$x"
-      tcExpr mt (eLam [x] (EApp (EApp (EVar i) x) e))
+        let x = eVarI loc "$x"
+        tcExpr mt (eLam [x] (EApp (EApp (EVar i) x) e))
     EIf e1 e2 e3 -> do
       e1' <- tCheckExpr (tBool (getSLoc e1)) e1
       case mt of
@@ -1659,37 +1711,18 @@
 tcOper :: HasCallStack =>
           Expr -> [(Ident, Expr)] -> T Expr
 tcOper ae aies = do
+  fixs <- gets fixTable
   let
-    doOp (e1:e2:es) o os ies =
-      let e = EApp (EApp o e2) e1
-      in  calc (e:es) os ies
-    doOp _ _ _ _ = impossible
-
-    calc :: [Expr] -> [(Expr, Fixity)] -> [((Expr, Fixity), Expr)] -> Expr
-    calc [et] [] [] = et
-    calc es ((o, _):os) [] = doOp es o os []
-    calc es oos@((oy, (ay, py)):os) iies@((oo@(ox, (ax, px)), e) : ies) =
---      traceM (show ((unIdent (getIdent (fst o)), ay, py), (unIdent i, ax, px)))
-      if px == py && (ax /= ay || ax == AssocNone) then
-        errorMessage (getSLoc ox) "ambiguous operator expression"
-       else if px < py || ax == AssocLeft && px == py then
-        doOp es oy os iies
-       else
-        calc (e:es) (oo : oos) ies
-    calc es [] ((o, e) : ies) =
-      calc (e:es) [o] ies
-    calc _ _ _ = impossible
-
-    opfix :: FixTable -> (Ident, Expr) -> T ((Expr, Fixity), Expr)
-    opfix fixs (i, e) = do
+    opfix :: (Ident, Expr) -> T ((Expr, Fixity), Expr)
+    opfix (i, e) = do
       (ei, _) <- tLookupV i
       let fx = getFixity fixs (getIdent ei)
       return ((EVar i, fx), e)
 
-  fixs <- gets fixTable
---  traceM $ unlines $ map show [(unIdent i, fx) | (i, fx) <- M.toList fixs]
-  ites <- mapM (opfix fixs) aies
-  return $ calc [ae] [] ites
+  ites <- mapM opfix aies
+  case resolveFixity ae ites of
+    Left (loc, err) -> tcError loc err
+    Right e -> return e
 
 unArrow :: HasCallStack =>
            SLoc -> EType -> T (EType, EType)
@@ -1745,6 +1778,7 @@
   let loc = getSLoc eqns
   f <- newIdent loc "fcnS"
   (eqns', ds) <- solveAndDefault top $ mapM (tcEqn t) eqns
+--  traceM $ "tcEqns done: " ++ showEBind (BFcn dummyIdent eqns')
   case ds of
     [] -> return eqns'
     _  -> do
@@ -1758,6 +1792,7 @@
 tcEqn t eqn =
   case eqn of
     Eqn ps alts -> tcPats t ps $ \ t' ps' -> do
+--      traceM $ "tcEqn " ++ show ps ++ " ---> " ++ show ps'
       alts' <- tcAlts t' alts
       return (Eqn ps' alts')
 
@@ -1816,7 +1851,7 @@
     return $ ELet (eBinds bs) e'
 
 eBinds :: [(Ident, Expr)] -> [EBind]
-eBinds ds = [BFcn i [Eqn [] (EAlts [([], e)] [])] | (i, e) <- ds]
+eBinds ds = [BFcn i $ simpleEqn e | (i, e) <- ds]
 
 instPatSigma :: HasCallStack =>
                  SLoc -> Sigma -> Expected -> T ()
@@ -1931,29 +1966,31 @@
       let (sks, ds, es') = unzip3 xs
       return (concat sks, concat ds, EListish (LList es'))
 
-    ELit loc' l -> do
-      -- XXX wrong
-      ee <- case l of
-              LInteger i -> tcLit mt loc' (LInt (_integerToInt i))
-              _          -> tcLit mt loc' l
-      return ([], [], ee)
+    ELit _ _ ->
+      tcPat mt (EViewPat (EApp (EVar (mkIdentSLoc loc "==")) ae) (EVar (mkIdentSLoc loc "True")))
 
     ESign e t -> do
       t' <- tcType (Check kType) t
       instPatSigma loc t' mt
       tCheckPat t' e
 
-    EAt i e -> do
+    EAt i p -> do
       (_, ti) <- tLookupV i
-      (sk, d, e') <- tcPat mt e
+      (sk, d, p') <- tcPat mt p
       tt <- tGetExpType mt
       case ti of
         EUVar r -> tSetRefType loc r tt
         _ -> impossible
-      return (sk, d, EAt i e')
+      return (sk, d, EAt i p')
 
+    EViewPat e p -> do
+      (e', te) <- tInferExpr e
+      (tea, ter) <- unArrow loc te
+      munify loc mt tea
+      (sk, d, p') <- tcPat (Check ter) p
+      return (sk, d, EViewPat e' p')
+
     _ -> error $ "tcPat: " ++ show (getSLoc ae) ++ " " ++ show ae
-         --impossible
 
 multCheck :: [Ident] -> T ()
 multCheck vs =
@@ -1981,6 +2018,8 @@
     EListish (LList _) -> check0
     EVar _             -> check0
     ELit _ _           -> check0
+    ENegApp _          -> check0
+    EViewPat _ _       -> check0
     _ -> impossible
   where
     check0 = if n /= 0 then tcError (getSLoc p) "Bad pattern" else return ()
@@ -2034,6 +2073,7 @@
     ESign t k -> ESign (dsType t) k
     EForall iks t -> EForall iks (dsType t)
     ELit _ (LStr _) -> at
+    ELit _ (LInteger _) -> at
     _ -> impossible
 
 tConI :: SLoc -> String -> EType
@@ -2242,27 +2282,33 @@
 --  * name components of a tupled constraint
 --  * name superclasses of a constraint
 expandDict :: HasCallStack => Expr -> EConstraint -> T [InstDictC]
-expandDict edict acn = do
-  cn <- expandSyn acn
+expandDict edict ct = expandDict' [] [] edict =<< expandSyn ct
+
+expandDict' :: [IdKind] -> [EConstraint] -> Expr -> EConstraint -> T [InstDictC]
+expandDict' avks actx edict acc = do
   let
-    (iCls, args) = getApp cn
+    (bvks, bctx, cc) = splitInst acc
+    (iCls, args) = getApp cc
+    vks = avks ++ bvks
+    ctx = actx ++ bctx
   case getTupleConstr iCls of
-    Just _ -> concat <$> mapM (\ (i, a) -> expandDict (mkTupleSel i (length args) `EApp` edict) a) (zip [0..] args)
+    Just _ -> do
+      concat <$> mapM (\ (i, a) -> expandDict' vks ctx (mkTupleSel i (length args) `EApp` edict) a) (zip [0..] args)
     Nothing -> do
       ct <- gets classTable
       case M.lookup iCls ct of
         Nothing -> do
-          -- if iCls a variable it's not in the class table, otherwise it's an error
+          -- if iCls is a variable it's not in the class table, otherwise it's an error
           when (isConIdent iCls) $
             impossible
-          return [(edict, [], [], cn, [])]
+          return [(edict, vks, ctx, cc, [])]
         Just (iks, sups, _, _, fds) -> do
           let 
             vs = map idKindIdent iks
             sub = zip vs args
             sups' = map (subst sub) sups
-          insts <- concat <$> mapM (\ (i, sup) -> expandDict (EVar (mkSuperSel iCls i) `EApp` edict) sup) (zip [1 ..] sups')
-          return $ (edict, [], [], cn, fds) : insts
+          insts <- concat <$> mapM (\ (i, sup) -> expandDict' vks ctx (EVar (mkSuperSel iCls i) `EApp` edict) sup) (zip [1 ..] sups')
+          return $ (edict, vks, ctx, cc, fds) : insts
 
 mkSuperSel :: HasCallStack =>
               Ident -> Int -> Ident
@@ -2291,7 +2337,7 @@
   ds <- solveConstraints
   cs <- gets constraints
   vs <- getMetaTyVars (map snd cs)    -- These are the type variables that need defaulting
---  traceM $ "solveAndDefault" ++ show vs
+--  traceM $ "solveAndDefault: meta=" ++ show vs
   -- XXX may have to iterate this with fundeps
   ds' <- concat <$> mapM defaultOneTyVar vs
   return (a, ds ++ ds')
@@ -2376,9 +2422,11 @@
 -- There must always by at least one solver that matches
 solvers :: [(Ident -> Bool, SolveOne)]
 solvers =
-  [ (isJust . getTupleConstr, solveTuple)     -- handle tuple constraints, i.e. (C1 t1, C2 t2, ...)
-  , ((== mkIdent nameTypeEq), solveTypeEq)    -- handle equality constraints, i.e. (t1 ~ t2)
-  , (const True,              solveInst)      -- handle constraints with instances
+  [ (isJust . getTupleConstr,      solveTuple)        -- handle tuple constraints, i.e. (C1 t1, C2 t2, ...)
+  , ((== mkIdent nameTypeEq),      solveTypeEq)       -- handle equality constraints, i.e. (t1 ~ t2)
+  , ((== mkIdent nameKnownNat),    solveKnownNat)     -- KnownNat 999 constraints
+  , ((== mkIdent nameKnownSymbol), solveKnownSymbol)  -- KnownNat 999 constraints
+  , (const True,                   solveInst)         -- handle constraints with instances
   ]
 
 -- Examine each goal, either solve it (possibly producing new goals) or let it remain unsolved.
@@ -2449,6 +2497,20 @@
       return $ Just (de, ncs, [])
 solveTypeEq _ _ _ = impossible
 
+solveKnownNat :: SolveOne
+solveKnownNat loc iCls [e@(ELit _ (LInteger _))] = mkConstDict loc iCls e
+solveKnownNat loc iCls ts = solveInst loc iCls ts  -- look for a dict argument
+
+solveKnownSymbol :: SolveOne
+solveKnownSymbol loc iCls [e@(ELit _ (LStr _))] = mkConstDict loc iCls e
+solveKnownSymbol loc iCls ts = solveInst loc iCls ts  -- look for a dict argument
+
+mkConstDict :: SLoc -> Ident -> Expr -> T (Maybe (Expr, [Goal], [Improve]))
+mkConstDict loc iCls e = do
+  let res = EApp (EVar $ mkClassConstructor iCls) fcn
+      fcn = EApp (ELit loc (LPrim "K")) e                -- constant function
+  return $ Just (res, [], [])
+
 type TySubst = [(TRef, EType)]
 
 -- Given some instances and a constraint, find the matching instances.
@@ -2534,14 +2596,16 @@
 getBestMatches :: [(Int, (Expr, [EConstraint], [Improve]))] -> [(Expr, [EConstraint], [Improve])]
 getBestMatches [] = []
 getBestMatches ams =
-  let (args, insts) = partition (\ (_, (EVar i, _, _)) -> (adictPrefix ++ uniqIdentSep) `isPrefixOf` unIdent i) ams
+  let (args, insts) = partition (\ (_, (ei, _, _)) -> (adictPrefix ++ uniqIdentSep) `isPrefixOf` unIdent (unvar ei)) ams
+      unvar (EVar i) = i
+      unvar e = impossibleShow e
       pick ms =
         let b = minimum (map fst ms)         -- minimum substitution size
         in  [ ec | (s, ec) <- ms, s == b ]   -- pick out the smallest
   in  if null args then pick insts else pick args
 
 -- Check that there are no unsolved constraints.
-checkConstraints :: T ()
+checkConstraints :: HasCallStack => T ()
 checkConstraints = do
   cs <- gets constraints
   case cs of
@@ -2647,3 +2711,4 @@
   showIdent i ++ " :: " ++ showEType cc ++
     " has " ++ showListS showIdent ms
 -}
+
diff --git a/src/runtime/config-unix-64.h b/src/runtime/config-unix-64.h
--- a/src/runtime/config-unix-64.h
+++ b/src/runtime/config-unix-64.h
@@ -5,7 +5,6 @@
 /*
  * Various platform specific configuration.
  */
-
 /*
  * Include stdio functions.
  * Without this none of the file I/O in System.IO is available.
@@ -47,7 +46,6 @@
  * Defaults to "'".
  */
 /* #define PCOMMA "'" */
-
 
 #include <inttypes.h>
 #include <termios.h>
diff --git a/src/runtime/config.h b/src/runtime/config.h
new file mode 100644
--- /dev/null
+++ b/src/runtime/config.h
@@ -0,0 +1,11 @@
+#ifndef CONFIG_H
+#define CONFIG_h
+
+/*
+ * In here are items that can be configured, but that does not depend on the platform.
+ */
+
+#define HEAP_CELLS 50000000
+#define STACK_SIZE 100000
+
+#endif // CONFIG_H
diff --git a/src/runtime/eval.c b/src/runtime/eval.c
--- a/src/runtime/eval.c
+++ b/src/runtime/eval.c
@@ -18,7 +18,7 @@
 #include "md5.h"
 #endif
 
-#define VERSION "v5.1\n"
+#define VERSION "v6.0\n"
 
 typedef intptr_t value_t;       /* Make value the same size as pointers, since they are in a union */
 #define PRIvalue PRIdPTR
@@ -41,6 +41,22 @@
 /* We cast all FFI functions to this type.  It's reasonably portable */
 typedef void (*funptr_t)(void);
 
+#if !defined(MALLOC)
+#define MALLOC malloc
+#endif
+
+#if !defined(FREE)
+#define FREE free
+#endif
+
+#if !defined(EXIT)
+#define EXIT exit
+#endif
+
+#if !defined(PRINT)
+#define PRINT printf
+#endif
+
 #if !defined(PCOMMA)
 #define PCOMMA "'"
 #endif  /* !defined(PCOMMA) */
@@ -55,7 +71,7 @@
 
 #if !defined(TMPNAME)
 char* TMPNAME(const char* pre, const char* post) {
-  char *s = malloc(strlen(pre) + 3 + strlen(post) + 1);
+  char *s = MALLOC(strlen(pre) + 3 + strlen(post) + 1);
   strcpy(s, pre);
   strcat(s, "TMP");
   strcat(s, post);
@@ -63,6 +79,10 @@
 }
 #endif
 
+// #if !defined(MALLOC)
+// #define MALLOC malloc
+// #endif
+
 #if !defined(INLINE)
 #define INLINE inline
 #endif  /* !define(INLINE) */
@@ -87,33 +107,44 @@
 #define LOW_INT (-10)
 #define HIGH_INT 256
 
+#include "config.h"
+
+#if !defined(HEAP_CELLS)
 #define HEAP_CELLS 50000000
+#endif
+
+#if !defined(STACK_SIZE)
 #define STACK_SIZE 100000
+#endif
 
 #if !defined(ERR)
 #if WANT_STDIO
-#define ERR(s)    do { fprintf(stderr,"ERR: "s"\n");   exit(1); } while(0)
-#define ERR1(s,a) do { fprintf(stderr,"ERR: "s"\n",a); exit(1); } while(0)
+#define ERR(s)    do { fprintf(stderr,"ERR: "s"\n");   EXIT(1); } while(0)
+#define ERR1(s,a) do { fprintf(stderr,"ERR: "s"\n",a); EXIT(1); } while(0)
 #else  /* WANT_STDIO */
-#define ERR(s) exit(1)
-#define ERR1(s,a) exit(1)
+#define ERR(s) EXIT(1)
+#define ERR1(s,a) EXIT(1)
 #endif  /* WANT_STDIO */
 #endif  /* !define(ERR) */
 
-enum node_tag { T_FREE, T_IND, T_AP, T_INT, T_DBL, T_PTR, T_BADDYN, T_S, T_K, T_I, T_B, T_C,
+enum node_tag { T_FREE, T_IND, T_AP, T_INT, T_DBL, T_PTR, T_BADDYN, T_ARR,
+                T_S, T_K, T_I, T_B, T_C,
                 T_A, T_Y, T_SS, T_BB, T_CC, T_P, T_R, T_O, T_U, T_Z,
+                T_K2, T_K3, T_K4,
                 T_ADD, T_SUB, T_MUL, T_QUOT, T_REM, T_SUBR, T_UQUOT, T_UREM, T_NEG,
                 T_AND, T_OR, T_XOR, T_INV, T_SHL, T_SHR, T_ASHR,
                 T_EQ, T_NE, T_LT, T_LE, T_GT, T_GE, T_ULT, T_ULE, T_UGT, T_UGE,
+                T_PEQ, T_PNULL, T_PADD, T_PSUB,
                 T_TOPTR, T_TOINT, T_TODBL,
 #if WANT_FLOAT
                 T_FADD, T_FSUB, T_FMUL, T_FDIV, T_FNEG, T_ITOF,
                 T_FEQ, T_FNE, T_FLT, T_FLE, T_FGT, T_FGE, T_FSHOW, T_FREAD,
 #endif
+                T_ARR_ALLOC, T_ARR_SIZE, T_ARR_READ, T_ARR_WRITE, T_ARR_EQ,
                 T_ERROR, T_NODEFAULT, T_NOMATCH, T_SEQ, T_EQUAL, T_COMPARE, T_RNF,
                 T_IO_BIND, T_IO_THEN, T_IO_RETURN,
                 T_IO_SERIALIZE, T_IO_DESERIALIZE,
-                T_IO_STDIN, T_IO_STDOUT, T_IO_STDERR, T_IO_GETARGS, T_IO_DROPARGS,
+                T_IO_STDIN, T_IO_STDOUT, T_IO_STDERR, T_IO_GETARGS,
                 T_IO_PERFORMIO, T_IO_GETTIMEMILLI, T_IO_PRINT, T_IO_CATCH,
                 T_IO_CCALL, T_DYNSYM,
                 T_NEWCASTRINGLEN, T_PEEKCASTRING, T_PEEKCASTRINGLEN,
@@ -121,7 +152,8 @@
                 T_LAST_TAG,
 };
 const char* tag_names[] = {
-  "FREE", "IND", "AP", "INT", "DBL", "PTR", "BADDYN", "S", "K", "I", "B", "C",
+  "FREE", "IND", "AP", "INT", "DBL", "PTR", "BADDYN", "ARR",
+  "S", "K", "I", "B", "C",
   "A", "Y", "SS", "BB", "CC", "P", "R", "O", "U", "Z",
   "ADD", "SUB", "MUL", "QUOT", "REM", "SUBR", "UQUOT", "UREM", "NEG",
   "AND", "OR", "XOR", "INV", "SHL", "SHR", "ASHR",
@@ -131,10 +163,11 @@
   "FADD", "FSUB", "FMUL", "FDIV", "FNEG", "ITOF",
   "FEQ", "FNE", "FLT", "FLE", "FGT", "FGE", "FSHOW", "FREAD",
 #endif
+  "ARR_ALLOC", "ARR_SIZE", "ARR_READ", "ARR_WRITE", "ARR_EQ",
   "ERROR", "NODEFAULT", "NOMATCH", "SEQ", "EQUAL", "COMPARE", "RNF",
   "IO_BIND", "IO_THEN", "IO_RETURN",
   "IO_SERIALIZE", "IO_DESERIALIZE",
-  "IO_STDIN", "IO_STDOUT", "IO_STDERR", "IO_GETARGS", "IO_DROPARGS",
+  "IO_STDIN", "IO_STDOUT", "IO_STDERR", "IO_GETARGS",
   "IO_PERFORMIO", "IO_GETTIMEMILLI", "IO_PRINT", "IO_CATCH",
   "IO_CCALL", "DYNSYM",
   "NEWCASTRINGLEN", "PEEKCASTRING", "PEEKCASTRINGLEN",
@@ -142,17 +175,20 @@
   "LAST_TAG",
 };
 
+struct ioarray;
+
 typedef struct node {
   union {
     struct node *uufun;
     tag_t        uutag;             /* LSB=1 indicates that this is a tag, LSB=0 that this is a T_AP node */
   } ufun;
   union {
-    struct node *uuarg;
-    value_t      uuvalue;
-    flt_t        uufloatvalue;
-    const char  *uustring;
-    void        *uuptr;
+    struct node    *uuarg;
+    value_t         uuvalue;
+    flt_t           uufloatvalue;
+    const char     *uustring;
+    void           *uuptr;
+    struct ioarray *uuarray;
   } uarg;
 } node;
 typedef struct node* NODEPTR;
@@ -168,12 +204,28 @@
 #define ARG(p) (p)->uarg.uuarg
 #define STR(p) (p)->uarg.uustring
 #define PTR(p) (p)->uarg.uuptr
+#define ARR(p) (p)->uarg.uuarray
 #define INDIR(p) ARG(p)
 #define NODE_SIZE sizeof(node)
-#define ALLOC_HEAP(n) do { cells = malloc(n * sizeof(node)); memset(cells, 0x55, n * sizeof(node)); } while(0)
+#define ALLOC_HEAP(n) do { cells = MALLOC(n * sizeof(node)); memset(cells, 0x55, n * sizeof(node)); } while(0)
 #define LABEL(n) ((heapoffs_t)((n) - cells))
 node *cells;                 /* All cells */
 
+/*
+ * Arrays are allocated with MALLOC()/FREE().
+ * During GC they are marked, and all elements in the array are
+ * recursively marked.
+ * At the end of the the mark phase there is a scan of all
+ * arrays, and the unmarked ones are freed.
+ */
+struct ioarray {
+  struct ioarray *next;         /* all ioarrays are linked together */
+  int marked;                   /* marked during GC */
+  size_t size;                  /* number of elements in the array */
+  NODEPTR array[1];             /* actual size may be bigger */
+};
+struct ioarray *array_root = 0;
+
 counter_t num_reductions = 0;
 counter_t num_alloc;
 counter_t num_gc = 0;
@@ -199,20 +251,41 @@
 counter_t num_marked;
 counter_t max_num_marked = 0;
 counter_t num_free;
+counter_t num_arr_alloc;
+counter_t num_arr_free;
 
 #define BITS_PER_WORD (sizeof(bits_t) * 8)
 bits_t *free_map;             /* 1 bit per node, 0=free, 1=used */
 heapoffs_t free_map_nwords;
 heapoffs_t next_scan_index;
 
+int want_gc_red = 0;
+
 NORETURN
 void
 memerr(void)
 {
   ERR("Out of memory");
-  exit(1);
+  EXIT(1);
 }
 
+struct ioarray*
+arr_alloc(size_t sz, NODEPTR e)
+{
+  struct ioarray *arr = MALLOC(sizeof(struct ioarray) + (sz-1) * sizeof(NODEPTR));
+  if (!arr)
+    memerr();
+  arr->next = array_root;
+  array_root = arr;
+  arr->marked = 0;
+  arr->size = sz;
+  for(size_t i = 0; i < sz; i++)
+    arr->array[i] = e;
+  //PRINT("arr_alloc(%d, %p) = %p\n", (int)sz, e, arr);
+  num_arr_alloc++;
+  return arr;
+}
+
 /***************** BFILE *******************/
 
 /* BFILE will have different implementations, they all have these methods */
@@ -279,13 +352,13 @@
 closeb_file(BFILE *bp)
 {
   struct BFILE_file *p = (struct BFILE_file *)bp;
-  free(p);
+  FREE(p);
 }
 
 BFILE *
 openb_FILE(FILE *f)
 {
-  struct BFILE_file *p = malloc(sizeof (struct BFILE_file));
+  struct BFILE_file *p = MALLOC(sizeof (struct BFILE_file));
   if (!p)
     memerr();
   p->mets.getb   = getb_file;
@@ -343,7 +416,7 @@
 str_lzw(const char *s, int c)
 {
   int l = strlen(s);
-  char *p = malloc(l + 1 + 1);
+  char *p = MALLOC(l + 1 + 1);
   if (!p)
     memerr();
   strcpy(p, s);
@@ -369,7 +442,7 @@
   if (p->ptr) {
     c = *p->ptr++;
     if (c) {
-      //printf("c='%c'\n", c);
+      //PRINT("c='%c'\n", c);
       return c;
     }
     p->ptr = 0;
@@ -414,10 +487,10 @@
 
   for (int i = 0; i < DICTSIZE; i++) {
     if (p->table[i])
-      free(p->table[i]);
+      FREE(p->table[i]);
   }
   p->bfile->closeb(p->bfile);
-  free(p);
+  FREE(p);
 }
 
 BFILE *
@@ -572,7 +645,10 @@
   { "Y", T_Y },
   { "B'", T_BB },
   { "Z", T_Z },
-  /* primops */
+  { "K2", T_K2 },
+  { "K3", T_K3 },
+  { "K4", T_K4 },
+/* primops */
   { "+", T_ADD, T_ADD },
   { "-", T_SUB, T_SUBR },
   { "*", T_MUL, T_MUL },
@@ -590,21 +666,23 @@
   { "shr", T_SHR },
   { "ashr", T_ASHR },
 #if WANT_FLOAT
-  { "fadd" , T_FADD, T_FADD},
-  { "fsub" , T_FSUB, T_FSUB},
-  { "fmul" , T_FMUL, T_FMUL},
-  { "fdiv", T_FDIV},
+  { "f+" , T_FADD, T_FADD},
+  { "f-" , T_FSUB, T_FSUB},
+  { "f*" , T_FMUL, T_FMUL},
+  { "f/", T_FDIV},
   { "fneg", T_FNEG},
   { "itof", T_ITOF},
-  { "feq", T_FEQ, T_FEQ},
-  { "fne", T_FNE, T_FNE},
-  { "flt", T_FLT},
-  { "fle", T_FLE},
-  { "fgt", T_FGT},
-  { "fge", T_FGE},
+  { "f==", T_FEQ, T_FEQ},
+  { "f/=", T_FNE, T_FNE},
+  { "f<", T_FLT},
+  { "f<=", T_FLE},
+  { "f>", T_FGT},
+  { "f>=", T_FGE},
   { "fshow", T_FSHOW},
   { "fread", T_FREAD},
 #endif  /* WANT_FLOAT */
+  { "ord", T_I },
+  { "chr", T_I },
   { "==", T_EQ, T_EQ },
   { "/=", T_NE, T_NE },
   { "<", T_LT, T_GT },
@@ -615,12 +693,20 @@
   { "<=", T_LE, T_GE },
   { ">", T_GT, T_LT },
   { ">=", T_GE, T_LE },
+  { "p==", T_PEQ, T_PEQ },
+  { "pnull", T_PNULL },
+  { "pcast", T_I },
+  { "p+", T_PADD },
+  { "p-", T_PSUB },
   { "seq", T_SEQ },
   { "error", T_ERROR },
   { "noDefault", T_NODEFAULT },
   { "noMatch", T_NOMATCH },
   { "equal", T_EQUAL, T_EQUAL },
+  { "sequal", T_EQUAL, T_EQUAL },
   { "compare", T_COMPARE },
+  { "scmp", T_COMPARE },
+  { "icmp", T_COMPARE },
   { "rnf", T_RNF },
   /* IO primops */
   { "IO.>>=", T_IO_BIND },
@@ -633,10 +719,14 @@
   { "IO.stdout", T_IO_STDOUT },
   { "IO.stderr", T_IO_STDERR },
   { "IO.getArgs", T_IO_GETARGS },
-  { "IO.dropArgs", T_IO_DROPARGS },
   { "IO.getTimeMilli", T_IO_GETTIMEMILLI },
   { "IO.performIO", T_IO_PERFORMIO },
   { "IO.catch", T_IO_CATCH },
+  { "A.alloc", T_ARR_ALLOC },
+  { "A.size", T_ARR_SIZE },
+  { "A.read", T_ARR_READ },
+  { "A.write", T_ARR_WRITE },
+  { "A.==", T_ARR_EQ },
   { "dynsym", T_DYNSYM },
   { "newCAStringLen", T_NEWCASTRINGLEN },
   { "peekCAString", T_PEEKCASTRING },
@@ -653,7 +743,7 @@
 {
   ALLOC_HEAP(heap_size);
   free_map_nwords = (heap_size + BITS_PER_WORD - 1) / BITS_PER_WORD; /* bytes needed for free map */
-  free_map = malloc(free_map_nwords * sizeof(bits_t));
+  free_map = MALLOC(free_map_nwords * sizeof(bits_t));
   if (!free_map)
     memerr();
 
@@ -758,28 +848,30 @@
 #if GCRED
   value_t i;
 #endif
+  enum node_tag tag;
 
   //  mark_depth++;
   //  if (mark_depth % 10000 == 0)
-  //    printf("mark depth %"PRIcounter"\n", mark_depth);
+  //    PRINT("mark depth %"PRIcounter"\n", mark_depth);
   top:
   n = *np;
-  if (GETTAG(n) == T_IND) {
+  tag = GETTAG(n);
+  if (tag == T_IND) {
 #if SANITY
     int loop = 0;
     /* Skip indirections, and redirect start pointer */
-    while (GETTAG(n) == T_IND) {
-      //      printf("*"); fflush(stdout);
+    while ((tag = GETTAG(n)) == T_IND) {
+      //      PRINT("*"); fflush(stdout);
       n = INDIR(n);
       if (loop++ > 10000000) {
-        //printf("%p %p %p\n", n, INDIR(n), INDIR(INDIR(n)));
+        //PRINT("%p %p %p\n", n, INDIR(n), INDIR(INDIR(n)));
         ERR("IND loop");
       }
     }
     //    if (loop)
-    //      printf("\n");
+    //      PRINT("\n");
 #else  /* SANITY */
-    while (GETTAG(n) == T_IND) {
+    while ((tag = GETTAG(n)) == T_IND) {
       n = INDIR(n);
     }
 #endif  /* SANITY */
@@ -792,55 +884,58 @@
   num_marked++;
   mark_used(n);
 #if GCRED
-  /* This is really only fruitful just after parsing.  It can be removed. */
-  if (GETTAG(n) == T_AP && GETTAG(FUN(n)) == T_AP && GETTAG(FUN(FUN(n))) == T_A) {
-    /* Do the A x y --> y reduction */
-    NODEPTR y = ARG(n);
-    SETTAG(n, T_IND);
-    INDIR(n) = y;
-    red_a++;
-    goto top;
-  }
+  if (want_gc_red) {
+    /* This is really only fruitful just after parsing.  It can be removed. */
+    if (tag == T_AP && GETTAG(FUN(n)) == T_AP && GETTAG(FUN(FUN(n))) == T_A) {
+      /* Do the A x y --> y reduction */
+      NODEPTR y = ARG(n);
+      SETTAG(n, T_IND);
+      INDIR(n) = y;
+      red_a++;
+      goto top;
+    }
 #if 0
-  /* This never seems to happen */
-  if (GETTAG(n) == T_AP && GETTAG(FUN(n)) == T_AP && GETTAG(FUN(FUN(n))) == T_K) {
-    /* Do the K x y --> x reduction */
-    NODEPTR x = ARG(FUN(n));
-    SETTAG(n, T_IND);
-    INDIR(n) = x;
-    red_k++;
-    goto top;
-  }
+    /* This never seems to happen */
+    if (tag == T_AP && GETTAG(FUN(n)) == T_AP && GETTAG(FUN(FUN(n))) == T_K) {
+      /* Do the K x y --> x reduction */
+      NODEPTR x = ARG(FUN(n));
+      SETTAG(n, T_IND);
+      INDIR(n) = x;
+      red_k++;
+      goto top;
+    }
 #endif  /* 0 */
-  if (GETTAG(n) == T_AP && GETTAG(FUN(n)) == T_I) {
-    /* Do the I x --> x reduction */
-    NODEPTR x = ARG(n);
-    SETTAG(n, T_IND);
-    INDIR(n) = x;
-    red_i++;
-    goto top;
-  }
-#if 0
-  /* This is broken (I don't understand why),
-   * but it also doesn't seem to work as well as intended.  Maybe IND nodes?
-   */
-  if (GETTAG(n) == T_AP && GETTAG(FUN(n)) == T_C) {
-    NODEPTR q = ARG(n);
-    enum node_tag tt, tf;
-    while ((tt = GETTAG(q)) == T_IND)
-      q = INDIR(q);
-    if ((tf = flip_ops[tt])) {
-      /* Do the C op --> flip_op reduction */
-      // printf("%s -> %s\n", tag_names[tt], tag_names[tf]);
+    if (tag == T_AP && GETTAG(FUN(n)) == T_I) {
+      /* Do the I x --> x reduction */
+      NODEPTR x = ARG(n);
       SETTAG(n, T_IND);
-      INDIR(n) = HEAPREF(tf);
-      red_flip++;
+      INDIR(n) = x;
+      red_i++;
       goto top;
     }
+#if 1
+    /* This is broken.
+     * Probably because it can happen in the middle of the C node.
+     */
+    if (tag == T_AP && GETTAG(FUN(n)) == T_C) {
+      NODEPTR q = ARG(n);
+      enum node_tag tt, tf;
+      while ((tt = GETTAG(q)) == T_IND)
+        q = INDIR(q);
+      if ((tf = flip_ops[tt])) {
+        /* Do the C op --> flip_op reduction */
+        // PRINT("%s -> %s\n", tag_names[tt], tag_names[tf]);
+        SETTAG(n, T_IND);
+        INDIR(n) = HEAPREF(tf);
+        red_flip++;
+        return;
+        goto top;
+      }
+    }
   }
 #endif
 #if INTTABLE
-  if (GETTAG(n) == T_INT && LOW_INT <= (i = GETVALUE(n)) && i < HIGH_INT) {
+  if (tag == T_INT && LOW_INT <= (i = GETVALUE(n)) && i < HIGH_INT) {
     SETTAG(n, T_IND);
     INDIR(n) = intTable[i - LOW_INT];
     red_int++;
@@ -848,7 +943,7 @@
   }
 #endif  /* INTTABLE */
 #endif  /* GCRED */
-  if (GETTAG(n) == T_AP) {
+  if (tag == T_AP) {
 #if 1
     mark(&FUN(n));
     //mark(&ARG(n));
@@ -859,6 +954,16 @@
     np = &FUN(n);
     goto top;                   /* Avoid tail recursion */
 #endif
+  } else if (tag == T_ARR) {
+    struct ioarray *arr = ARR(n);
+    /* It really should never happen that we encounter a marked
+     * array, since the parent is marked.
+     */
+    if (!arr->marked) {
+      arr->marked = 1;
+      for(size_t i = 0; i < arr->size; i++)
+        mark(&arr->array[i]);
+    }
   }
 }
 
@@ -872,7 +977,7 @@
   num_marked = 0;
 #if WANT_STDIO
   if (verbose > 1)
-    fprintf(stderr, "gc mark\n");
+    ERR("gc mark\n");
 #endif
   gc_mark_time -= GETTIMEMILLI();
   mark_all_free();
@@ -886,10 +991,23 @@
   num_free = heap_size - heap_start - num_marked;
   if (num_free < heap_size / 50)
     ERR("heap exhausted");
+
+  for (struct ioarray **arrp = &array_root; *arrp; ) {
+    struct ioarray *arr = *arrp;
+    if (arr->marked) {
+      arr->marked = 0;
+      arrp = &arr->next;
+    } else {
+      *arrp = arr->next;        /* unlink */
+      num_arr_free++;
+      FREE(arr);                /* and FREE */
+    }
+  }
+
 #if WANT_STDIO
   if (verbose > 1) {
-    fprintf(stderr, "gc done, %"PRIcounter" free\n", num_free);
-    //printf(" GC reductions A=%d, K=%d, I=%d, int=%d flip=%d\n", red_a, red_k, red_i, red_int, red_flip);
+    ERR1("gc done, %"PRIcounter" free\n", num_free);
+    //PRINT(" GC reductions A=%d, K=%d, I=%d, int=%d flip=%d\n", red_a, red_k, red_i, red_int, red_flip);
   }
 #endif  /* !WANT_STDIO */
 }
@@ -902,7 +1020,7 @@
     return;
 #if WANT_STDIO
   if (verbose > 1)
-    fprintf(stderr, "gc_check: %d\n", (int)k);
+    ERR1("gc_check: %d\n", (int)k);
 #endif
   gc();
 }
@@ -962,7 +1080,7 @@
   const funptr_t ffi_fun;
   enum { FFI_V, FFI_I, FFI_IV, FFI_II, FFI_IIV, FFI_III, FFI_DD, FFI_DDD, FFI_PI,
          FFI_i, FFI_Pi, FFI_iPi, FFI_PIIPI, FFI_PIV, FFI_IIP,
-         FFI_PPI, FFI_PP, FFI_PPP, FFI_IPI, FFI_PV, FFI_IP, FFI_PPV,
+         FFI_PPI, FFI_PP, FFI_PPP, FFI_IPI, FFI_PV, FFI_IP, FFI_PPV, FFI_PPzV,
   } ffi_how;
 } ffi_table[] = {
 #if WORD_SIZE == 64
@@ -1022,13 +1140,15 @@
 
   //  { "getArgs",   (funptr_t)getArgs,  FFI_A },
   { "getTimeMilli",(funptr_t)GETTIMEMILLI,  FFI_I },
-  { "free",     (funptr_t)free,    FFI_PV },
-  { "malloc",   (funptr_t)malloc,  FFI_IP }, /* The I is really a size_t */
-  { "calloc",   (funptr_t)malloc,  FFI_IIP },
+  { "free",     (funptr_t)FREE,    FFI_PV },
+  { "malloc",   (funptr_t)MALLOC,  FFI_IP }, /* The I is really a size_t */
+  { "calloc",   (funptr_t)MALLOC,  FFI_IIP },
   { "peekWord", (funptr_t)peekWord,FFI_PI },
   { "pokeWord", (funptr_t)pokeWord,FFI_PIV },
   { "peekByte", (funptr_t)peekByte,FFI_PI },
   { "pokeByte", (funptr_t)pokeByte,FFI_PIV },
+  { "memcpy",   (funptr_t)memcpy,  FFI_PPzV },
+  { "memmove",  (funptr_t)memmove, FFI_PPzV },
 };
 
 /* Look up an FFI function by name */
@@ -1049,7 +1169,7 @@
   if (i < 0) {
     /* lookup failed, generate a node that will dynamically generate an error */
     r = alloc_node(T_BADDYN);
-    char *fun = malloc(strlen(buf) + 1);
+    char *fun = MALLOC(strlen(buf) + 1);
     strcpy(fun, buf);
     STR(r) = fun;
   } else {
@@ -1193,24 +1313,19 @@
     i = parse_int(f);
     r = mkInt(i);
     return r;
-#if 0
-  case '-':
-    c = f->getb(f);
-    neg = -1;
-    if ('0' <= c && c <= '9') {
-      goto number;
-    } else {
-      ERR("got -");
+  case '[':
+    {
+      size_t sz = (size_t)parse_int(f);
+      if (!gobble(f, ']')) ERR("parse arr 1");
+      struct ioarray *arr = arr_alloc(sz, NIL);
+      for (size_t i = 0; i < sz; i++) {
+        if (!gobble(f, ' ')) ERR("parse arr 2");
+        arr->array[i] = parse(f);
+      }
+      r = alloc_node(T_ARR);
+      ARR(r) = arr;
+      return r;
     }
-  case '0':case '1':case '2':case '3':case '4':case '5':case '6':case '7':case '8':case '9':
-    /* integer [0-9]+*/
-    neg = 1;
-  number:
-    f->ungetb(c, f);
-    i = neg * parse_int(f);
-    r = mkInt(i);
-    return r;
-#endif
   case '_' :
     /* Reference to a shared value: _label */
     l = parse_int(f);  /* The label */
@@ -1244,7 +1359,7 @@
     /* XXX assume there are no NULs in the string, and all fit in a char */
     /* XXX allocation is a hack */
     {
-      char *buffer = malloc(10000);
+      char *buffer = MALLOC(10000);
       char *p = buffer;
       for(;;) {
         c = f->getb(f);
@@ -1306,13 +1421,13 @@
     ERR("size parse");
   gobble(f, '\r');                 /* allow extra CR */
   shared_table_size = 3 * numLabels; /* sparsely populated hashtable */
-  shared_table = malloc(shared_table_size * sizeof(struct shared_entry));
+  shared_table = MALLOC(shared_table_size * sizeof(struct shared_entry));
   if (!shared_table)
     memerr();
   for(heapoffs_t i = 0; i < shared_table_size; i++)
     shared_table[i].node = NIL;
   NODEPTR n = parse(f);
-  free(shared_table);
+  FREE(shared_table);
   return n;
 }
 
@@ -1379,20 +1494,20 @@
  top:
   while (GETTAG(n) == T_IND)
     n = INDIR(n);
-  //printf("find_sharing %p %llu ", n, LABEL(n));
+  //PRINT("find_sharing %p %llu ", n, LABEL(n));
   if (GETTAG(n) == T_AP) {
     if (test_bit(shared_bits, n)) {
       /* Alread marked as shared */
-      //printf("shared\n");
+      //PRINT("shared\n");
       ;
     } else if (test_bit(marked_bits, n)) {
       /* Already marked, so now mark as shared */
-      //printf("marked\n");
+      //PRINT("marked\n");
       set_bit(shared_bits, n);
       num_shared++;
     } else {
       /* Mark as visited, and recurse */
-      //printf("unmarked\n");
+      //PRINT("unmarked\n");
       set_bit(marked_bits, n);
       find_sharing(FUN(n));
       n = ARG(n);
@@ -1400,7 +1515,7 @@
     }
   } else {
     /* Not an application, so do nothing */
-    //printf("not T_AP\n");
+    //PRINT("not T_AP\n");
     ;
   }
 }
@@ -1435,6 +1550,14 @@
     break;
   case T_INT: fprintf(f, "#%"PRIvalue, GETVALUE(n)); break;
   case T_DBL: fprintf(f, "&%.16g", GETDBLVALUE(n)); break;
+  case T_ARR:
+    /* Arrays serialize as '[sz] e_1 ... e_sz' */
+    fprintf(f, "[%u]", (unsigned)ARR(n)->size);
+    for(size_t i = 0; i < ARR(n)->size; i++) {
+      fputc(' ', f);
+      printrec(f, ARR(n)->array[i]);
+    }
+    break;
   case T_PTR:
     if (PTR(n) == stdin)
       fprintf(f, "IO.stdin");
@@ -1475,6 +1598,9 @@
   case T_SS: fprintf(f, "S'"); break;
   case T_BB: fprintf(f, "B'"); break;
   case T_Z: fprintf(f, "Z"); break;
+  case T_K2: fprintf(f, "K2"); break;
+  case T_K3: fprintf(f, "K3"); break;
+  case T_K4: fprintf(f, "K4"); break;
   case T_CC: fprintf(f, "C'"); break;
   case T_ADD: fprintf(f, "+"); break;
   case T_SUB: fprintf(f, "-"); break;
@@ -1518,6 +1644,10 @@
   case T_ULE: fprintf(f, "u<="); break;
   case T_UGT: fprintf(f, "u>"); break;
   case T_UGE: fprintf(f, "u>="); break;
+  case T_PEQ: fprintf(f, "p=="); break;
+  case T_PNULL: fprintf(f, "pnull"); break;
+  case T_PADD: fprintf(f, "p+"); break;
+  case T_PSUB: fprintf(f, "p-"); break;
   case T_ERROR: fprintf(f, "error"); break;
   case T_NODEFAULT: fprintf(f, "noDefault"); break;
   case T_NOMATCH: fprintf(f, "noMatch"); break;
@@ -1532,11 +1662,15 @@
   case T_IO_PRINT: fprintf(f, "IO.print"); break;
   case T_IO_DESERIALIZE: fprintf(f, "IO.deserialize"); break;
   case T_IO_GETARGS: fprintf(f, "IO.getArgs"); break;
-  case T_IO_DROPARGS: fprintf(f, "IO.dropArgs"); break;
   case T_IO_GETTIMEMILLI: fprintf(f, "IO.getTimeMilli"); break;
   case T_IO_PERFORMIO: fprintf(f, "IO.performIO"); break;
   case T_IO_CCALL: fprintf(f, "^%s", ffi_table[GETVALUE(n)].ffi_name); break;
   case T_IO_CATCH: fprintf(f, "IO.catch"); break;
+  case T_ARR_ALLOC: fprintf(f, "A.alloc");
+  case T_ARR_SIZE: fprintf(f, "A.size");
+  case T_ARR_READ: fprintf(f, "A.read");
+  case T_ARR_WRITE: fprintf(f, "A.write");
+  case T_ARR_EQ: fprintf(f, "A.==");
   case T_DYNSYM: fprintf(f, "dynsym"); break;
   case T_NEWCASTRINGLEN: fprintf(f, "newCAStringLen"); break;
   case T_PEEKCASTRING: fprintf(f, "peekCAString"); break;
@@ -1563,8 +1697,8 @@
   if (header)
     fprintf(f, "%s%"PRIcounter"\n", VERSION, num_shared);
   printrec(f, n);
-  free(marked_bits);
-  free(shared_bits);
+  FREE(marked_bits);
+  FREE(shared_bits);
 }
 
 /* Show a graph. */
@@ -1722,7 +1856,7 @@
 {
   size_t sz = 1000;
   size_t offs;
-  char *name = malloc(sz);
+  char *name = MALLOC(sz);
   value_t c;
   NODEPTR x;
 
@@ -1805,6 +1939,8 @@
     f = PTR(p);
     g = PTR(q);
     return f < g ? -1 : f > g ? 1 : 0;
+  case T_ARR:
+    return ARR(p) < ARR(q) ? -1 : ARR(p) > ARR(q) ? 1 : 0;
   default:
     return 0;
   }
@@ -1843,18 +1979,20 @@
   doing_rnf = (int)noerr;
   rnf_rec(n);
   doing_rnf = 0;
-  free(rnf_bits);
+  FREE(rnf_bits);
 }
 
 NODEPTR execio(NODEPTR n);
 
 /* Evaluate a node, returns when the node is in WHNF. */
 void
-eval(NODEPTR n)
+eval(NODEPTR an)
 {
+  NODEPTR n = an;
   stackptr_t stk = stack_ptr;
   NODEPTR x, y, z, w;
   value_t xi, yi, r;
+  void *xp, *yp;
 #if WANT_FLOAT
   flt_t xd, yd, rd;
 #endif  /* WANT_FLOAT */
@@ -1883,14 +2021,16 @@
 #define CHKARG4 do { CHECK(4); POP(4); n = TOP(-1); w = ARG(n); z = ARG(TOP(-2)); y = ARG(TOP(-3)); x = ARG(TOP(-4)); } while(0)
 
 /* Alloc a possible GC action, e, between setting x and popping */
-#define CHKARGEV1(e)  do { CHECK(1); x = ARG(TOP(0)); e; POP(1); n = TOP(-1); } while(0)
+#define CHKARGEV1(e)   do { CHECK(1); x = ARG(TOP(0)); e; POP(1); n = TOP(-1); } while(0)
 
 #define SETINT(n,r)    do { SETTAG((n), T_INT); SETVALUE((n), (r)); } while(0)
 #define SETDBL(n,d)    do { SETTAG((n), T_DBL); SETDBLVALUE((n), (d)); } while(0)
+#define SETPTR(n,r)    do { SETTAG((n), T_PTR); PTR(n) = (r); } while(0)
 #define OPINT1(e)      do { CHECK(1); xi = evalint(ARG(TOP(0)));                            e; POP(1); n = TOP(-1); } while(0);
 #define OPINT2(e)      do { CHECK(2); xi = evalint(ARG(TOP(0))); yi = evalint(ARG(TOP(1))); e; POP(2); n = TOP(-1); } while(0);
 #define OPDBL1(e)      do { CHECK(1); xd = evaldbl(ARG(TOP(0)));                            e; POP(1); n = TOP(-1); } while(0);
 #define OPDBL2(e)      do { CHECK(2); xd = evaldbl(ARG(TOP(0))); yd = evaldbl(ARG(TOP(1))); e; POP(2); n = TOP(-1); } while(0);
+#define OPPTR2(e)      do { CHECK(2); xp = evalptr(ARG(TOP(0))); yp = evalptr(ARG(TOP(1))); e; POP(2); n = TOP(-1); } while(0);
 #define ARITHUN(op)    do { OPINT1(r = op xi); SETINT(n, r); RET; } while(0)
 #define ARITHBIN(op)   do { OPINT2(r = xi op yi); SETINT(n, r); RET; } while(0)
 #define ARITHBINU(op)  do { OPINT2(r = (value_t)((uvalue_t)xi op (uvalue_t)yi)); SETINT(n, r); RET; } while(0)
@@ -1899,6 +2039,7 @@
 #define CMP(op)        do { OPINT2(r = xi op yi); GOIND(r ? combTrue : combFalse); } while(0)
 #define CMPF(op)       do { OPDBL2(r = xd op yd); GOIND(r ? combTrue : combFalse); } while(0)
 #define CMPU(op)       do { OPINT2(r = (uvalue_t)xi op (uvalue_t)yi); GOIND(r ? combTrue : combFalse); } while(0)
+#define CMPP(op)       do { OPPTR2(r = xp op yp); GOIND(r ? combTrue : combFalse); } while(0)
 
   for(;;) {
     num_reductions++;
@@ -1921,6 +2062,7 @@
     case T_INT:  RET;
     case T_DBL:  RET;
     case T_PTR:  RET;
+    case T_ARR:  RET;
     case T_BADDYN: ERR1("FFI unknown %s", STR(n));
 
     case T_S:    GCCHECK(2); CHKARG3; GOAP(new_ap(x, z), new_ap(y, z));                     /* S x y z = x z (y z) */
@@ -1938,6 +2080,9 @@
     case T_P:    GCCHECK(1); CHKARG3; GOAP(new_ap(z, x), y);                                /* P x y z = z x y */
     case T_R:    GCCHECK(1); CHKARG3; GOAP(new_ap(y, z), x);                                /* R x y z = y z x */
     case T_O:    GCCHECK(1); CHKARG4; GOAP(new_ap(w, x), y);                                /* O x y z w = w x y */
+    case T_K2:               CHKARG3; GOIND(x);                                             /* K2 x y z = *x */
+    case T_K3:               CHKARG4; GOIND(x);                                             /* K3 x y z w = *x */
+    case T_K4:               CHECK(5); POP(5); n = TOP(-1); x = ARG(TOP(-5)); GOIND(x);     /* K4 x y z w v = *x */
 
     case T_ADD:  ARITHBIN(+);
     case T_SUB:  ARITHBIN(-);
@@ -1977,7 +2122,7 @@
 #else
       xd = strtof(msg, NULL);
 #endif
-      free(msg);
+      FREE(msg);
 
       POP(1);
       n = TOP(-1);
@@ -2030,6 +2175,22 @@
     case T_UGT:  CMPU(>);
     case T_UGE:  CMPU(>=);
 
+    case T_PEQ:  CMPP(==);
+    case T_PNULL: SETTAG(n, T_PTR); PTR(n) = 0; RET;
+    case T_PADD: CHECK(2); xp = evalptr(ARG(TOP(0))); yi = evalint(ARG(TOP(1))); POP(2); n = TOP(-1); SETPTR(n, (char*)xp + yi); RET;
+    case T_PSUB: CHECK(2); xp = evalptr(ARG(TOP(0))); yp = evalptr(ARG(TOP(1))); POP(2); n = TOP(-1); SETINT(n, (char*)xp - (char*)yp); RET;
+
+    case T_ARR_EQ:
+      {
+        CHECK(2);
+        x = evali(ARG(TOP(0)));
+        struct ioarray *arr = ARR(x);
+        y = evali(ARG(TOP(1)));
+        POP(2);
+        n = TOP(-1);
+        GOIND(arr == ARR(y) ? combTrue : combFalse);
+      }
+
     case T_NOMATCH:
       if (doing_rnf) RET;
       {
@@ -2038,7 +2199,7 @@
       xi = evalint(ARG(TOP(1)));
       yi = evalint(ARG(TOP(2)));
       int sz = strlen(msg) + 100;
-      char *res = malloc(sz);
+      char *res = MALLOC(sz);
 #if WANT_STDIO
       snprintf(res, sz, "no match at %s, line %"PRIvalue", col %"PRIvalue, msg, xi, yi);
 #else  /* WANT_STDIO */
@@ -2047,8 +2208,8 @@
       POP(2);
       GCCHECK(strNodes(strlen(res)));
       ARG(TOP(0)) = mkStringC(res);
-      free(res);
-      free(msg);
+      FREE(res);
+      FREE(msg);
       goto err;                 /* XXX not right message if the error is caught */
       }
     case T_NODEFAULT:
@@ -2057,7 +2218,7 @@
       CHECK(1);
       msg = evalstring(ARG(TOP(0)), 0);
       int sz = strlen(msg) + 100;
-      char *res = malloc(sz);
+      char *res = MALLOC(sz);
 
 #if WANT_STDIO
       snprintf(res, sz, "no default for %s", msg);
@@ -2066,8 +2227,8 @@
 #endif  /* WANT_STDIO */
       GCCHECK(strNodes(strlen(res)));
       ARG(TOP(0)) = mkStringC(res);
-      free(res);
-      free(msg);
+      FREE(res);
+      FREE(msg);
       goto err;                 /* XXX not right message if the error is caught */
       }
     case T_ERROR:
@@ -2082,8 +2243,8 @@
         /* No handler, so just die. */
         CHKARGEV1(msg = evalstring(x, 0));
 #if WANT_STDIO
-        fprintf(stderr, "mhs: %s\n", msg);
-        exit(1);
+        ERR1("mhs: %s\n", msg);
+        EXIT(1);
 #else  /* WANT_STDIO */
         ERR1("error: %s", msg);
 #endif  /* WANT_STDIO */
@@ -2112,13 +2273,16 @@
     case T_IO_PRINT:
     case T_IO_DESERIALIZE:
     case T_IO_GETARGS:
-    case T_IO_DROPARGS:
     case T_IO_GETTIMEMILLI:
     case T_IO_CCALL:
     case T_IO_CATCH:
     case T_NEWCASTRINGLEN:
     case T_PEEKCASTRING:
     case T_PEEKCASTRINGLEN:
+    case T_ARR_ALLOC:
+    case T_ARR_SIZE:
+    case T_ARR_READ:
+    case T_ARR_WRITE:
       RET;
 
     case T_DYNSYM:
@@ -2127,27 +2291,11 @@
       msg = evalstring(ARG(TOP(0)), 0);
       GCCHECK(1);
       x = ffiNode(msg);
-      free(msg);
+      FREE(msg);
       POP(1);
       n = TOP(-1);
       GOIND(x);
 
-#if 0
-    case T_ISINT:
-      CHECK(1);
-      x = evali(ARG(TOP(0)));
-      n = TOP(0);
-      POP(1);
-      GOIND(GETTAG(x) == T_INT ? combTrue : combFalse);
-
-    case T_ISIO:
-      CHECK(1);
-      x = evali(ARG(TOP(0)));
-      n = TOP(0);
-      POP(1);
-      l = GETTAG(x);
-      GOIND(T_IO_BIND <= l && l <= T_IO_FLUSH ? combTrue : combFalse);
-#endif
     default:
       ERR1("eval tag %d", GETTAG(n));
     }
@@ -2161,7 +2309,6 @@
 {
   stackptr_t stk = stack_ptr;
   NODEPTR f, x;
-  int c;
   char *name;
   value_t len;
 #if WANT_STDIO
@@ -2259,10 +2406,10 @@
         size += glob_argc * 2 + 1;
         GCCHECK(size);
         /*
-        printf("total size %d:", size);
+        PRINT("total size %d:", size);
         for(int i = 0; i < glob_argc; i++)
-          printf(" %s", glob_argv[i]);
-        printf("\n");
+          PRINT(" %s", glob_argv[i]);
+        PRINT("\n");
         */
         n = mkNil();
         for(int i = glob_argc-1; i >= 0; i--) {
@@ -2270,14 +2417,7 @@
         }
       }
       RETIO(n);
-    case T_IO_DROPARGS:
-      CHECKIO(1);
-      c = (int)evalint(ARG(TOP(1)));
-      if (c > glob_argc)
-        c = glob_argc;
-      glob_argc -= c;
-      glob_argv += c;
-      RETIO(combUnit);
+
     case T_IO_CCALL:
       {
         int a = (int)GETVALUE(n);
@@ -2317,6 +2457,7 @@
         case FFI_PPP: FFI (2); xp = PTRARG(1);yp = PTRARG(2);  rp = (*(void*   (*)(void*, void*    ))f)(xp,yp); n = mkPtr(rp); RETIO(n);
         case FFI_IPI: FFI (2); xi = INTARG(1);yp = PTRARG(2);  ri = (*(value_t (*)(value_t, void*  ))f)(xi,yp); n = mkInt(ri); RETIO(n);
         case FFI_iPi: FFI (2); xi = INTARG(1);yp = PTRARG(2);  ri = (*(int     (*)(int,   void*    ))f)(xi,yp); n = mkInt(ri); RETIO(n);
+        case FFI_PPzV:FFI (3); xp = PTRARG(1);yp = PTRARG(2); zi = INTARG(3); (*(void    (*)(void*, void*, size_t))f)(xp,yp,zi);  RETIO(combUnit);
         case FFI_PIIPI:FFI (4);xp = PTRARG(1);yi = INTARG(2); zi = INTARG(3); wp = PTRARG(4);
           ri = (*(int     (*)(void*, int, int, void*    ))f)(xp,yi,zi,wp); n = mkInt(ri); RETIO(n);
         default: ERR("T_IO_CCALL");
@@ -2325,7 +2466,7 @@
 
     case T_IO_CATCH:
       {
-        struct handler *h = malloc(sizeof *h);
+        struct handler *h = MALLOC(sizeof *h);
         if (!h)
           memerr();
         CHECKIO(2);
@@ -2340,14 +2481,14 @@
           f = ARG(TOP(2));      /* second argument, handler */
           n = new_ap(f, x);
           cur_handler = h->hdl_old;
-          free(h);
+          FREE(h);
           POP(3);
           goto top;
         } else {
           /* Normal execution: */
           n = execio(ARG(TOP(1))); /* execute first argument */
           cur_handler = h->hdl_old; /* restore old handler */
-          free(h);
+          FREE(h);
           RETIO(n);             /* return result */
         }
       }
@@ -2378,6 +2519,48 @@
       RETIO(mkString(name, size));
       }
 
+    case T_ARR_ALLOC:
+      {
+      CHECKIO(2);
+      size_t size = evalint(ARG(TOP(1)));
+      NODEPTR elem = ARG(TOP(2));
+      struct ioarray *arr = arr_alloc(size, elem);
+      n = alloc_node(T_ARR);
+      ARR(n) = arr;
+      RETIO(n);
+      }
+    case T_ARR_SIZE:
+      CHECKIO(1);
+      n = evali(ARG(TOP(1)));
+      if (GETTAG(n) != T_ARR)
+        ERR("bad ARR tag");
+      RETIO(mkInt(ARR(n)->size));
+    case T_ARR_READ:
+      {
+      CHECKIO(2);
+      size_t i = evalint(ARG(TOP(2)));
+      n = evali(ARG(TOP(1)));
+      if (GETTAG(n) != T_ARR)
+        ERR("bad ARR tag");
+      if (i >= ARR(n)->size)
+        ERR("ARR_READ");
+      RETIO(ARR(n)->array[i]);
+      }
+    case T_ARR_WRITE:
+      {
+      CHECKIO(3);
+      size_t i = evalint(ARG(TOP(2)));
+      n = evali(ARG(TOP(1)));
+      if (GETTAG(n) != T_ARR)
+        ERR("bad ARR tag");
+      if (i >= ARR(n)->size) {
+        //PRINT("%d %p %d\n", (int)i, ARR(n), (int)ARR(n)->size);
+        ERR("ARR_WRITE");
+      }
+      ARR(n)->array[i] = ARG(TOP(3));
+      RETIO(combUnit);
+      }
+
     default:
       ERR1("execio tag %d", GETTAG(n));
     }
@@ -2420,6 +2603,12 @@
   setvbuf(stderr, NULL, _IONBF, BUFSIZ);
 #endif
 
+#ifdef INITIALIZATION
+  main_setup(); // void main_setup(void); will perform extra initialization
+                // that is unique to a specific platform, e.g. initialization
+                // a HAL
+#endif
+
   argc--, argv++;
   glob_argv = argv;
   for (av = argv, inrts = 0; argc--; argv++) {
@@ -2457,7 +2646,7 @@
     inname = "out.comb";
 
   init_nodes();
-  stack = malloc(sizeof(NODEPTR) * stack_size);
+  stack = MALLOC(sizeof(NODEPTR) * stack_size);
   if (!stack)
     memerr();
 
@@ -2484,7 +2673,13 @@
 #endif
   }
 
-  PUSH(prog); gc(); prog = POPTOP();
+  /* GC unused stuff, nice for -o */
+  PUSH(prog);
+  want_gc_red = 1;
+  gc();
+  want_gc_red = 0;
+  prog = POPTOP();
+
 #if WANT_STDIO
   heapoffs_t start_size = num_marked;
   if (outname) {
@@ -2494,7 +2689,7 @@
       ERR1("cannot open output file %s", outname);
     print(out, prog, 1);
     fclose(out);
-    exit(0);
+    EXIT(0);
   }
   if (verbose > 2) {
     //pp(stdout, prog);
@@ -2513,26 +2708,31 @@
   }
   if (verbose) {
     if (verbose > 1) {
-      printf("\nmain returns ");
+      PRINT("\nmain returns ");
       pp(stdout, res);
-      printf("node size=%"PRIheap", heap size bytes=%"PRIheap"\n", (heapoffs_t)NODE_SIZE, heap_size * NODE_SIZE);
+      PRINT("node size=%"PRIheap", heap size bytes=%"PRIheap"\n", (heapoffs_t)NODE_SIZE, heap_size * NODE_SIZE);
     }
     setlocale(LC_NUMERIC, "");  /* Make %' work on platforms that support it */
-    printf("%"PCOMMA"15"PRIheap" combinator file size\n", (heapoffs_t)file_size);
-    printf("%"PCOMMA"15"PRIheap" cells at start\n", start_size);
-    printf("%"PCOMMA"15"PRIheap" cells heap size (%"PCOMMA""PRIheap" bytes)\n", heap_size, heap_size * NODE_SIZE);
-    printf("%"PCOMMA"15"PRIcounter" cells allocated (%"PCOMMA".1f Mbyte/s)\n", num_alloc, num_alloc * NODE_SIZE / ((double)run_time / 1000) / 1000000);
-    printf("%"PCOMMA"15"PRIcounter" GCs\n", num_gc);
-    printf("%"PCOMMA"15"PRIcounter" max cells used\n", max_num_marked);
-    printf("%"PCOMMA"15"PRIcounter" reductions (%"PCOMMA".1f Mred/s)\n", num_reductions, num_reductions / ((double)run_time / 1000) / 1000000);
-    printf("%15.2fs total expired time\n", (double)run_time / 1000);
-    printf("%15.2fs total gc time\n", (double)gc_mark_time / 1000);
+    PRINT("%"PCOMMA"15"PRIheap" combinator file size\n", (heapoffs_t)file_size);
+    PRINT("%"PCOMMA"15"PRIheap" cells at start\n", start_size);
+    PRINT("%"PCOMMA"15"PRIheap" cells heap size (%"PCOMMA""PRIheap" bytes)\n", heap_size, heap_size * NODE_SIZE);
+    PRINT("%"PCOMMA"15"PRIcounter" cells allocated (%"PCOMMA".1f Mbyte/s)\n", num_alloc, num_alloc * NODE_SIZE / ((double)run_time / 1000) / 1000000);
+    PRINT("%"PCOMMA"15"PRIcounter" GCs\n", num_gc);
+    PRINT("%"PCOMMA"15"PRIcounter" max cells used\n", max_num_marked);
+    PRINT("%"PCOMMA"15"PRIcounter" reductions (%"PCOMMA".1f Mred/s)\n", num_reductions, num_reductions / ((double)run_time / 1000) / 1000000);
+    PRINT("%"PCOMMA"15"PRIcounter" array alloc\n", num_arr_alloc);
+    PRINT("%"PCOMMA"15"PRIcounter" array free\n", num_arr_free);
+    PRINT("%15.2fs total expired time\n", (double)run_time / 1000);
+    PRINT("%15.2fs total gc time\n", (double)gc_mark_time / 1000);
 #if GCRED
-    printf(" GC reductions A=%d, K=%d, I=%d, int=%d flip=%d\n", red_a, red_k, red_i, red_int, red_flip);
+    PRINT(" GC reductions A=%d, K=%d, I=%d, int=%d flip=%d\n", red_a, red_k, red_i, red_int, red_flip);
 #endif
   }
 #endif  /* WANT_STDIO */
-  exit(0);
+#ifdef TEARDOWN
+  main_teardown(); // do some platform specific teardown
+#endif
+  EXIT(0);
 }
 
 #if WANT_MD5
diff --git a/tests/Bug1.hs b/tests/Bug1.hs
new file mode 100644
--- /dev/null
+++ b/tests/Bug1.hs
@@ -0,0 +1,19 @@
+module Bug1(main) where
+import Prelude
+
+main :: Int
+main = 0
+
+class C (t :: Type -> Type) where
+  el :: forall a . Eq a => a -> t a -> Bool
+
+el_dflt :: forall (t::Type -> Type) . (C t) => (forall a . (Eq a) => a -> t a -> Bool)
+el_dflt  = undefined
+
+instance C []
+
+--instance C [] where
+--  el = elem
+
+--instance C [] where
+--  el = el_dflt
diff --git a/tests/IOArray.hs b/tests/IOArray.hs
new file mode 100644
--- /dev/null
+++ b/tests/IOArray.hs
@@ -0,0 +1,27 @@
+module IOArray(main) where
+import Prelude
+import Data.IOArray
+import Data.IORef
+
+main :: IO ()
+main = do
+  a <- newIOArray 10 0
+  s <- sizeIOArray a
+  print s
+  mapM_ (\ i -> writeIOArray a i (i*i)) [0..9]
+  xs <- mapM (readIOArray a) [0..9]
+  print xs
+  o <- openFile "arr.tmp" WriteMode
+  hSerialize o a
+  hClose o
+  i <- openFile "arr.tmp" ReadMode
+  a' <- hDeserialize i
+  xs' <- mapM (readIOArray a') [0..9]
+  print $ xs == xs'
+
+  r <- newIORef "foo"
+  s1 <- readIORef r
+  print s1
+  writeIORef r "bar"
+  s2 <- readIORef r
+  print s2
diff --git a/tests/IOArray.ref b/tests/IOArray.ref
new file mode 100644
--- /dev/null
+++ b/tests/IOArray.ref
@@ -0,0 +1,5 @@
+10
+[0,1,4,9,16,25,36,49,64,81]
+True
+"foo"
+"bar"
diff --git a/tests/IOTest.hs b/tests/IOTest.hs
--- a/tests/IOTest.hs
+++ b/tests/IOTest.hs
@@ -4,9 +4,6 @@
 import System.Environment
 import Debug.Trace
 
-f :: Int -> Int
-f x = x*2+1
-
 foo :: IO ()
 foo = do
   putStrLn "foo 1"
@@ -23,7 +20,6 @@
   p
   p
   p
-  cprint ((+) :: Int->Int->Int)
   hout <- openFile "test.tmp" WriteMode
   hPutChar hout 'a'
   hPutChar hout 'z'
@@ -35,9 +31,6 @@
   writeFile "test2.tmp" "more\n"
   s <- readFile "test2.tmp"
   putStrLn (show s)
-  writeSerialized "f.tmp" f
-  g <- readSerialized "f.tmp"
-  putStrLn $ show $ (g (5::Int) :: Int)
   foo
   putStrLn $ show $ trace "tracing" (5::Int)
   as <- getArgs
diff --git a/tests/IOTest.ref b/tests/IOTest.ref
--- a/tests/IOTest.ref
+++ b/tests/IOTest.ref
@@ -2,10 +2,8 @@
 hello
 hello
 hello
-+
 ('a','z')
 "more\n"
-11
 foo 1
 foo 2
 tracing
diff --git a/tests/Info.hs b/tests/Info.hs
new file mode 100644
--- /dev/null
+++ b/tests/Info.hs
@@ -0,0 +1,23 @@
+module Info(main) where
+import Prelude
+import Foreign.Storable
+import Foreign.Marshal.Utils
+import Foreign.Ptr
+import Data.Word
+import Data.Word8
+
+main :: IO ()
+main = do
+  putStrLn $ "Running on " ++ if _isWindows then "Windows" else "Unix"
+  putStr $ show _wordSize ++ " bit words, "
+
+  let
+    w :: Word
+    w = if _wordSize == 32 then 0x01000002 else 0x0100000000000002
+  p <- new w
+  b <- peek (castPtr p :: Ptr Word8)
+  putStrLn $
+    case b of
+      1 -> "big endian"
+      2 -> "little endian"
+      _ -> "Mystery Endian"
diff --git a/tests/Makefile b/tests/Makefile
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -1,17 +1,21 @@
 MHS=../bin/gmhs
 TMHS=$(MHS) -i../lib
 EVAL=../bin/mhseval +RTS -H1M -RTS
-.PHONY: test nfib clean errtest alltest cache
+.PHONY: test nfib clean errtest alltest cache info
 
-alltest:	test errtest
+alltest:	info test errtest
 
 cache:
 	rm -f .mhscache
 	$(TMHS) -c AllOfLib
 
+info:
+	$(TMHS) Info       && $(EVAL)
+
 test:
 	$(TMHS) Hello      && $(EVAL) > Hello.out      && diff Hello.ref Hello.out
-	$(TMHS) IOTest && (echo q | $(EVAL) a bb ccc | sed 's/^[0-9]*ms/1ms/' > IOTest.out) && diff IOTest.ref IOTest.out
+#	$(TMHS) IOTest     && (echo q | $(EVAL) a bb ccc | sed 's/^[0-9]*ms/1ms/' > IOTest.out) && diff IOTest.ref IOTest.out
+#	$(TMHS) Serdes     && $(EVAL) > Serdes.out     && diff Serdes.ref Serdes.out
 	$(TMHS) StringTest && $(EVAL) > StringTest.out && diff StringTest.ref StringTest.out
 	$(TMHS) ListTest   && $(EVAL) > ListTest.out   && diff ListTest.ref ListTest.out
 	$(TMHS) Fac        && $(EVAL) > Fac.out        && diff Fac.ref Fac.out
@@ -29,7 +33,7 @@
 	$(TMHS) LocalPoly  && $(EVAL) > LocalPoly.out  && diff LocalPoly.ref LocalPoly.out
 	$(TMHS) Rank2      && $(EVAL) > Rank2.out      && diff Rank2.ref Rank2.out
 	$(TMHS) Catch      && $(EVAL) > Catch.out      && diff Catch.ref Catch.out
-# The FArith tests are currently not prtable between 32 and 64 bits,
+# The FArith tests are currently not portable between 32 and 64 bits,
 # since Double is really Float on 32 bit platforms.
 #	$(TMHS) FArith     && $(EVAL) > FArith.out     && diff FArith.ref FArith.out
 	$(TMHS) Infix      && $(EVAL) > Infix.out      && diff Infix.ref Infix.out
@@ -44,6 +48,10 @@
 	$(TMHS) Dict       && $(EVAL) > Dict.out       && diff Dict.ref Dict.out
 	$(TMHS) Symbol     && $(EVAL) > Symbol.out     && diff Symbol.ref Symbol.out
 	$(TMHS) FunDep     && $(EVAL) > FunDep.out     && diff FunDep.ref FunDep.out
+	$(TMHS) TypeLits   && $(EVAL) > TypeLits.out   && diff TypeLits.ref TypeLits.out
+	$(TMHS) View       && $(EVAL) > View.out       && diff View.ref View.out
+	$(TMHS) IOArray    && $(EVAL) > IOArray.out    && diff IOArray.ref IOArray.out
+	$(TMHS) ST         && $(EVAL) > ST.out         && diff ST.ref ST.out
 
 errtest:
 	sh errtester.sh < errmsg.test
diff --git a/tests/Nfib.hs b/tests/Nfib.hs
--- a/tests/Nfib.hs
+++ b/tests/Nfib.hs
@@ -10,7 +10,7 @@
 main :: IO ()
 main = do
   t1 <- getTimeMilli
-  let r = nfib 39
+  let r = nfib 37
   print r
   t2 <- getTimeMilli
   putStrLn $ "nfib/s = " ++ show (r `quot` (t2 - t1)) ++ "k"
diff --git a/tests/Quant.hs b/tests/Quant.hs
new file mode 100644
--- /dev/null
+++ b/tests/Quant.hs
@@ -0,0 +1,23 @@
+module Quant(main) where
+import Prelude
+
+{-
+data Rose (f :: Type -> Type) a = Branch a (f (Rose f a))
+
+instance forall a (f :: Type -> Type) .
+         (Eq a, forall b. (Eq b) => Eq (f b)) => Eq (Rose f a) where
+    (Branch x1 c1) == (Branch x2 c2)  =  x1==x2 && c1==c2
+
+t1 :: Rose [] Int
+t1 = Branch 1 [Branch 2 [], Branch 3 []]
+
+main :: IO ()
+main = do
+  print $ t1 == t1
+-}
+
+data T (f :: Type -> Type) a = C (f a)
+
+eq :: forall a (f :: Type -> Type) .
+      (Eq a, forall b. (Eq b) => Eq (f b)) => T f a -> T f a -> Bool
+eq (C xxx) (C yyy) = xxx == yyy
diff --git a/tests/ST.hs b/tests/ST.hs
new file mode 100644
--- /dev/null
+++ b/tests/ST.hs
@@ -0,0 +1,27 @@
+module ST(main) where
+import Prelude
+import Control.Monad.ST
+import Data.STRef
+import Debug.Trace
+
+facST :: forall s . Int -> ST s Int
+facST n = do
+  ri <- newSTRef 1
+  rr <- newSTRef 1
+  let loop = do
+        i <- readSTRef ri
+        if i > n then
+          return ()
+         else do
+          writeSTRef ri (i + 1)
+          modifySTRef rr (i *)
+          loop
+  loop
+  readSTRef rr
+  
+fac :: Int -> Int
+fac n = runST (facST n)
+
+main :: IO ()
+main = do
+  print (fac 10)
diff --git a/tests/ST.ref b/tests/ST.ref
new file mode 100644
--- /dev/null
+++ b/tests/ST.ref
@@ -0,0 +1,1 @@
+3628800
diff --git a/tests/Serdes.hs b/tests/Serdes.hs
new file mode 100644
--- /dev/null
+++ b/tests/Serdes.hs
@@ -0,0 +1,15 @@
+module Serdes(main) where
+import Prelude
+import System.IO as IO
+import System.Environment
+import Debug.Trace
+
+f :: Int -> Int
+f x = x*2+1
+
+main :: IO ()
+main = do
+  cprint ((+) :: Int->Int->Int)
+  writeSerialized "f.tmp" f
+  g <- readSerialized "f.tmp"
+  putStrLn $ show $ (g (5::Int) :: Int)
diff --git a/tests/Serdes.ref b/tests/Serdes.ref
new file mode 100644
--- /dev/null
+++ b/tests/Serdes.ref
@@ -0,0 +1,2 @@
++
+11
diff --git a/tests/Storable.hs b/tests/Storable.hs
new file mode 100644
--- /dev/null
+++ b/tests/Storable.hs
@@ -0,0 +1,32 @@
+module Storable(main) where
+import Prelude
+import Data.Word
+import Data.Word8
+import Foreign.Marshal.Array
+import Foreign.Marshal.Utils
+import Foreign.Ptr
+import Foreign.Storable
+
+main :: IO ()
+main = do
+  let w1 = 0x01020304 :: Word
+  p1 <- new w1
+  wp1 <- peek p1
+  print $ wp1 == w1
+
+  let w2 = [1,2,3,4,5::Word]
+  p2 <- newArray0 0 w2
+  wp2 <- peekArray0 0 p2
+  print $ wp2 == w2
+
+  moveBytes (p2 `plusPtr` sizeOf w1) p2 (4 * sizeOf w1)
+  poke p2 w1
+  wp3 <- peekArray0 0 p2
+  print $ wp3 == [w1,1,2,3,4]
+
+{- Relies on endianess
+  let p3 = castPtr p1 :: Ptr Word8
+  b1 <- peek p3
+  b2 <- peek (p3 `plusPtr` 1)
+  print [b1, b2]
+-}
diff --git a/tests/Storable.ref b/tests/Storable.ref
new file mode 100644
--- /dev/null
+++ b/tests/Storable.ref
@@ -0,0 +1,3 @@
+True
+True
+True
diff --git a/tests/StringTest.hs b/tests/StringTest.hs
--- a/tests/StringTest.hs
+++ b/tests/StringTest.hs
@@ -7,7 +7,7 @@
   putStrLn $ if (==) "abc" "adc" then "yes" else "no"
   putStrLn $ show (1234::Int)
   putStrLn $ show (0::Int)
-  putStrLn $ show (negate (567::Int))
+  putStrLn $ show (- (567::Int))
   putStrLn $ show 'x'
   putStrLn $ show '\n'
   putStrLn $ show False
diff --git a/tests/Symbol.hs b/tests/Symbol.hs
--- a/tests/Symbol.hs
+++ b/tests/Symbol.hs
@@ -9,7 +9,7 @@
 instance C (T "id") where
   m (A i) = i
 instance C (T "neg") where
-  m (A i) = negate i
+  m (A i) = - i
 instance C (T "inc") where
   m (A i) = succ i
 
diff --git a/tests/TypeLits.hs b/tests/TypeLits.hs
new file mode 100644
--- /dev/null
+++ b/tests/TypeLits.hs
@@ -0,0 +1,15 @@
+module TypeLits(main) where
+import Prelude
+import Data.TypeLits
+
+data PS (s :: Symbol) = PS
+data PN (s :: Nat) = PN
+
+natValInt :: forall (n :: Nat) . KnownNat n => PN n -> Int
+natValInt p = fromInteger (natVal p)
+
+main :: IO ()
+main = do
+  print $ symbolVal (PS :: PS "hello")
+  print $ natVal (PN :: PN 42)
+  print $ natValInt (PN :: PN 42)
diff --git a/tests/TypeLits.ref b/tests/TypeLits.ref
new file mode 100644
--- /dev/null
+++ b/tests/TypeLits.ref
@@ -0,0 +1,3 @@
+"hello"
+42
+42
diff --git a/tests/View.hs b/tests/View.hs
new file mode 100644
--- /dev/null
+++ b/tests/View.hs
@@ -0,0 +1,11 @@
+module View(main) where
+import Prelude
+
+f :: Int -> Int
+f ((> 10) -> True) = 1
+f _ = 0
+
+main :: IO ()
+main = do
+  print (f 20)
+  print (f 10)
diff --git a/tests/View.ref b/tests/View.ref
new file mode 100644
--- /dev/null
+++ b/tests/View.ref
@@ -0,0 +1,2 @@
+1
+0
